tsung icon indicating copy to clipboard operation
tsung copied to clipboard

Cannot use dynamic variable in timeout

Open Navgeet opened this issue 7 years ago • 0 comments

Hi, I'm testing an MQTT server with the following config. I need to specify a random timeout in waitForMessages. My config looks like this:

        <setdynvars sourcetype="random_number" start="1" end="10">
          <var name="wait" />
        </setdynvars>

        <request>
          <mqtt type="waitForMessages" timeout="%%_wait%%"></mqtt>
        </request>

I get the following exception:

    ts_config_server:(0:<0.101.0>) Error while parsing XML config file: {{case_clause,
                                                                          {ok,
                                                                           [],
                                                                           1}},
                                                                         [{ts_config,
                                                                           getTypeAttr,
                                                                           2,
                                                                           [{file,
                                                                             "src/tsung_controller/ts_config.erl"},
                                                                            {line,
                                                                             1143}]},
                                                                          {ts_config_mqtt,
                                                                           parse_config,
                                                                           2,
                                                                           [{file,
                                                                             "src/tsung_controller/ts_config_mqtt.erl"},
                                                                            {line,
                                                                             79}]},
                                                                          {lists,
                                                                           foldl,
                                                                           3,
                                                                           [{file,
                                                                             "lists.erl"},
                                                                            {line,
                                                                             1263}]},
                                                                          {ts_config,
                                                                           parse,
                                                                           2,
                                                                           [{file,
                                                                             "src/tsung_controller/ts_config.erl"},
                                                                            {line,
                                                                             526}]},
                                                                          {lists,
                                                                           foldl,
                                                                           3,
                                                                           [{file,
                                                                             "lists.erl"},
                                                                            {line,
                                                                             1263}]},
                                                                          {ts_config,
                                                                           handle_read,
                                                                           3,
                                                                           [{file,
                                                                             "src/tsung_controller/ts_config.erl"},
                                                                            {line,
                                                                             85}]},
                                                                          {ts_config,
                                                                           read,
                                                                           2,
                                                                           [{file,
                                                                             "src/tsung_controller/ts_config.erl"},
                                                                            {line,
                                                                             70}]},
                                                                          {ts_config_server,
                                                                           handle_call,
                                                                           3,
                                                                           [{file,
                                                                             "src/tsung_controller/ts_config_server.erl"},
                                                                            {line,
                                                                             209}]}]}

Navgeet avatar Aug 20 '18 08:08 Navgeet