You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by bu...@apache.org on 2008/12/08 18:49:49 UTC

DO NOT REPLY [Bug 46365] New: Variable Names field in CSV Data Set Config doesn't allow spaces between names

https://issues.apache.org/bugzilla/show_bug.cgi?id=46365

           Summary: Variable Names field in CSV Data Set Config doesn't
                    allow spaces between names
           Product: JMeter
           Version: 2.3.2
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Main
        AssignedTo: jmeter-dev@jakarta.apache.org
        ReportedBy: don.womick@gmail.com


In the CSV Data Set Config panel, the Variable Names field doesn't pick up all
the variable names if there are any spaces between the commas separating the
fields. For example, the following variable name list works:

a,b,c

but this one does not:

a, b, c

This took several hours to track down on a project I'm using JMeter on.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


DO NOT REPLY [Bug 46365] Variable Names field in CSV Data Set Config doesn't allow spaces between names

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46365


Sebb <se...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




--- Comment #2 from Sebb <se...@apache.org>  2008-12-08 10:03:42 PST ---
CSV Dataset uses commas to delimit variable names.

It does not strip leading or trailing spaces, so

a, b, c

will define the variables

"a"
" b"
" c"

(without the quotes).


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


DO NOT REPLY [Bug 46365] Variable Names field in CSV Data Set Config doesn't allow spaces between names

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46365





--- Comment #1 from Don Womick <do...@gmail.com>  2008-12-08 09:54:43 PST ---
The expected result from both lists is that ${a}, ${b}, and ${c} would be
replaced with their respective values from the provided CSV file. In the
embedded-space version, however, only ${a} is defined; the other field defs are
embedded literally where they are used. (i.e., you see "${b}" where you'd
expect to see "b_value_from_csv_file").


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org