jmeter-ruby 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitattributes +22 -0
- data/.github/workflows/ci.yml +54 -0
- data/.gitignore +24 -0
- data/.rspec +1 -0
- data/.ruby-version +1 -0
- data/CHANGES.md +77 -0
- data/Gemfile +23 -0
- data/LICENSE.txt +21 -0
- data/README.md +434 -0
- data/Rakefile +18 -0
- data/examples/OS_process_sampler.rb +24 -0
- data/examples/assertion_results.rb +18 -0
- data/examples/basic_auth.rb +11 -0
- data/examples/browser_headers.rb +7 -0
- data/examples/composite_graph.rb +29 -0
- data/examples/constant_throughput_timer.rb +11 -0
- data/examples/csv_data_set.rb +11 -0
- data/examples/dummy_sampler.rb +9 -0
- data/examples/duration_assertion.rb +10 -0
- data/examples/etsy_login_browse.rb +61 -0
- data/examples/extract.rb +12 -0
- data/examples/foreach_controller.rb +29 -0
- data/examples/header_manager.rb +29 -0
- data/examples/http_cache_manager.rb +11 -0
- data/examples/http_cookie_manager.rb +11 -0
- data/examples/http_request_defaults.rb +11 -0
- data/examples/http_request_post.rb +11 -0
- data/examples/http_request_with_files.rb +13 -0
- data/examples/http_request_with_query_params.rb +8 -0
- data/examples/jmeter_plugins_graphs.rb +22 -0
- data/examples/json_path_assertions.rb +11 -0
- data/examples/json_path_extractor.rb +10 -0
- data/examples/json_path_postprocessor.rb +10 -0
- data/examples/jsr223_assertion.rb +13 -0
- data/examples/ldap_sampler.rb +16 -0
- data/examples/loadosophia.rb +18 -0
- data/examples/loop_controller.rb +10 -0
- data/examples/loops_with_counter.rb +15 -0
- data/examples/once_only_controller.rb +15 -0
- data/examples/perfmon.rb +46 -0
- data/examples/real_custom_methods.rb +19 -0
- data/examples/real_page_objects.rb +41 -0
- data/examples/real_redis_data_set_with_setup.rb +123 -0
- data/examples/real_user_objects_github.rb +112 -0
- data/examples/regular_expression_extractor.rb +12 -0
- data/examples/response_assertion.rb +15 -0
- data/examples/response_time_percentiles_graph.rb +11 -0
- data/examples/rsync.rb +16 -0
- data/examples/sample_transaction.rb +18 -0
- data/examples/simple_data_writer_listener.rb +11 -0
- data/examples/stepping_thread_group.rb +30 -0
- data/examples/test_fragment.rb +14 -0
- data/examples/think_time.rb +15 -0
- data/examples/thread_groups.rb +7 -0
- data/examples/throughput_controller.rb +14 -0
- data/examples/throughput_shaping_timer.rb +20 -0
- data/examples/ultimate_thread_group.rb +39 -0
- data/examples/unicode.rb +8 -0
- data/examples/user_defined_variables.rb +10 -0
- data/examples/user_parameters.rb +28 -0
- data/examples/uuid_per_iteration.rb +15 -0
- data/jmeter-ruby.gemspec +28 -0
- data/lib/jmeter-ruby/DSL.md +235 -0
- data/lib/jmeter-ruby/dsl/access_log_sampler.rb +32 -0
- data/lib/jmeter-ruby/dsl/aggregate_graph.rb +55 -0
- data/lib/jmeter-ruby/dsl/aggregate_report.rb +55 -0
- data/lib/jmeter-ruby/dsl/ajp13_sampler.rb +41 -0
- data/lib/jmeter-ruby/dsl/assertion_results.rb +55 -0
- data/lib/jmeter-ruby/dsl/beanshell_assertion.rb +28 -0
- data/lib/jmeter-ruby/dsl/beanshell_listener.rb +28 -0
- data/lib/jmeter-ruby/dsl/beanshell_postprocessor.rb +28 -0
- data/lib/jmeter-ruby/dsl/beanshell_preprocessor.rb +28 -0
- data/lib/jmeter-ruby/dsl/beanshell_sampler.rb +28 -0
- data/lib/jmeter-ruby/dsl/beanshell_timer.rb +28 -0
- data/lib/jmeter-ruby/dsl/bsf_assertion.rb +28 -0
- data/lib/jmeter-ruby/dsl/bsf_listener.rb +28 -0
- data/lib/jmeter-ruby/dsl/bsf_postprocessor.rb +28 -0
- data/lib/jmeter-ruby/dsl/bsf_preprocessor.rb +28 -0
- data/lib/jmeter-ruby/dsl/bsf_sampler.rb +28 -0
- data/lib/jmeter-ruby/dsl/bsf_timer.rb +28 -0
- data/lib/jmeter-ruby/dsl/compare_assertion.rb +27 -0
- data/lib/jmeter-ruby/dsl/comparison_assertion_visualizer.rb +55 -0
- data/lib/jmeter-ruby/dsl/constant_throughput_timer.rb +26 -0
- data/lib/jmeter-ruby/dsl/constant_timer.rb +25 -0
- data/lib/jmeter-ruby/dsl/counter.rb +31 -0
- data/lib/jmeter-ruby/dsl/cssjquery_extractor.rb +31 -0
- data/lib/jmeter-ruby/dsl/csv_data_set_config.rb +33 -0
- data/lib/jmeter-ruby/dsl/debug_postprocessor.rb +28 -0
- data/lib/jmeter-ruby/dsl/debug_sampler.rb +27 -0
- data/lib/jmeter-ruby/dsl/distribution_graphalpha.rb +55 -0
- data/lib/jmeter-ruby/dsl/duration_assertion.rb +25 -0
- data/lib/jmeter-ruby/dsl/foreach_controller.rb +27 -0
- data/lib/jmeter-ruby/dsl/ftp_request.rb +34 -0
- data/lib/jmeter-ruby/dsl/ftp_request_defaults.rb +32 -0
- data/lib/jmeter-ruby/dsl/gaussian_random_timer.rb +26 -0
- data/lib/jmeter-ruby/dsl/generate_summary_results.rb +23 -0
- data/lib/jmeter-ruby/dsl/graph_results.rb +55 -0
- data/lib/jmeter-ruby/dsl/html_assertion.rb +30 -0
- data/lib/jmeter-ruby/dsl/html_link_parser.rb +23 -0
- data/lib/jmeter-ruby/dsl/html_parameter_mask.rb +32 -0
- data/lib/jmeter-ruby/dsl/http_authorization_manager.rb +33 -0
- data/lib/jmeter-ruby/dsl/http_cache_manager.rb +26 -0
- data/lib/jmeter-ruby/dsl/http_cookie_manager.rb +28 -0
- data/lib/jmeter-ruby/dsl/http_header_manager.rb +30 -0
- data/lib/jmeter-ruby/dsl/http_request.rb +41 -0
- data/lib/jmeter-ruby/dsl/http_request_defaults.rb +41 -0
- data/lib/jmeter-ruby/dsl/http_url_rewriting_modifier.rb +30 -0
- data/lib/jmeter-ruby/dsl/if_controller.rb +27 -0
- data/lib/jmeter-ruby/dsl/include_controller.rb +25 -0
- data/lib/jmeter-ruby/dsl/java_request.rb +69 -0
- data/lib/jmeter-ruby/dsl/java_request_defaults.rb +69 -0
- data/lib/jmeter-ruby/dsl/jdbc_connection_configuration.rb +37 -0
- data/lib/jmeter-ruby/dsl/jdbc_postprocessor.rb +33 -0
- data/lib/jmeter-ruby/dsl/jdbc_preprocessor.rb +33 -0
- data/lib/jmeter-ruby/dsl/jdbc_request.rb +33 -0
- data/lib/jmeter-ruby/dsl/jms_pointtopoint.rb +41 -0
- data/lib/jmeter-ruby/dsl/jms_publisher.rb +43 -0
- data/lib/jmeter-ruby/dsl/jms_subscriber.rb +35 -0
- data/lib/jmeter-ruby/dsl/json_path_postprocessor.rb +27 -0
- data/lib/jmeter-ruby/dsl/jsr223_assertion.rb +29 -0
- data/lib/jmeter-ruby/dsl/jsr223_listener.rb +29 -0
- data/lib/jmeter-ruby/dsl/jsr223_postprocessor.rb +29 -0
- data/lib/jmeter-ruby/dsl/jsr223_preprocessor.rb +29 -0
- data/lib/jmeter-ruby/dsl/jsr223_sampler.rb +29 -0
- data/lib/jmeter-ruby/dsl/jsr223_timer.rb +29 -0
- data/lib/jmeter-ruby/dsl/junit_request.rb +37 -0
- data/lib/jmeter-ruby/dsl/keystore_configuration.rb +28 -0
- data/lib/jmeter-ruby/dsl/ldap_extended_request.rb +42 -0
- data/lib/jmeter-ruby/dsl/ldap_extended_request_defaults.rb +42 -0
- data/lib/jmeter-ruby/dsl/ldap_request.rb +35 -0
- data/lib/jmeter-ruby/dsl/ldap_request_defaults.rb +39 -0
- data/lib/jmeter-ruby/dsl/login_config_element.rb +26 -0
- data/lib/jmeter-ruby/dsl/loop_controller.rb +26 -0
- data/lib/jmeter-ruby/dsl/mail_reader_sampler.rb +37 -0
- data/lib/jmeter-ruby/dsl/mailer_visualizer.rb +64 -0
- data/lib/jmeter-ruby/dsl/md5hex_assertion.rb +25 -0
- data/lib/jmeter-ruby/dsl/module_controller.rb +25 -0
- data/lib/jmeter-ruby/dsl/monitor_results.rb +55 -0
- data/lib/jmeter-ruby/dsl/once_only_controller.rb +23 -0
- data/lib/jmeter-ruby/dsl/os_process_sampler.rb +34 -0
- data/lib/jmeter-ruby/dsl/poisson_random_timer.rb +26 -0
- data/lib/jmeter-ruby/dsl/random_controller.rb +25 -0
- data/lib/jmeter-ruby/dsl/random_order_controller.rb +23 -0
- data/lib/jmeter-ruby/dsl/random_variable.rb +30 -0
- data/lib/jmeter-ruby/dsl/recording_controller.rb +23 -0
- data/lib/jmeter-ruby/dsl/regex_user_parameters.rb +27 -0
- data/lib/jmeter-ruby/dsl/regular_expression_extractor.rb +32 -0
- data/lib/jmeter-ruby/dsl/response_assertion.rb +31 -0
- data/lib/jmeter-ruby/dsl/response_time_graph.rb +55 -0
- data/lib/jmeter-ruby/dsl/result_status_action_handler.rb +25 -0
- data/lib/jmeter-ruby/dsl/runtime_controller.rb +25 -0
- data/lib/jmeter-ruby/dsl/save_responses_to_a_file.rb +29 -0
- data/lib/jmeter-ruby/dsl/setup_thread_group.rb +36 -0
- data/lib/jmeter-ruby/dsl/simple_config_element.rb +23 -0
- data/lib/jmeter-ruby/dsl/simple_controller.rb +23 -0
- data/lib/jmeter-ruby/dsl/simple_data_writer.rb +55 -0
- data/lib/jmeter-ruby/dsl/smime_assertion.rb +35 -0
- data/lib/jmeter-ruby/dsl/smtp_sampler.rb +51 -0
- data/lib/jmeter-ruby/dsl/soapxmlrpc_request.rb +33 -0
- data/lib/jmeter-ruby/dsl/spline_visualizer.rb +55 -0
- data/lib/jmeter-ruby/dsl/summary_report.rb +55 -0
- data/lib/jmeter-ruby/dsl/switch_controller.rb +25 -0
- data/lib/jmeter-ruby/dsl/synchronizing_timer.rb +26 -0
- data/lib/jmeter-ruby/dsl/tcp_sampler.rb +33 -0
- data/lib/jmeter-ruby/dsl/tcp_sampler_config.rb +31 -0
- data/lib/jmeter-ruby/dsl/test_action.rb +27 -0
- data/lib/jmeter-ruby/dsl/test_fragment.rb +23 -0
- data/lib/jmeter-ruby/dsl/test_plan.rb +31 -0
- data/lib/jmeter-ruby/dsl/thread_group.rb +37 -0
- data/lib/jmeter-ruby/dsl/throughput_controller.rb +32 -0
- data/lib/jmeter-ruby/dsl/transaction_controller.rb +26 -0
- data/lib/jmeter-ruby/dsl/uniform_random_timer.rb +26 -0
- data/lib/jmeter-ruby/dsl/user_defined_variables.rb +33 -0
- data/lib/jmeter-ruby/dsl/user_parameters.rb +30 -0
- data/lib/jmeter-ruby/dsl/view_results_in_table.rb +55 -0
- data/lib/jmeter-ruby/dsl/view_results_tree.rb +55 -0
- data/lib/jmeter-ruby/dsl/while_controller.rb +25 -0
- data/lib/jmeter-ruby/dsl/xml_assertion.rb +23 -0
- data/lib/jmeter-ruby/dsl/xml_schema_assertion.rb +25 -0
- data/lib/jmeter-ruby/dsl/xpath_assertion.rb +31 -0
- data/lib/jmeter-ruby/dsl/xpath_extractor.rb +31 -0
- data/lib/jmeter-ruby/dsl.rb +102 -0
- data/lib/jmeter-ruby/extend/assertions/response_assertion.rb +36 -0
- data/lib/jmeter-ruby/extend/config_elements/header_manager.rb +13 -0
- data/lib/jmeter-ruby/extend/config_elements/http_cache_manager.rb +12 -0
- data/lib/jmeter-ruby/extend/config_elements/http_cookie_manager.rb +36 -0
- data/lib/jmeter-ruby/extend/config_elements/http_request_defaults.rb +39 -0
- data/lib/jmeter-ruby/extend/config_elements/user_defined_variables.rb +13 -0
- data/lib/jmeter-ruby/extend/config_elements/user_parameters.rb +31 -0
- data/lib/jmeter-ruby/extend/controllers/foreach_controller.rb +27 -0
- data/lib/jmeter-ruby/extend/controllers/loop_controller.rb +11 -0
- data/lib/jmeter-ruby/extend/controllers/module_controller.rb +23 -0
- data/lib/jmeter-ruby/extend/controllers/throughput_controller.rb +15 -0
- data/lib/jmeter-ruby/extend/controllers/transaction_controller.rb +14 -0
- data/lib/jmeter-ruby/extend/misc/aliases.rb +21 -0
- data/lib/jmeter-ruby/extend/misc/exists.rb +13 -0
- data/lib/jmeter-ruby/extend/misc/rsync.rb +24 -0
- data/lib/jmeter-ruby/extend/misc/uuid.rb +12 -0
- data/lib/jmeter-ruby/extend/misc/with_helpers.rb +27 -0
- data/lib/jmeter-ruby/extend/plugins/jmeter_plugins.rb +120 -0
- data/lib/jmeter-ruby/extend/processors/extract.rb +28 -0
- data/lib/jmeter-ruby/extend/processors/regular_expression_extractor.rb +25 -0
- data/lib/jmeter-ruby/extend/samplers/http_request.rb +58 -0
- data/lib/jmeter-ruby/extend/samplers/jms_pointtopoint.rb +26 -0
- data/lib/jmeter-ruby/extend/samplers/soapxmlrpc_request.rb +9 -0
- data/lib/jmeter-ruby/extend/threads/setup_thread_group.rb +18 -0
- data/lib/jmeter-ruby/extend/threads/thread_group.rb +19 -0
- data/lib/jmeter-ruby/extend/timers/constant_throughput_timer.rb +11 -0
- data/lib/jmeter-ruby/extend/timers/random_timer.rb +14 -0
- data/lib/jmeter-ruby/helpers/fallback_content_proxy.rb +54 -0
- data/lib/jmeter-ruby/helpers/helper.rb +75 -0
- data/lib/jmeter-ruby/helpers/logger-colors.rb +48 -0
- data/lib/jmeter-ruby/helpers/parser.rb +135 -0
- data/lib/jmeter-ruby/helpers/strip-heredoc.rb +5 -0
- data/lib/jmeter-ruby/helpers/user-agents.rb +27 -0
- data/lib/jmeter-ruby/idl.rb +70 -0
- data/lib/jmeter-ruby/idl.xml +1488 -0
- data/lib/jmeter-ruby/plugins/active_threads_over_time.rb +57 -0
- data/lib/jmeter-ruby/plugins/composite_graph.rb +71 -0
- data/lib/jmeter-ruby/plugins/console_status_logger.rb +15 -0
- data/lib/jmeter-ruby/plugins/dummy_sampler.rb +26 -0
- data/lib/jmeter-ruby/plugins/jmx_collector.rb +73 -0
- data/lib/jmeter-ruby/plugins/json_path_assertion.rb +19 -0
- data/lib/jmeter-ruby/plugins/json_path_extractor.rb +20 -0
- data/lib/jmeter-ruby/plugins/latencies_over_time.rb +49 -0
- data/lib/jmeter-ruby/plugins/loadosophia_uploader.rb +63 -0
- data/lib/jmeter-ruby/plugins/perfmon_collector.rb +80 -0
- data/lib/jmeter-ruby/plugins/redis_data_set.rb +39 -0
- data/lib/jmeter-ruby/plugins/response_codes_per_second.rb +49 -0
- data/lib/jmeter-ruby/plugins/response_times_distribution.rb +49 -0
- data/lib/jmeter-ruby/plugins/response_times_over_time.rb +50 -0
- data/lib/jmeter-ruby/plugins/response_times_percentiles.rb +51 -0
- data/lib/jmeter-ruby/plugins/stepping_thread_group.rb +30 -0
- data/lib/jmeter-ruby/plugins/transactions_per_second.rb +50 -0
- data/lib/jmeter-ruby/plugins/ultimate_thread_group.rb +23 -0
- data/lib/jmeter-ruby/plugins/variable_throughput_timer.rb +27 -0
- data/lib/jmeter-ruby/version.rb +12 -0
- data/lib/jmeter-ruby.rb +27 -0
- data/mise.toml +2 -0
- data/script/release +162 -0
- data/spec/constant_throughput_timer_spec.rb +20 -0
- data/spec/csv_data_set_config_spec.rb +33 -0
- data/spec/header_manager_spec.rb +37 -0
- data/spec/http_cache_manager_spec.rb +29 -0
- data/spec/http_cookie_manager_spec.rb +169 -0
- data/spec/http_request_defaults_spec.rb +57 -0
- data/spec/http_request_spec.rb +305 -0
- data/spec/jmeter_plugins_spec.rb +245 -0
- data/spec/json_extractor_spec.rb +19 -0
- data/spec/json_path_assertion_spec.rb +28 -0
- data/spec/logic_controller_spec.rb +148 -0
- data/spec/loop_controller_spec.rb +19 -0
- data/spec/module_controller_spec.rb +56 -0
- data/spec/regular_expression_extractor_spec.rb +63 -0
- data/spec/response_assertion_spec.rb +69 -0
- data/spec/setup_thread_group_spec.rb +31 -0
- data/spec/spec_helper.rb +19 -0
- data/spec/thread_group_spec.rb +57 -0
- data/spec/throughput_controller_spec.rb +24 -0
- data/spec/transaction_controller_spec.rb +30 -0
- data/spec/user_defined_variables_spec.rb +22 -0
- data/spec/user_parameters_spec.rb +45 -0
- data/spec/with_helpers_spec.rb +57 -0
- data/spec/xpath_extractor_spec.rb +15 -0
- metadata +360 -0
@@ -0,0 +1,1488 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<jmeterTestPlan version="1.2" properties="2.9" jmeter="3.0 r1743807">
|
3
|
+
<hashTree>
|
4
|
+
<TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Test Plan" enabled="true">
|
5
|
+
<stringProp name="TestPlan.comments"></stringProp>
|
6
|
+
<boolProp name="TestPlan.functional_mode">false</boolProp>
|
7
|
+
<boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
|
8
|
+
<elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
9
|
+
<collectionProp name="Arguments.arguments"/>
|
10
|
+
</elementProp>
|
11
|
+
<stringProp name="TestPlan.user_define_classpath"></stringProp>
|
12
|
+
</TestPlan>
|
13
|
+
<hashTree>
|
14
|
+
<CounterConfig guiclass="CounterConfigGui" testclass="CounterConfig" testname="Counter" enabled="true">
|
15
|
+
<stringProp name="CounterConfig.start"></stringProp>
|
16
|
+
<stringProp name="CounterConfig.end"></stringProp>
|
17
|
+
<stringProp name="CounterConfig.incr"></stringProp>
|
18
|
+
<stringProp name="CounterConfig.name"></stringProp>
|
19
|
+
<stringProp name="CounterConfig.format"></stringProp>
|
20
|
+
<boolProp name="CounterConfig.per_user">true</boolProp>
|
21
|
+
<boolProp name="CounterConfig.reset_on_tg_iteration">true</boolProp>
|
22
|
+
</CounterConfig>
|
23
|
+
<hashTree/>
|
24
|
+
<CSVDataSet guiclass="TestBeanGUI" testclass="CSVDataSet" testname="CSV Data Set Config" enabled="true">
|
25
|
+
<stringProp name="delimiter">,</stringProp>
|
26
|
+
<stringProp name="fileEncoding"></stringProp>
|
27
|
+
<stringProp name="filename"></stringProp>
|
28
|
+
<boolProp name="quotedData">false</boolProp>
|
29
|
+
<boolProp name="recycle">true</boolProp>
|
30
|
+
<stringProp name="shareMode">shareMode.all</stringProp>
|
31
|
+
<boolProp name="stopThread">false</boolProp>
|
32
|
+
<boolProp name="ignoreFirstLine">false</boolProp>
|
33
|
+
<stringProp name="variableNames"></stringProp>
|
34
|
+
</CSVDataSet>
|
35
|
+
<hashTree/>
|
36
|
+
<ConfigTestElement guiclass="FtpConfigGui" testclass="ConfigTestElement" testname="FTP Request Defaults" enabled="true">
|
37
|
+
<stringProp name="FTPSampler.server"></stringProp>
|
38
|
+
<stringProp name="FTPSampler.port"></stringProp>
|
39
|
+
<stringProp name="FTPSampler.filename"></stringProp>
|
40
|
+
<stringProp name="FTPSampler.localfilename"></stringProp>
|
41
|
+
<stringProp name="FTPSampler.inputdata"></stringProp>
|
42
|
+
<boolProp name="FTPSampler.binarymode">false</boolProp>
|
43
|
+
<boolProp name="FTPSampler.saveresponse">false</boolProp>
|
44
|
+
<boolProp name="FTPSampler.upload">false</boolProp>
|
45
|
+
</ConfigTestElement>
|
46
|
+
<hashTree/>
|
47
|
+
<AuthManager guiclass="AuthPanel" testclass="AuthManager" testname="HTTP Authorization Manager" enabled="true">
|
48
|
+
<collectionProp name="AuthManager.auth_list">
|
49
|
+
<elementProp name="" elementType="Authorization">
|
50
|
+
<stringProp name="Authorization.url"></stringProp>
|
51
|
+
<stringProp name="Authorization.username"></stringProp>
|
52
|
+
<stringProp name="Authorization.password"></stringProp>
|
53
|
+
<stringProp name="Authorization.domain"></stringProp>
|
54
|
+
<stringProp name="Authorization.realm"></stringProp>
|
55
|
+
</elementProp>
|
56
|
+
</collectionProp>
|
57
|
+
</AuthManager>
|
58
|
+
<hashTree/>
|
59
|
+
<CacheManager guiclass="CacheManagerGui" testclass="CacheManager" testname="HTTP Cache Manager" enabled="true">
|
60
|
+
<boolProp name="clearEachIteration">false</boolProp>
|
61
|
+
<boolProp name="useExpires">false</boolProp>
|
62
|
+
</CacheManager>
|
63
|
+
<hashTree/>
|
64
|
+
<CookieManager guiclass="CookiePanel" testclass="CookieManager" testname="HTTP Cookie Manager" enabled="true">
|
65
|
+
<collectionProp name="CookieManager.cookies"/>
|
66
|
+
<boolProp name="CookieManager.clearEachIteration">false</boolProp>
|
67
|
+
<stringProp name="CookieManager.policy">default</stringProp>
|
68
|
+
<stringProp name="CookieManager.implementation">org.apache.jmeter.protocol.http.control.HC4CookieHandler</stringProp>
|
69
|
+
</CookieManager>
|
70
|
+
<hashTree/>
|
71
|
+
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
|
72
|
+
<collectionProp name="HeaderManager.headers">
|
73
|
+
<elementProp name="" elementType="Header">
|
74
|
+
<stringProp name="Header.name"></stringProp>
|
75
|
+
<stringProp name="Header.value"></stringProp>
|
76
|
+
</elementProp>
|
77
|
+
</collectionProp>
|
78
|
+
</HeaderManager>
|
79
|
+
<hashTree/>
|
80
|
+
<ConfigTestElement guiclass="HttpDefaultsGui" testclass="ConfigTestElement" testname="HTTP Request Defaults" enabled="true">
|
81
|
+
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
82
|
+
<collectionProp name="Arguments.arguments"/>
|
83
|
+
</elementProp>
|
84
|
+
<stringProp name="HTTPSampler.domain"></stringProp>
|
85
|
+
<stringProp name="HTTPSampler.port"></stringProp>
|
86
|
+
<stringProp name="HTTPSampler.proxyHost"></stringProp>
|
87
|
+
<stringProp name="HTTPSampler.proxyPort"></stringProp>
|
88
|
+
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
|
89
|
+
<stringProp name="HTTPSampler.response_timeout"></stringProp>
|
90
|
+
<stringProp name="HTTPSampler.protocol"></stringProp>
|
91
|
+
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
92
|
+
<stringProp name="HTTPSampler.path">/</stringProp>
|
93
|
+
<stringProp name="HTTPSampler.implementation">HttpClient4</stringProp>
|
94
|
+
<boolProp name="HTTPSampler.image_parser">true</boolProp>
|
95
|
+
<boolProp name="HTTPSampler.concurrentDwn">true</boolProp>
|
96
|
+
<stringProp name="HTTPSampler.concurrentPool">4</stringProp>
|
97
|
+
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
98
|
+
</ConfigTestElement>
|
99
|
+
<hashTree/>
|
100
|
+
<JavaConfig guiclass="JavaConfigGui" testclass="JavaConfig" testname="Java Request Defaults" enabled="true">
|
101
|
+
<elementProp name="arguments" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" enabled="true">
|
102
|
+
<collectionProp name="Arguments.arguments">
|
103
|
+
<elementProp name="Sleep_Time" elementType="Argument">
|
104
|
+
<stringProp name="Argument.name">Sleep_Time</stringProp>
|
105
|
+
<stringProp name="Argument.value">100</stringProp>
|
106
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
107
|
+
</elementProp>
|
108
|
+
<elementProp name="Sleep_Mask" elementType="Argument">
|
109
|
+
<stringProp name="Argument.name">Sleep_Mask</stringProp>
|
110
|
+
<stringProp name="Argument.value">0xFF</stringProp>
|
111
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
112
|
+
</elementProp>
|
113
|
+
<elementProp name="Label" elementType="Argument">
|
114
|
+
<stringProp name="Argument.name">Label</stringProp>
|
115
|
+
<stringProp name="Argument.value"></stringProp>
|
116
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
117
|
+
</elementProp>
|
118
|
+
<elementProp name="ResponseCode" elementType="Argument">
|
119
|
+
<stringProp name="Argument.name">ResponseCode</stringProp>
|
120
|
+
<stringProp name="Argument.value"></stringProp>
|
121
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
122
|
+
</elementProp>
|
123
|
+
<elementProp name="ResponseMessage" elementType="Argument">
|
124
|
+
<stringProp name="Argument.name">ResponseMessage</stringProp>
|
125
|
+
<stringProp name="Argument.value"></stringProp>
|
126
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
127
|
+
</elementProp>
|
128
|
+
<elementProp name="Status" elementType="Argument">
|
129
|
+
<stringProp name="Argument.name">Status</stringProp>
|
130
|
+
<stringProp name="Argument.value">OK</stringProp>
|
131
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
132
|
+
</elementProp>
|
133
|
+
<elementProp name="SamplerData" elementType="Argument">
|
134
|
+
<stringProp name="Argument.name">SamplerData</stringProp>
|
135
|
+
<stringProp name="Argument.value"></stringProp>
|
136
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
137
|
+
</elementProp>
|
138
|
+
<elementProp name="ResultData" elementType="Argument">
|
139
|
+
<stringProp name="Argument.name">ResultData</stringProp>
|
140
|
+
<stringProp name="Argument.value"></stringProp>
|
141
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
142
|
+
</elementProp>
|
143
|
+
</collectionProp>
|
144
|
+
</elementProp>
|
145
|
+
<stringProp name="classname">org.apache.jmeter.protocol.java.test.JavaTest</stringProp>
|
146
|
+
</JavaConfig>
|
147
|
+
<hashTree/>
|
148
|
+
<JDBCDataSource guiclass="TestBeanGUI" testclass="JDBCDataSource" testname="JDBC Connection Configuration" enabled="true">
|
149
|
+
<boolProp name="autocommit">true</boolProp>
|
150
|
+
<stringProp name="checkQuery">Select 1</stringProp>
|
151
|
+
<stringProp name="connectionAge">5000</stringProp>
|
152
|
+
<stringProp name="dataSource"></stringProp>
|
153
|
+
<stringProp name="dbUrl"></stringProp>
|
154
|
+
<stringProp name="driver"></stringProp>
|
155
|
+
<boolProp name="keepAlive">true</boolProp>
|
156
|
+
<stringProp name="password"></stringProp>
|
157
|
+
<stringProp name="poolMax">10</stringProp>
|
158
|
+
<stringProp name="timeout">10000</stringProp>
|
159
|
+
<stringProp name="transactionIsolation">DEFAULT</stringProp>
|
160
|
+
<stringProp name="trimInterval">60000</stringProp>
|
161
|
+
<stringProp name="username"></stringProp>
|
162
|
+
</JDBCDataSource>
|
163
|
+
<hashTree/>
|
164
|
+
<KeystoreConfig guiclass="TestBeanGUI" testclass="KeystoreConfig" testname="Keystore Configuration" enabled="true">
|
165
|
+
<stringProp name="endIndex"></stringProp>
|
166
|
+
<stringProp name="preload">True</stringProp>
|
167
|
+
<stringProp name="startIndex"></stringProp>
|
168
|
+
<stringProp name="clientCertAliasVarName"></stringProp>
|
169
|
+
</KeystoreConfig>
|
170
|
+
<hashTree/>
|
171
|
+
<ConfigTestElement guiclass="LdapExtConfigGui" testclass="ConfigTestElement" testname="LDAP Extended Request Defaults" enabled="true">
|
172
|
+
<stringProp name="servername"></stringProp>
|
173
|
+
<stringProp name="port"></stringProp>
|
174
|
+
<stringProp name="rootdn"></stringProp>
|
175
|
+
<stringProp name="scope">2</stringProp>
|
176
|
+
<stringProp name="countlimit"></stringProp>
|
177
|
+
<stringProp name="timelimit"></stringProp>
|
178
|
+
<stringProp name="attributes"></stringProp>
|
179
|
+
<stringProp name="return_object">false</stringProp>
|
180
|
+
<stringProp name="deref_aliases">false</stringProp>
|
181
|
+
<stringProp name="connection_timeout"></stringProp>
|
182
|
+
<stringProp name="parseflag">false</stringProp>
|
183
|
+
<stringProp name="secure">false</stringProp>
|
184
|
+
<stringProp name="user_dn"></stringProp>
|
185
|
+
<stringProp name="user_pw"></stringProp>
|
186
|
+
<stringProp name="comparedn"></stringProp>
|
187
|
+
<stringProp name="comparefilt"></stringProp>
|
188
|
+
<stringProp name="modddn"></stringProp>
|
189
|
+
<stringProp name="newdn"></stringProp>
|
190
|
+
</ConfigTestElement>
|
191
|
+
<hashTree/>
|
192
|
+
<ConfigTestElement guiclass="LdapConfigGui" testclass="ConfigTestElement" testname="LDAP Request Defaults" enabled="true">
|
193
|
+
<stringProp name="servername"></stringProp>
|
194
|
+
<stringProp name="port"></stringProp>
|
195
|
+
<stringProp name="rootdn"></stringProp>
|
196
|
+
<boolProp name="user_defined">true</boolProp>
|
197
|
+
<stringProp name="test">add</stringProp>
|
198
|
+
<stringProp name="base_entry_dn"></stringProp>
|
199
|
+
<elementProp name="arguments" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
200
|
+
<collectionProp name="Arguments.arguments">
|
201
|
+
<elementProp name=" " elementType="Argument">
|
202
|
+
<stringProp name="Argument.name"> </stringProp>
|
203
|
+
<stringProp name="Argument.value"> </stringProp>
|
204
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
205
|
+
</elementProp>
|
206
|
+
</collectionProp>
|
207
|
+
</elementProp>
|
208
|
+
</ConfigTestElement>
|
209
|
+
<hashTree/>
|
210
|
+
<ConfigTestElement guiclass="LoginConfigGui" testclass="ConfigTestElement" testname="Login Config Element" enabled="true">
|
211
|
+
<stringProp name="ConfigTestElement.username"></stringProp>
|
212
|
+
<stringProp name="ConfigTestElement.password"></stringProp>
|
213
|
+
</ConfigTestElement>
|
214
|
+
<hashTree/>
|
215
|
+
<RandomVariableConfig guiclass="TestBeanGUI" testclass="RandomVariableConfig" testname="Random Variable" enabled="true">
|
216
|
+
<stringProp name="maximumValue"></stringProp>
|
217
|
+
<stringProp name="minimumValue">1</stringProp>
|
218
|
+
<stringProp name="outputFormat"></stringProp>
|
219
|
+
<boolProp name="perThread">false</boolProp>
|
220
|
+
<stringProp name="randomSeed"></stringProp>
|
221
|
+
<stringProp name="variableName"></stringProp>
|
222
|
+
</RandomVariableConfig>
|
223
|
+
<hashTree/>
|
224
|
+
<ConfigTestElement guiclass="SimpleConfigGui" testclass="ConfigTestElement" testname="Simple Config Element" enabled="true"/>
|
225
|
+
<hashTree/>
|
226
|
+
<ConfigTestElement guiclass="TCPConfigGui" testclass="ConfigTestElement" testname="TCP Sampler Config" enabled="true">
|
227
|
+
<stringProp name="TCPSampler.server"></stringProp>
|
228
|
+
<boolProp name="TCPSampler.reUseConnection">true</boolProp>
|
229
|
+
<stringProp name="TCPSampler.port"></stringProp>
|
230
|
+
<boolProp name="TCPSampler.nodelay">false</boolProp>
|
231
|
+
<stringProp name="TCPSampler.timeout"></stringProp>
|
232
|
+
<stringProp name="TCPSampler.request"></stringProp>
|
233
|
+
<boolProp name="TCPSampler.closeConnection">false</boolProp>
|
234
|
+
</ConfigTestElement>
|
235
|
+
<hashTree/>
|
236
|
+
<Arguments guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
237
|
+
<collectionProp name="Arguments.arguments">
|
238
|
+
<elementProp name=" " elementType="Argument">
|
239
|
+
<stringProp name="Argument.name"> </stringProp>
|
240
|
+
<stringProp name="Argument.value"> </stringProp>
|
241
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
242
|
+
<stringProp name="Argument.desc"> </stringProp>
|
243
|
+
</elementProp>
|
244
|
+
</collectionProp>
|
245
|
+
<stringProp name="TestPlan.comments"> </stringProp>
|
246
|
+
</Arguments>
|
247
|
+
<hashTree/>
|
248
|
+
<TestFragmentController guiclass="TestFragmentControllerGui" testclass="TestFragmentController" testname="Test Fragment" enabled="true"/>
|
249
|
+
<hashTree/>
|
250
|
+
<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
|
251
|
+
<stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
|
252
|
+
<elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true">
|
253
|
+
<boolProp name="LoopController.continue_forever">false</boolProp>
|
254
|
+
<intProp name="LoopController.loops">-1</intProp>
|
255
|
+
</elementProp>
|
256
|
+
<stringProp name="ThreadGroup.num_threads">1</stringProp>
|
257
|
+
<stringProp name="ThreadGroup.ramp_time">1</stringProp>
|
258
|
+
<longProp name="ThreadGroup.start_time">1366415241000</longProp>
|
259
|
+
<longProp name="ThreadGroup.end_time">1366415241000</longProp>
|
260
|
+
<boolProp name="ThreadGroup.scheduler">true</boolProp>
|
261
|
+
<stringProp name="ThreadGroup.duration"></stringProp>
|
262
|
+
<stringProp name="ThreadGroup.delay"></stringProp>
|
263
|
+
<boolProp name="ThreadGroup.delayedStart">true</boolProp>
|
264
|
+
</ThreadGroup>
|
265
|
+
<hashTree>
|
266
|
+
<ForeachController guiclass="ForeachControlPanel" testclass="ForeachController" testname="ForEach Controller" enabled="true">
|
267
|
+
<stringProp name="ForeachController.inputVal"></stringProp>
|
268
|
+
<stringProp name="ForeachController.returnVal"></stringProp>
|
269
|
+
<boolProp name="ForeachController.useSeparator">true</boolProp>
|
270
|
+
</ForeachController>
|
271
|
+
<hashTree/>
|
272
|
+
<IfController guiclass="IfControllerPanel" testclass="IfController" testname="If Controller" enabled="true">
|
273
|
+
<stringProp name="IfController.condition"></stringProp>
|
274
|
+
<boolProp name="IfController.evaluateAll">false</boolProp>
|
275
|
+
<boolProp name="IfController.useExpression">true</boolProp>
|
276
|
+
</IfController>
|
277
|
+
<hashTree/>
|
278
|
+
<IncludeController guiclass="IncludeControllerGui" testclass="IncludeController" testname="Include Controller" enabled="true">
|
279
|
+
<stringProp name="IncludeController.includepath"></stringProp>
|
280
|
+
</IncludeController>
|
281
|
+
<hashTree/>
|
282
|
+
<LoopController guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true">
|
283
|
+
<boolProp name="LoopController.continue_forever">true</boolProp>
|
284
|
+
<stringProp name="LoopController.loops">1</stringProp>
|
285
|
+
</LoopController>
|
286
|
+
<hashTree/>
|
287
|
+
<ModuleController guiclass="ModuleControllerGui" testclass="ModuleController" testname="Module Controller" enabled="true">
|
288
|
+
<collectionProp name="ModuleController.node_path"/>
|
289
|
+
</ModuleController>
|
290
|
+
<hashTree/>
|
291
|
+
<OnceOnlyController guiclass="OnceOnlyControllerGui" testclass="OnceOnlyController" testname="Once Only Controller" enabled="true"/>
|
292
|
+
<hashTree/>
|
293
|
+
<RandomController guiclass="RandomControlGui" testclass="RandomController" testname="Random Controller" enabled="true">
|
294
|
+
<intProp name="InterleaveControl.style">1</intProp>
|
295
|
+
</RandomController>
|
296
|
+
<hashTree/>
|
297
|
+
<RandomOrderController guiclass="RandomOrderControllerGui" testclass="RandomOrderController" testname="Random Order Controller" enabled="true"/>
|
298
|
+
<hashTree/>
|
299
|
+
<RecordingController guiclass="RecordController" testclass="RecordingController" testname="Recording Controller" enabled="true"/>
|
300
|
+
<hashTree/>
|
301
|
+
<RunTime guiclass="RunTimeGui" testclass="RunTime" testname="Runtime Controller" enabled="true">
|
302
|
+
<stringProp name="RunTime.seconds">1</stringProp>
|
303
|
+
</RunTime>
|
304
|
+
<hashTree/>
|
305
|
+
<GenericController guiclass="LogicControllerGui" testclass="GenericController" testname="Simple Controller" enabled="true"/>
|
306
|
+
<hashTree/>
|
307
|
+
<SwitchController guiclass="SwitchControllerGui" testclass="SwitchController" testname="Switch Controller" enabled="true">
|
308
|
+
<stringProp name="SwitchController.value"></stringProp>
|
309
|
+
</SwitchController>
|
310
|
+
<hashTree/>
|
311
|
+
<ThroughputController guiclass="ThroughputControllerGui" testclass="ThroughputController" testname="Throughput Controller" enabled="true">
|
312
|
+
<intProp name="ThroughputController.style">0</intProp>
|
313
|
+
<boolProp name="ThroughputController.perThread">false</boolProp>
|
314
|
+
<intProp name="ThroughputController.maxThroughput">1</intProp>
|
315
|
+
<FloatProperty>
|
316
|
+
<name>ThroughputController.percentThroughput</name>
|
317
|
+
<value>100.0</value>
|
318
|
+
<savedValue>0.0</savedValue>
|
319
|
+
</FloatProperty>
|
320
|
+
</ThroughputController>
|
321
|
+
<hashTree/>
|
322
|
+
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="Transaction Controller" enabled="true">
|
323
|
+
<boolProp name="TransactionController.parent">true</boolProp>
|
324
|
+
<boolProp name="TransactionController.includeTimers">false</boolProp>
|
325
|
+
</TransactionController>
|
326
|
+
<hashTree/>
|
327
|
+
<WhileController guiclass="WhileControllerGui" testclass="WhileController" testname="While Controller" enabled="true">
|
328
|
+
<stringProp name="WhileController.condition"></stringProp>
|
329
|
+
</WhileController>
|
330
|
+
<hashTree/>
|
331
|
+
<BeanShellTimer guiclass="TestBeanGUI" testclass="BeanShellTimer" testname="BeanShell Timer" enabled="true">
|
332
|
+
<stringProp name="filename"></stringProp>
|
333
|
+
<stringProp name="parameters"></stringProp>
|
334
|
+
<boolProp name="resetInterpreter">false</boolProp>
|
335
|
+
<stringProp name="script"></stringProp>
|
336
|
+
</BeanShellTimer>
|
337
|
+
<hashTree/>
|
338
|
+
<BSFTimer guiclass="TestBeanGUI" testclass="BSFTimer" testname="BSF Timer" enabled="true">
|
339
|
+
<stringProp name="filename"></stringProp>
|
340
|
+
<stringProp name="parameters"></stringProp>
|
341
|
+
<stringProp name="script"></stringProp>
|
342
|
+
<stringProp name="scriptLanguage"></stringProp>
|
343
|
+
</BSFTimer>
|
344
|
+
<hashTree/>
|
345
|
+
<ConstantThroughputTimer guiclass="TestBeanGUI" testclass="ConstantThroughputTimer" testname="Constant Throughput Timer" enabled="true">
|
346
|
+
<intProp name="calcMode">0</intProp>
|
347
|
+
<stringProp name="throughput">0.0</stringProp>
|
348
|
+
</ConstantThroughputTimer>
|
349
|
+
<hashTree/>
|
350
|
+
<ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer" testname="Constant Timer" enabled="true">
|
351
|
+
<stringProp name="ConstantTimer.delay">300</stringProp>
|
352
|
+
</ConstantTimer>
|
353
|
+
<hashTree/>
|
354
|
+
<GaussianRandomTimer guiclass="GaussianRandomTimerGui" testclass="GaussianRandomTimer" testname="Gaussian Random Timer" enabled="true">
|
355
|
+
<stringProp name="ConstantTimer.delay">300</stringProp>
|
356
|
+
<stringProp name="RandomTimer.range">100.0</stringProp>
|
357
|
+
</GaussianRandomTimer>
|
358
|
+
<hashTree/>
|
359
|
+
<JSR223Timer guiclass="TestBeanGUI" testclass="JSR223Timer" testname="JSR223 Timer" enabled="true">
|
360
|
+
<stringProp name="cacheKey"></stringProp>
|
361
|
+
<stringProp name="filename"></stringProp>
|
362
|
+
<stringProp name="parameters"></stringProp>
|
363
|
+
<stringProp name="script"></stringProp>
|
364
|
+
<stringProp name="scriptLanguage"></stringProp>
|
365
|
+
</JSR223Timer>
|
366
|
+
<hashTree/>
|
367
|
+
<PoissonRandomTimer guiclass="PoissonRandomTimerGui" testclass="PoissonRandomTimer" testname="Poisson Random Timer" enabled="true">
|
368
|
+
<stringProp name="ConstantTimer.delay">300</stringProp>
|
369
|
+
<stringProp name="RandomTimer.range">100</stringProp>
|
370
|
+
</PoissonRandomTimer>
|
371
|
+
<hashTree/>
|
372
|
+
<SyncTimer guiclass="TestBeanGUI" testclass="SyncTimer" testname="Synchronizing Timer" enabled="true">
|
373
|
+
<intProp name="groupSize">0</intProp>
|
374
|
+
<longProp name="timeoutInMs">0</longProp>
|
375
|
+
</SyncTimer>
|
376
|
+
<hashTree/>
|
377
|
+
<UniformRandomTimer guiclass="UniformRandomTimerGui" testclass="UniformRandomTimer" testname="Uniform Random Timer" enabled="true">
|
378
|
+
<stringProp name="ConstantTimer.delay">0</stringProp>
|
379
|
+
<stringProp name="RandomTimer.range">100.0</stringProp>
|
380
|
+
</UniformRandomTimer>
|
381
|
+
<hashTree/>
|
382
|
+
<BeanShellPreProcessor guiclass="TestBeanGUI" testclass="BeanShellPreProcessor" testname="BeanShell PreProcessor" enabled="true">
|
383
|
+
<stringProp name="filename"></stringProp>
|
384
|
+
<stringProp name="parameters"></stringProp>
|
385
|
+
<boolProp name="resetInterpreter">false</boolProp>
|
386
|
+
<stringProp name="script"></stringProp>
|
387
|
+
</BeanShellPreProcessor>
|
388
|
+
<hashTree/>
|
389
|
+
<BSFPreProcessor guiclass="TestBeanGUI" testclass="BSFPreProcessor" testname="BSF PreProcessor" enabled="true">
|
390
|
+
<stringProp name="filename"></stringProp>
|
391
|
+
<stringProp name="parameters"></stringProp>
|
392
|
+
<stringProp name="script"></stringProp>
|
393
|
+
<stringProp name="scriptLanguage"></stringProp>
|
394
|
+
</BSFPreProcessor>
|
395
|
+
<hashTree/>
|
396
|
+
<AnchorModifier guiclass="AnchorModifierGui" testclass="AnchorModifier" testname="HTML Link Parser" enabled="true"/>
|
397
|
+
<hashTree/>
|
398
|
+
<ConfigTestElement guiclass="ObsoleteGui" testclass="ConfigTestElement" testname="HTML Parameter Mask" enabled="true">
|
399
|
+
<elementProp name="ParamModifier.mask" elementType="ConfigTestElement">
|
400
|
+
<stringProp name="ParamModifier.field_name"></stringProp>
|
401
|
+
<stringProp name="ParamModifier.prefix"></stringProp>
|
402
|
+
<longProp name="ParamModifier.lower_bound">0</longProp>
|
403
|
+
<longProp name="ParamModifier.upper_bound">10</longProp>
|
404
|
+
<longProp name="ParamModifier.increment">1</longProp>
|
405
|
+
<stringProp name="ParamModifier.suffix"></stringProp>
|
406
|
+
</elementProp>
|
407
|
+
</ConfigTestElement>
|
408
|
+
<hashTree/>
|
409
|
+
<URLRewritingModifier guiclass="URLRewritingModifierGui" testclass="URLRewritingModifier" testname="HTTP URL Re-writing Modifier" enabled="true">
|
410
|
+
<stringProp name="argument_name"></stringProp>
|
411
|
+
<boolProp name="path_extension">false</boolProp>
|
412
|
+
<boolProp name="path_extension_no_equals">false</boolProp>
|
413
|
+
<boolProp name="path_extension_no_questionmark">false</boolProp>
|
414
|
+
<boolProp name="cache_value">false</boolProp>
|
415
|
+
<boolProp name="encode">false</boolProp>
|
416
|
+
</URLRewritingModifier>
|
417
|
+
<hashTree/>
|
418
|
+
<JDBCPreProcessor guiclass="TestBeanGUI" testclass="JDBCPreProcessor" testname="JDBC PreProcessor" enabled="true">
|
419
|
+
<stringProp name="dataSource"></stringProp>
|
420
|
+
<stringProp name="query"></stringProp>
|
421
|
+
<stringProp name="queryArguments"></stringProp>
|
422
|
+
<stringProp name="queryArgumentsTypes"></stringProp>
|
423
|
+
<stringProp name="queryType">Select Statement</stringProp>
|
424
|
+
<stringProp name="resultVariable"></stringProp>
|
425
|
+
<stringProp name="variableNames"></stringProp>
|
426
|
+
<stringProp name="queryTimeout"></stringProp>
|
427
|
+
<stringProp name="resultSetHandler">Store as String</stringProp>
|
428
|
+
</JDBCPreProcessor>
|
429
|
+
<hashTree/>
|
430
|
+
<JSR223PreProcessor guiclass="TestBeanGUI" testclass="JSR223PreProcessor" testname="JSR223 PreProcessor" enabled="true">
|
431
|
+
<stringProp name="cacheKey"></stringProp>
|
432
|
+
<stringProp name="filename"></stringProp>
|
433
|
+
<stringProp name="parameters"></stringProp>
|
434
|
+
<stringProp name="script"></stringProp>
|
435
|
+
<stringProp name="scriptLanguage"></stringProp>
|
436
|
+
</JSR223PreProcessor>
|
437
|
+
<hashTree/>
|
438
|
+
<RegExUserParameters guiclass="RegExUserParametersGui" testclass="RegExUserParameters" testname="RegEx User Parameters" enabled="true">
|
439
|
+
<stringProp name="RegExUserParameters.regex_ref_name"></stringProp>
|
440
|
+
<stringProp name="RegExUserParameters.param_names_gr_nr"></stringProp>
|
441
|
+
<stringProp name="RegExUserParameters.param_values_gr_nr"></stringProp>
|
442
|
+
</RegExUserParameters>
|
443
|
+
<hashTree/>
|
444
|
+
<UserParameters guiclass="UserParametersGui" testclass="UserParameters" testname="User Parameters" enabled="true">
|
445
|
+
<collectionProp name="UserParameters.names"/>
|
446
|
+
<collectionProp name="UserParameters.thread_values">
|
447
|
+
<collectionProp name="1"/>
|
448
|
+
<collectionProp name="1"/>
|
449
|
+
</collectionProp>
|
450
|
+
<boolProp name="UserParameters.per_iteration">false</boolProp>
|
451
|
+
</UserParameters>
|
452
|
+
<hashTree/>
|
453
|
+
<AccessLogSampler guiclass="TestBeanGUI" testclass="AccessLogSampler" testname="Access Log Sampler" enabled="true">
|
454
|
+
<elementProp name="HTTPsampler.Arguments" elementType="Arguments">
|
455
|
+
<collectionProp name="Arguments.arguments"/>
|
456
|
+
</elementProp>
|
457
|
+
<stringProp name="domain"></stringProp>
|
458
|
+
<boolProp name="imageParsing">false</boolProp>
|
459
|
+
<stringProp name="logFile"></stringProp>
|
460
|
+
<stringProp name="parserClassName">org.apache.jmeter.protocol.http.util.accesslog.TCLogParser</stringProp>
|
461
|
+
<stringProp name="portString"></stringProp>
|
462
|
+
</AccessLogSampler>
|
463
|
+
<hashTree/>
|
464
|
+
<AjpSampler guiclass="AjpSamplerGui" testclass="AjpSampler" testname="AJP/1.3 Sampler" enabled="true">
|
465
|
+
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
466
|
+
<collectionProp name="Arguments.arguments"/>
|
467
|
+
</elementProp>
|
468
|
+
<stringProp name="HTTPSampler.domain"></stringProp>
|
469
|
+
<stringProp name="HTTPSampler.port"></stringProp>
|
470
|
+
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
|
471
|
+
<stringProp name="HTTPSampler.response_timeout"></stringProp>
|
472
|
+
<stringProp name="HTTPSampler.protocol"></stringProp>
|
473
|
+
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
474
|
+
<stringProp name="HTTPSampler.path"></stringProp>
|
475
|
+
<stringProp name="HTTPSampler.method">GET</stringProp>
|
476
|
+
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
|
477
|
+
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
|
478
|
+
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
|
479
|
+
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
|
480
|
+
<boolProp name="HTTPSampler.monitor">false</boolProp>
|
481
|
+
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
482
|
+
</AjpSampler>
|
483
|
+
<hashTree/>
|
484
|
+
<BeanShellSampler guiclass="BeanShellSamplerGui" testclass="BeanShellSampler" testname="BeanShell Sampler" enabled="true">
|
485
|
+
<stringProp name="BeanShellSampler.query"></stringProp>
|
486
|
+
<stringProp name="BeanShellSampler.filename"></stringProp>
|
487
|
+
<stringProp name="BeanShellSampler.parameters"></stringProp>
|
488
|
+
<boolProp name="BeanShellSampler.resetInterpreter">false</boolProp>
|
489
|
+
</BeanShellSampler>
|
490
|
+
<hashTree/>
|
491
|
+
<BSFSampler guiclass="TestBeanGUI" testclass="BSFSampler" testname="BSF Sampler" enabled="true">
|
492
|
+
<stringProp name="filename"></stringProp>
|
493
|
+
<stringProp name="parameters"></stringProp>
|
494
|
+
<stringProp name="script"></stringProp>
|
495
|
+
<stringProp name="scriptLanguage"></stringProp>
|
496
|
+
</BSFSampler>
|
497
|
+
<hashTree/>
|
498
|
+
<DebugSampler guiclass="TestBeanGUI" testclass="DebugSampler" testname="Debug Sampler" enabled="true">
|
499
|
+
<boolProp name="displayJMeterProperties">false</boolProp>
|
500
|
+
<boolProp name="displayJMeterVariables">true</boolProp>
|
501
|
+
<boolProp name="displaySystemProperties">false</boolProp>
|
502
|
+
</DebugSampler>
|
503
|
+
<hashTree/>
|
504
|
+
<FTPSampler guiclass="FtpTestSamplerGui" testclass="FTPSampler" testname="FTP Request" enabled="true">
|
505
|
+
<stringProp name="FTPSampler.server"></stringProp>
|
506
|
+
<stringProp name="FTPSampler.port"></stringProp>
|
507
|
+
<stringProp name="FTPSampler.filename"></stringProp>
|
508
|
+
<stringProp name="FTPSampler.localfilename"></stringProp>
|
509
|
+
<stringProp name="FTPSampler.inputdata"></stringProp>
|
510
|
+
<boolProp name="FTPSampler.binarymode">false</boolProp>
|
511
|
+
<boolProp name="FTPSampler.saveresponse">false</boolProp>
|
512
|
+
<boolProp name="FTPSampler.upload">false</boolProp>
|
513
|
+
<stringProp name="ConfigTestElement.username"></stringProp>
|
514
|
+
<stringProp name="ConfigTestElement.password"></stringProp>
|
515
|
+
</FTPSampler>
|
516
|
+
<hashTree/>
|
517
|
+
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="HTTP Request" enabled="true">
|
518
|
+
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
519
|
+
<collectionProp name="Arguments.arguments"/>
|
520
|
+
</elementProp>
|
521
|
+
<stringProp name="HTTPSampler.domain"></stringProp>
|
522
|
+
<stringProp name="HTTPSampler.port"></stringProp>
|
523
|
+
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
|
524
|
+
<stringProp name="HTTPSampler.response_timeout"></stringProp>
|
525
|
+
<stringProp name="HTTPSampler.protocol"></stringProp>
|
526
|
+
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
527
|
+
<stringProp name="HTTPSampler.path"></stringProp>
|
528
|
+
<stringProp name="HTTPSampler.method">GET</stringProp>
|
529
|
+
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
|
530
|
+
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
|
531
|
+
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
|
532
|
+
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
|
533
|
+
<boolProp name="HTTPSampler.monitor">false</boolProp>
|
534
|
+
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
535
|
+
</HTTPSamplerProxy>
|
536
|
+
<hashTree/>
|
537
|
+
<JavaSampler guiclass="JavaTestSamplerGui" testclass="JavaSampler" testname="Java Request" enabled="true">
|
538
|
+
<elementProp name="arguments" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" enabled="true">
|
539
|
+
<collectionProp name="Arguments.arguments">
|
540
|
+
<elementProp name="Sleep_Time" elementType="Argument">
|
541
|
+
<stringProp name="Argument.name">Sleep_Time</stringProp>
|
542
|
+
<stringProp name="Argument.value">100</stringProp>
|
543
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
544
|
+
</elementProp>
|
545
|
+
<elementProp name="Sleep_Mask" elementType="Argument">
|
546
|
+
<stringProp name="Argument.name">Sleep_Mask</stringProp>
|
547
|
+
<stringProp name="Argument.value">0xFF</stringProp>
|
548
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
549
|
+
</elementProp>
|
550
|
+
<elementProp name="Label" elementType="Argument">
|
551
|
+
<stringProp name="Argument.name">Label</stringProp>
|
552
|
+
<stringProp name="Argument.value"></stringProp>
|
553
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
554
|
+
</elementProp>
|
555
|
+
<elementProp name="ResponseCode" elementType="Argument">
|
556
|
+
<stringProp name="Argument.name">ResponseCode</stringProp>
|
557
|
+
<stringProp name="Argument.value"></stringProp>
|
558
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
559
|
+
</elementProp>
|
560
|
+
<elementProp name="ResponseMessage" elementType="Argument">
|
561
|
+
<stringProp name="Argument.name">ResponseMessage</stringProp>
|
562
|
+
<stringProp name="Argument.value"></stringProp>
|
563
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
564
|
+
</elementProp>
|
565
|
+
<elementProp name="Status" elementType="Argument">
|
566
|
+
<stringProp name="Argument.name">Status</stringProp>
|
567
|
+
<stringProp name="Argument.value">OK</stringProp>
|
568
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
569
|
+
</elementProp>
|
570
|
+
<elementProp name="SamplerData" elementType="Argument">
|
571
|
+
<stringProp name="Argument.name">SamplerData</stringProp>
|
572
|
+
<stringProp name="Argument.value"></stringProp>
|
573
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
574
|
+
</elementProp>
|
575
|
+
<elementProp name="ResultData" elementType="Argument">
|
576
|
+
<stringProp name="Argument.name">ResultData</stringProp>
|
577
|
+
<stringProp name="Argument.value"></stringProp>
|
578
|
+
<stringProp name="Argument.metadata">=</stringProp>
|
579
|
+
</elementProp>
|
580
|
+
</collectionProp>
|
581
|
+
</elementProp>
|
582
|
+
<stringProp name="classname">org.apache.jmeter.protocol.java.test.JavaTest</stringProp>
|
583
|
+
</JavaSampler>
|
584
|
+
<hashTree/>
|
585
|
+
<JDBCSampler guiclass="TestBeanGUI" testclass="JDBCSampler" testname="JDBC Request" enabled="true">
|
586
|
+
<stringProp name="dataSource"></stringProp>
|
587
|
+
<stringProp name="query"></stringProp>
|
588
|
+
<stringProp name="queryArguments"></stringProp>
|
589
|
+
<stringProp name="queryArgumentsTypes"></stringProp>
|
590
|
+
<stringProp name="queryType">Select Statement</stringProp>
|
591
|
+
<stringProp name="resultVariable"></stringProp>
|
592
|
+
<stringProp name="variableNames"></stringProp>
|
593
|
+
<stringProp name="queryTimeout"></stringProp>
|
594
|
+
<stringProp name="resultSetHandler">Store as String</stringProp>
|
595
|
+
</JDBCSampler>
|
596
|
+
<hashTree/>
|
597
|
+
<JMSSampler guiclass="JMSSamplerGui" testclass="JMSSampler" testname="JMS Point-to-Point" enabled="true">
|
598
|
+
<stringProp name="JMSSampler.queueconnectionfactory"></stringProp>
|
599
|
+
<stringProp name="JMSSampler.SendQueue"></stringProp>
|
600
|
+
<stringProp name="JMSSampler.ReceiveQueue"></stringProp>
|
601
|
+
<boolProp name="JMSSampler.isFireAndForget">true</boolProp>
|
602
|
+
<boolProp name="JMSSampler.isNonPersistent">false</boolProp>
|
603
|
+
<boolProp name="JMSSampler.useReqMsgIdAsCorrelId">false</boolProp>
|
604
|
+
<boolProp name="JMSSampler.useResMsgIdAsCorrelId">false</boolProp>
|
605
|
+
<stringProp name="JMSSampler.timeout"></stringProp>
|
606
|
+
<stringProp name="HTTPSamper.xml_data"></stringProp>
|
607
|
+
<stringProp name="JMSSampler.initialContextFactory"></stringProp>
|
608
|
+
<stringProp name="JMSSampler.contextProviderUrl"></stringProp>
|
609
|
+
<elementProp name="JMSSampler.jndiProperties" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
610
|
+
<collectionProp name="Arguments.arguments"/>
|
611
|
+
</elementProp>
|
612
|
+
<elementProp name="arguments" elementType="JMSProperties">
|
613
|
+
<collectionProp name="JMSProperties.properties"/>
|
614
|
+
</elementProp>
|
615
|
+
</JMSSampler>
|
616
|
+
<hashTree/>
|
617
|
+
<PublisherSampler guiclass="JMSPublisherGui" testclass="PublisherSampler" testname="JMS Publisher" enabled="true">
|
618
|
+
<stringProp name="jms.jndi_properties">false</stringProp>
|
619
|
+
<stringProp name="jms.initial_context_factory"></stringProp>
|
620
|
+
<stringProp name="jms.provider_url"></stringProp>
|
621
|
+
<stringProp name="jms.connection_factory"></stringProp>
|
622
|
+
<stringProp name="jms.topic"></stringProp>
|
623
|
+
<stringProp name="jms.security_principle"></stringProp>
|
624
|
+
<stringProp name="jms.security_credentials"></stringProp>
|
625
|
+
<stringProp name="jms.text_message"></stringProp>
|
626
|
+
<stringProp name="jms.input_file"></stringProp>
|
627
|
+
<stringProp name="jms.random_path"></stringProp>
|
628
|
+
<stringProp name="jms.config_choice">jms_use_text</stringProp>
|
629
|
+
<stringProp name="jms.config_msg_type">jms_text_message</stringProp>
|
630
|
+
<stringProp name="jms.iterations">1</stringProp>
|
631
|
+
<boolProp name="jms.authenticate">false</boolProp>
|
632
|
+
<elementProp name="arguments" elementType="JMSProperties">
|
633
|
+
<collectionProp name="JMSProperties.properties"/>
|
634
|
+
</elementProp>
|
635
|
+
<stringProp name="jms.expiration"></stringProp>
|
636
|
+
<stringProp name="jms.priority"></stringProp>
|
637
|
+
</PublisherSampler>
|
638
|
+
<hashTree/>
|
639
|
+
<SubscriberSampler guiclass="JMSSubscriberGui" testclass="SubscriberSampler" testname="JMS Subscriber" enabled="true">
|
640
|
+
<stringProp name="jms.jndi_properties">false</stringProp>
|
641
|
+
<stringProp name="jms.initial_context_factory"></stringProp>
|
642
|
+
<stringProp name="jms.provider_url"></stringProp>
|
643
|
+
<stringProp name="jms.connection_factory"></stringProp>
|
644
|
+
<stringProp name="jms.topic"></stringProp>
|
645
|
+
<stringProp name="jms.security_principle"></stringProp>
|
646
|
+
<stringProp name="jms.security_credentials"></stringProp>
|
647
|
+
<boolProp name="jms.authenticate">false</boolProp>
|
648
|
+
<stringProp name="jms.iterations">1</stringProp>
|
649
|
+
<stringProp name="jms.read_response">true</stringProp>
|
650
|
+
<stringProp name="jms.client_choice">jms_subscriber_receive</stringProp>
|
651
|
+
</SubscriberSampler>
|
652
|
+
<hashTree/>
|
653
|
+
<JSR223Sampler guiclass="TestBeanGUI" testclass="JSR223Sampler" testname="JSR223 Sampler" enabled="true">
|
654
|
+
<stringProp name="cacheKey"></stringProp>
|
655
|
+
<stringProp name="filename"></stringProp>
|
656
|
+
<stringProp name="parameters"></stringProp>
|
657
|
+
<stringProp name="script"></stringProp>
|
658
|
+
<stringProp name="scriptLanguage"></stringProp>
|
659
|
+
</JSR223Sampler>
|
660
|
+
<hashTree/>
|
661
|
+
<JUnitSampler guiclass="JUnitTestSamplerGui" testclass="JUnitSampler" testname="JUnit Request" enabled="true">
|
662
|
+
<stringProp name="junitSampler.classname">test.RerunTest</stringProp>
|
663
|
+
<stringProp name="junitsampler.constructorstring"></stringProp>
|
664
|
+
<stringProp name="junitsampler.method">testRerun</stringProp>
|
665
|
+
<stringProp name="junitsampler.pkg.filter"></stringProp>
|
666
|
+
<stringProp name="junitsampler.success">Test successful</stringProp>
|
667
|
+
<stringProp name="junitsampler.success.code">1000</stringProp>
|
668
|
+
<stringProp name="junitsampler.failure">Test failed</stringProp>
|
669
|
+
<stringProp name="junitsampler.failure.code">0001</stringProp>
|
670
|
+
<stringProp name="junitsampler.error">An unexpected error occured</stringProp>
|
671
|
+
<stringProp name="junitsampler.error.code">9999</stringProp>
|
672
|
+
<stringProp name="junitsampler.exec.setup">false</stringProp>
|
673
|
+
<stringProp name="junitsampler.append.error">false</stringProp>
|
674
|
+
<stringProp name="junitsampler.append.exception">false</stringProp>
|
675
|
+
</JUnitSampler>
|
676
|
+
<hashTree/>
|
677
|
+
<LDAPExtSampler guiclass="LdapExtTestSamplerGui" testclass="LDAPExtSampler" testname="LDAP Extended Request" enabled="true">
|
678
|
+
<stringProp name="servername"></stringProp>
|
679
|
+
<stringProp name="port"></stringProp>
|
680
|
+
<stringProp name="rootdn"></stringProp>
|
681
|
+
<stringProp name="scope">2</stringProp>
|
682
|
+
<stringProp name="countlimit"></stringProp>
|
683
|
+
<stringProp name="timelimit"></stringProp>
|
684
|
+
<stringProp name="attributes"></stringProp>
|
685
|
+
<stringProp name="return_object">false</stringProp>
|
686
|
+
<stringProp name="deref_aliases">false</stringProp>
|
687
|
+
<stringProp name="connection_timeout"></stringProp>
|
688
|
+
<stringProp name="parseflag">false</stringProp>
|
689
|
+
<stringProp name="secure">false</stringProp>
|
690
|
+
<stringProp name="user_dn"></stringProp>
|
691
|
+
<stringProp name="user_pw"></stringProp>
|
692
|
+
<stringProp name="comparedn"></stringProp>
|
693
|
+
<stringProp name="comparefilt"></stringProp>
|
694
|
+
<stringProp name="modddn"></stringProp>
|
695
|
+
<stringProp name="newdn"></stringProp>
|
696
|
+
</LDAPExtSampler>
|
697
|
+
<hashTree/>
|
698
|
+
<LDAPSampler guiclass="LdapTestSamplerGui" testclass="LDAPSampler" testname="LDAP Request" enabled="true">
|
699
|
+
<stringProp name="servername"></stringProp>
|
700
|
+
<stringProp name="port"></stringProp>
|
701
|
+
<stringProp name="rootdn"></stringProp>
|
702
|
+
<boolProp name="user_defined">false</boolProp>
|
703
|
+
<stringProp name="test">add</stringProp>
|
704
|
+
<stringProp name="base_entry_dn"></stringProp>
|
705
|
+
<elementProp name="arguments" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
706
|
+
<collectionProp name="Arguments.arguments"/>
|
707
|
+
</elementProp>
|
708
|
+
<stringProp name="ConfigTestElement.username"></stringProp>
|
709
|
+
<stringProp name="ConfigTestElement.password"></stringProp>
|
710
|
+
</LDAPSampler>
|
711
|
+
<hashTree/>
|
712
|
+
<MailReaderSampler guiclass="MailReaderSamplerGui" testclass="MailReaderSampler" testname="Mail Reader Sampler" enabled="true">
|
713
|
+
<stringProp name="host_type">pop3</stringProp>
|
714
|
+
<stringProp name="folder">INBOX</stringProp>
|
715
|
+
<stringProp name="host"></stringProp>
|
716
|
+
<stringProp name="username"></stringProp>
|
717
|
+
<stringProp name="password"></stringProp>
|
718
|
+
<intProp name="num_messages">-1</intProp>
|
719
|
+
<boolProp name="delete">false</boolProp>
|
720
|
+
<stringProp name="SMTPSampler.useSSL">false</stringProp>
|
721
|
+
<stringProp name="SMTPSampler.useStartTLS">false</stringProp>
|
722
|
+
<stringProp name="SMTPSampler.trustAllCerts">false</stringProp>
|
723
|
+
<stringProp name="SMTPSampler.enforceStartTLS">false</stringProp>
|
724
|
+
<stringProp name="SMTPSampler.useLocalTrustStore">false</stringProp>
|
725
|
+
<stringProp name="SMTPSampler.trustStoreToUse"></stringProp>
|
726
|
+
</MailReaderSampler>
|
727
|
+
<hashTree/>
|
728
|
+
<SystemSampler guiclass="SystemSamplerGui" testclass="SystemSampler" testname="OS Process Sampler" enabled="true">
|
729
|
+
<boolProp name="SystemSampler.checkReturnCode">false</boolProp>
|
730
|
+
<stringProp name="SystemSampler.expectedReturnCode">0</stringProp>
|
731
|
+
<stringProp name="SystemSampler.command"></stringProp>
|
732
|
+
<elementProp name="SystemSampler.arguments" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
733
|
+
<collectionProp name="Arguments.arguments"/>
|
734
|
+
</elementProp>
|
735
|
+
<elementProp name="SystemSampler.environment" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
|
736
|
+
<collectionProp name="Arguments.arguments"/>
|
737
|
+
</elementProp>
|
738
|
+
<stringProp name="SystemSampler.directory"></stringProp>
|
739
|
+
</SystemSampler>
|
740
|
+
<hashTree/>
|
741
|
+
<SmtpSampler guiclass="SmtpSamplerGui" testclass="SmtpSampler" testname="SMTP Sampler" enabled="true">
|
742
|
+
<stringProp name="SMTPSampler.server"></stringProp>
|
743
|
+
<stringProp name="SMTPSampler.serverPort"></stringProp>
|
744
|
+
<stringProp name="SMTPSampler.mailFrom"></stringProp>
|
745
|
+
<stringProp name="SMTPSampler.replyTo"></stringProp>
|
746
|
+
<stringProp name="SMTPSampler.receiverTo"></stringProp>
|
747
|
+
<stringProp name="SMTPSampler.receiverCC"></stringProp>
|
748
|
+
<stringProp name="SMTPSampler.receiverBCC"></stringProp>
|
749
|
+
<stringProp name="SMTPSampler.subject"></stringProp>
|
750
|
+
<stringProp name="SMTPSampler.suppressSubject">false</stringProp>
|
751
|
+
<stringProp name="SMTPSampler.include_timestamp">false</stringProp>
|
752
|
+
<stringProp name="SMTPSampler.message"></stringProp>
|
753
|
+
<stringProp name="SMTPSampler.plainBody">false</stringProp>
|
754
|
+
<stringProp name="SMTPSampler.attachFile"></stringProp>
|
755
|
+
<stringProp name="SMTPSampler.useSSL">false</stringProp>
|
756
|
+
<stringProp name="SMTPSampler.useStartTLS">false</stringProp>
|
757
|
+
<stringProp name="SMTPSampler.trustAllCerts">false</stringProp>
|
758
|
+
<stringProp name="SMTPSampler.enforceStartTLS">false</stringProp>
|
759
|
+
<stringProp name="SMTPSampler.useLocalTrustStore">false</stringProp>
|
760
|
+
<stringProp name="SMTPSampler.trustStoreToUse"></stringProp>
|
761
|
+
<boolProp name="SMTPSampler.use_eml">false</boolProp>
|
762
|
+
<stringProp name="SMTPSampler.emlMessageToSend"></stringProp>
|
763
|
+
<stringProp name="SMTPSampler.useAuth">false</stringProp>
|
764
|
+
<stringProp name="SMTPSampler.password"></stringProp>
|
765
|
+
<stringProp name="SMTPSampler.username"></stringProp>
|
766
|
+
<stringProp name="SMTPSampler.messageSizeStatistics">false</stringProp>
|
767
|
+
<stringProp name="SMTPSampler.enableDebug">false</stringProp>
|
768
|
+
<collectionProp name="SMTPSampler.headerFields"/>
|
769
|
+
</SmtpSampler>
|
770
|
+
<hashTree/>
|
771
|
+
<SoapSampler guiclass="SoapSamplerGui" testclass="SoapSampler" testname="SOAP/XML-RPC Request" enabled="true">
|
772
|
+
<elementProp name="HTTPsampler.Arguments" elementType="Arguments">
|
773
|
+
<collectionProp name="Arguments.arguments"/>
|
774
|
+
</elementProp>
|
775
|
+
<stringProp name="SoapSampler.URL_DATA"></stringProp>
|
776
|
+
<stringProp name="HTTPSamper.xml_data"></stringProp>
|
777
|
+
<stringProp name="SoapSampler.xml_data_file"></stringProp>
|
778
|
+
<stringProp name="SoapSampler.SOAP_ACTION"></stringProp>
|
779
|
+
<stringProp name="SoapSampler.SEND_SOAP_ACTION">true</stringProp>
|
780
|
+
<boolProp name="HTTPSampler.use_keepalive">false</boolProp>
|
781
|
+
</SoapSampler>
|
782
|
+
<hashTree/>
|
783
|
+
<TCPSampler guiclass="TCPSamplerGui" testclass="TCPSampler" testname="TCP Sampler" enabled="true">
|
784
|
+
<stringProp name="TCPSampler.server"></stringProp>
|
785
|
+
<boolProp name="TCPSampler.reUseConnection">true</boolProp>
|
786
|
+
<stringProp name="TCPSampler.port"></stringProp>
|
787
|
+
<boolProp name="TCPSampler.nodelay">false</boolProp>
|
788
|
+
<stringProp name="TCPSampler.timeout"></stringProp>
|
789
|
+
<stringProp name="TCPSampler.request"></stringProp>
|
790
|
+
<boolProp name="TCPSampler.closeConnection">false</boolProp>
|
791
|
+
<stringProp name="ConfigTestElement.username"></stringProp>
|
792
|
+
<stringProp name="ConfigTestElement.password"></stringProp>
|
793
|
+
</TCPSampler>
|
794
|
+
<hashTree/>
|
795
|
+
<TestAction guiclass="TestActionGui" testclass="TestAction" testname="Test Action" enabled="true">
|
796
|
+
<intProp name="ActionProcessor.action">1</intProp>
|
797
|
+
<intProp name="ActionProcessor.target">0</intProp>
|
798
|
+
<stringProp name="ActionProcessor.duration"></stringProp>
|
799
|
+
</TestAction>
|
800
|
+
<hashTree/>
|
801
|
+
<BeanShellPostProcessor guiclass="TestBeanGUI" testclass="BeanShellPostProcessor" testname="BeanShell PostProcessor" enabled="true">
|
802
|
+
<stringProp name="filename"></stringProp>
|
803
|
+
<stringProp name="parameters"></stringProp>
|
804
|
+
<boolProp name="resetInterpreter">false</boolProp>
|
805
|
+
<stringProp name="script"></stringProp>
|
806
|
+
</BeanShellPostProcessor>
|
807
|
+
<hashTree/>
|
808
|
+
<BSFPostProcessor guiclass="TestBeanGUI" testclass="BSFPostProcessor" testname="BSF PostProcessor" enabled="true">
|
809
|
+
<stringProp name="filename"></stringProp>
|
810
|
+
<stringProp name="parameters"></stringProp>
|
811
|
+
<stringProp name="script"></stringProp>
|
812
|
+
<stringProp name="scriptLanguage"></stringProp>
|
813
|
+
</BSFPostProcessor>
|
814
|
+
<hashTree/>
|
815
|
+
<HtmlExtractor guiclass="HtmlExtractorGui" testclass="HtmlExtractor" testname="CSS/JQuery Extractor" enabled="true">
|
816
|
+
<stringProp name="HtmlExtractor.refname"></stringProp>
|
817
|
+
<stringProp name="HtmlExtractor.expr"></stringProp>
|
818
|
+
<stringProp name="HtmlExtractor.attribute"></stringProp>
|
819
|
+
<stringProp name="HtmlExtractor.default"></stringProp>
|
820
|
+
<stringProp name="HtmlExtractor.match_number"></stringProp>
|
821
|
+
<stringProp name="HtmlExtractor.extractor_impl"></stringProp>
|
822
|
+
<boolProp name="HtmlExtractor.default_empty_value"/>
|
823
|
+
</HtmlExtractor>
|
824
|
+
<hashTree/>
|
825
|
+
<DebugPostProcessor guiclass="TestBeanGUI" testclass="DebugPostProcessor" testname="Debug PostProcessor" enabled="true">
|
826
|
+
<boolProp name="displayJMeterProperties">false</boolProp>
|
827
|
+
<boolProp name="displayJMeterVariables">true</boolProp>
|
828
|
+
<boolProp name="displaySamplerProperties">true</boolProp>
|
829
|
+
<boolProp name="displaySystemProperties">false</boolProp>
|
830
|
+
</DebugPostProcessor>
|
831
|
+
<hashTree/>
|
832
|
+
<JDBCPostProcessor guiclass="TestBeanGUI" testclass="JDBCPostProcessor" testname="JDBC PostProcessor" enabled="true">
|
833
|
+
<stringProp name="dataSource"></stringProp>
|
834
|
+
<stringProp name="query"></stringProp>
|
835
|
+
<stringProp name="queryArguments"></stringProp>
|
836
|
+
<stringProp name="queryArgumentsTypes"></stringProp>
|
837
|
+
<stringProp name="queryType">Select Statement</stringProp>
|
838
|
+
<stringProp name="resultVariable"></stringProp>
|
839
|
+
<stringProp name="variableNames"></stringProp>
|
840
|
+
<stringProp name="queryTimeout"></stringProp>
|
841
|
+
<stringProp name="resultSetHandler">Store as String</stringProp>
|
842
|
+
</JDBCPostProcessor>
|
843
|
+
<hashTree/>
|
844
|
+
<JSONPostProcessor guiclass="JSONPostProcessorGui" testclass="JSONPostProcessor" testname="JSON Path PostProcessor" enabled="true">
|
845
|
+
<stringProp name="JSONPostProcessor.referenceNames"></stringProp>
|
846
|
+
<stringProp name="JSONPostProcessor.jsonPathExprs"></stringProp>
|
847
|
+
<stringProp name="JSONPostProcessor.match_numbers"></stringProp>
|
848
|
+
</JSONPostProcessor>
|
849
|
+
<hashTree/>
|
850
|
+
<JSR223PostProcessor guiclass="TestBeanGUI" testclass="JSR223PostProcessor" testname="JSR223 PostProcessor" enabled="true">
|
851
|
+
<stringProp name="cacheKey"></stringProp>
|
852
|
+
<stringProp name="filename"></stringProp>
|
853
|
+
<stringProp name="parameters"></stringProp>
|
854
|
+
<stringProp name="script"></stringProp>
|
855
|
+
<stringProp name="scriptLanguage"></stringProp>
|
856
|
+
</JSR223PostProcessor>
|
857
|
+
<hashTree/>
|
858
|
+
<RegexExtractor guiclass="RegexExtractorGui" testclass="RegexExtractor" testname="Regular Expression Extractor" enabled="true">
|
859
|
+
<stringProp name="RegexExtractor.useHeaders">false</stringProp>
|
860
|
+
<stringProp name="RegexExtractor.refname"></stringProp>
|
861
|
+
<stringProp name="RegexExtractor.regex"></stringProp>
|
862
|
+
<stringProp name="RegexExtractor.template"></stringProp>
|
863
|
+
<stringProp name="RegexExtractor.default"></stringProp>
|
864
|
+
<stringProp name="RegexExtractor.match_number"></stringProp>
|
865
|
+
<stringProp name="Sample.scope">all</stringProp>
|
866
|
+
<boolProp name="RegexExtractor.default_empty_value"/>
|
867
|
+
</RegexExtractor>
|
868
|
+
<hashTree/>
|
869
|
+
<ResultAction guiclass="ResultActionGui" testclass="ResultAction" testname="Result Status Action Handler" enabled="true">
|
870
|
+
<intProp name="OnError.action">0</intProp>
|
871
|
+
</ResultAction>
|
872
|
+
<hashTree/>
|
873
|
+
<XPathExtractor guiclass="XPathExtractorGui" testclass="XPathExtractor" testname="XPath Extractor" enabled="true">
|
874
|
+
<stringProp name="XPathExtractor.default"></stringProp>
|
875
|
+
<stringProp name="XPathExtractor.refname"></stringProp>
|
876
|
+
<stringProp name="XPathExtractor.xpathQuery"></stringProp>
|
877
|
+
<boolProp name="XPathExtractor.validate">false</boolProp>
|
878
|
+
<boolProp name="XPathExtractor.tolerant">false</boolProp>
|
879
|
+
<boolProp name="XPathExtractor.namespace">false</boolProp>
|
880
|
+
<stringProp name="Sample.scope">all</stringProp>
|
881
|
+
</XPathExtractor>
|
882
|
+
<hashTree/>
|
883
|
+
<BeanShellAssertion guiclass="BeanShellAssertionGui" testclass="BeanShellAssertion" testname="BeanShell Assertion" enabled="true">
|
884
|
+
<stringProp name="BeanShellAssertion.query"></stringProp>
|
885
|
+
<stringProp name="BeanShellAssertion.filename"></stringProp>
|
886
|
+
<stringProp name="BeanShellAssertion.parameters"></stringProp>
|
887
|
+
<boolProp name="BeanShellAssertion.resetInterpreter">false</boolProp>
|
888
|
+
</BeanShellAssertion>
|
889
|
+
<hashTree/>
|
890
|
+
<BSFAssertion guiclass="TestBeanGUI" testclass="BSFAssertion" testname="BSF Assertion" enabled="true">
|
891
|
+
<stringProp name="filename"></stringProp>
|
892
|
+
<stringProp name="parameters"></stringProp>
|
893
|
+
<stringProp name="script"></stringProp>
|
894
|
+
<stringProp name="scriptLanguage"></stringProp>
|
895
|
+
</BSFAssertion>
|
896
|
+
<hashTree/>
|
897
|
+
<CompareAssertion guiclass="TestBeanGUI" testclass="CompareAssertion" testname="Compare Assertion" enabled="true">
|
898
|
+
<boolProp name="compareContent">true</boolProp>
|
899
|
+
<longProp name="compareTime">-1</longProp>
|
900
|
+
<collectionProp name="stringsToSkip"/>
|
901
|
+
</CompareAssertion>
|
902
|
+
<hashTree/>
|
903
|
+
<DurationAssertion guiclass="DurationAssertionGui" testclass="DurationAssertion" testname="Duration Assertion" enabled="true">
|
904
|
+
<stringProp name="DurationAssertion.duration"></stringProp>
|
905
|
+
</DurationAssertion>
|
906
|
+
<hashTree/>
|
907
|
+
<HTMLAssertion guiclass="HTMLAssertionGui" testclass="HTMLAssertion" testname="HTML Assertion" enabled="true">
|
908
|
+
<longProp name="html_assertion_error_threshold">0</longProp>
|
909
|
+
<longProp name="html_assertion_warning_threshold">0</longProp>
|
910
|
+
<stringProp name="html_assertion_doctype">omit</stringProp>
|
911
|
+
<boolProp name="html_assertion_errorsonly">false</boolProp>
|
912
|
+
<longProp name="html_assertion_format">0</longProp>
|
913
|
+
<stringProp name="html_assertion_filename"></stringProp>
|
914
|
+
</HTMLAssertion>
|
915
|
+
<hashTree/>
|
916
|
+
<JSR223Assertion guiclass="TestBeanGUI" testclass="JSR223Assertion" testname="JSR223 Assertion" enabled="true">
|
917
|
+
<stringProp name="cacheKey"></stringProp>
|
918
|
+
<stringProp name="filename"></stringProp>
|
919
|
+
<stringProp name="parameters"></stringProp>
|
920
|
+
<stringProp name="script"></stringProp>
|
921
|
+
<stringProp name="scriptLanguage"></stringProp>
|
922
|
+
</JSR223Assertion>
|
923
|
+
<hashTree/>
|
924
|
+
<MD5HexAssertion guiclass="MD5HexAssertionGUI" testclass="MD5HexAssertion" testname="MD5Hex Assertion" enabled="true">
|
925
|
+
<stringProp name="MD5HexAssertion.size"></stringProp>
|
926
|
+
</MD5HexAssertion>
|
927
|
+
<hashTree/>
|
928
|
+
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
|
929
|
+
<collectionProp name="Asserion.test_strings">
|
930
|
+
<stringProp name="0"></stringProp>
|
931
|
+
</collectionProp>
|
932
|
+
<stringProp name="Assertion.test_field">Assertion.response_data</stringProp>
|
933
|
+
<boolProp name="Assertion.assume_success">false</boolProp>
|
934
|
+
<intProp name="Assertion.test_type">16</intProp>
|
935
|
+
<stringProp name="Assertion.scope">all</stringProp>
|
936
|
+
</ResponseAssertion>
|
937
|
+
<hashTree/>
|
938
|
+
<SMIMEAssertion guiclass="SMIMEAssertionGui" testclass="SMIMEAssertion" testname="SMIME Assertion" enabled="true">
|
939
|
+
<boolProp name="SMIMEAssert.verifySignature">false</boolProp>
|
940
|
+
<boolProp name="SMIMEAssert.notSigned">false</boolProp>
|
941
|
+
<stringProp name="SMIMEAssert.issuerDn"></stringProp>
|
942
|
+
<stringProp name="SMIMEAssert.signerDn"></stringProp>
|
943
|
+
<stringProp name="SMIMEAssert.signerSerial"></stringProp>
|
944
|
+
<stringProp name="SMIMEAssert.signerEmail"></stringProp>
|
945
|
+
<stringProp name="SMIMEAssert.signerCertFile"></stringProp>
|
946
|
+
<boolProp name="SMIMEAssert.signerNoCheck">false</boolProp>
|
947
|
+
<boolProp name="SMIMEAssert.signerCheckConstraints">false</boolProp>
|
948
|
+
<boolProp name="SMIMEAssert.signerCheckByFile">false</boolProp>
|
949
|
+
<stringProp name="SMIMEAssert.messagePosition"></stringProp>
|
950
|
+
</SMIMEAssertion>
|
951
|
+
<hashTree/>
|
952
|
+
<XMLAssertion guiclass="XMLAssertionGui" testclass="XMLAssertion" testname="XML Assertion" enabled="true"/>
|
953
|
+
<hashTree/>
|
954
|
+
<XMLSchemaAssertion guiclass="XMLSchemaAssertionGUI" testclass="XMLSchemaAssertion" testname="XML Schema Assertion" enabled="true">
|
955
|
+
<stringProp name="xmlschema_assertion_filename"></stringProp>
|
956
|
+
</XMLSchemaAssertion>
|
957
|
+
<hashTree/>
|
958
|
+
<XPathAssertion guiclass="XPathAssertionGui" testclass="XPathAssertion" testname="XPath Assertion" enabled="true">
|
959
|
+
<boolProp name="XPath.negate">false</boolProp>
|
960
|
+
<stringProp name="XPath.xpath">/</stringProp>
|
961
|
+
<boolProp name="XPath.validate">false</boolProp>
|
962
|
+
<boolProp name="XPath.whitespace">false</boolProp>
|
963
|
+
<boolProp name="XPath.tolerant">false</boolProp>
|
964
|
+
<boolProp name="XPath.namespace">false</boolProp>
|
965
|
+
<stringProp name="Assertion.scope">all</stringProp>
|
966
|
+
</XPathAssertion>
|
967
|
+
<hashTree/>
|
968
|
+
<ResultCollector guiclass="StatGraphVisualizer" testclass="ResultCollector" testname="Aggregate Graph" enabled="true">
|
969
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
970
|
+
<objProp>
|
971
|
+
<name>saveConfig</name>
|
972
|
+
<value class="SampleSaveConfiguration">
|
973
|
+
<time>true</time>
|
974
|
+
<latency>true</latency>
|
975
|
+
<timestamp>true</timestamp>
|
976
|
+
<success>true</success>
|
977
|
+
<label>true</label>
|
978
|
+
<code>true</code>
|
979
|
+
<message>false</message>
|
980
|
+
<threadName>true</threadName>
|
981
|
+
<dataType>false</dataType>
|
982
|
+
<encoding>false</encoding>
|
983
|
+
<assertions>false</assertions>
|
984
|
+
<subresults>false</subresults>
|
985
|
+
<responseData>false</responseData>
|
986
|
+
<samplerData>false</samplerData>
|
987
|
+
<xml>false</xml>
|
988
|
+
<fieldNames>false</fieldNames>
|
989
|
+
<responseHeaders>false</responseHeaders>
|
990
|
+
<requestHeaders>false</requestHeaders>
|
991
|
+
<responseDataOnError>false</responseDataOnError>
|
992
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
993
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
994
|
+
<bytes>true</bytes>
|
995
|
+
<threadCounts>true</threadCounts>
|
996
|
+
<sampleCount>true</sampleCount>
|
997
|
+
</value>
|
998
|
+
</objProp>
|
999
|
+
<stringProp name="filename"></stringProp>
|
1000
|
+
</ResultCollector>
|
1001
|
+
<hashTree/>
|
1002
|
+
<ResultCollector guiclass="StatVisualizer" testclass="ResultCollector" testname="Aggregate Report" enabled="true">
|
1003
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1004
|
+
<objProp>
|
1005
|
+
<name>saveConfig</name>
|
1006
|
+
<value class="SampleSaveConfiguration">
|
1007
|
+
<time>true</time>
|
1008
|
+
<latency>true</latency>
|
1009
|
+
<timestamp>true</timestamp>
|
1010
|
+
<success>true</success>
|
1011
|
+
<label>true</label>
|
1012
|
+
<code>true</code>
|
1013
|
+
<message>false</message>
|
1014
|
+
<threadName>true</threadName>
|
1015
|
+
<dataType>false</dataType>
|
1016
|
+
<encoding>false</encoding>
|
1017
|
+
<assertions>false</assertions>
|
1018
|
+
<subresults>false</subresults>
|
1019
|
+
<responseData>false</responseData>
|
1020
|
+
<samplerData>false</samplerData>
|
1021
|
+
<xml>false</xml>
|
1022
|
+
<fieldNames>false</fieldNames>
|
1023
|
+
<responseHeaders>false</responseHeaders>
|
1024
|
+
<requestHeaders>false</requestHeaders>
|
1025
|
+
<responseDataOnError>false</responseDataOnError>
|
1026
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1027
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1028
|
+
<bytes>true</bytes>
|
1029
|
+
<threadCounts>true</threadCounts>
|
1030
|
+
<sampleCount>true</sampleCount>
|
1031
|
+
</value>
|
1032
|
+
</objProp>
|
1033
|
+
<stringProp name="filename"></stringProp>
|
1034
|
+
</ResultCollector>
|
1035
|
+
<hashTree/>
|
1036
|
+
<ResultCollector guiclass="AssertionVisualizer" testclass="ResultCollector" testname="Assertion Results" enabled="true">
|
1037
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1038
|
+
<objProp>
|
1039
|
+
<name>saveConfig</name>
|
1040
|
+
<value class="SampleSaveConfiguration">
|
1041
|
+
<time>true</time>
|
1042
|
+
<latency>true</latency>
|
1043
|
+
<timestamp>true</timestamp>
|
1044
|
+
<success>true</success>
|
1045
|
+
<label>true</label>
|
1046
|
+
<code>true</code>
|
1047
|
+
<message>false</message>
|
1048
|
+
<threadName>true</threadName>
|
1049
|
+
<dataType>false</dataType>
|
1050
|
+
<encoding>false</encoding>
|
1051
|
+
<assertions>false</assertions>
|
1052
|
+
<subresults>false</subresults>
|
1053
|
+
<responseData>false</responseData>
|
1054
|
+
<samplerData>false</samplerData>
|
1055
|
+
<xml>false</xml>
|
1056
|
+
<fieldNames>false</fieldNames>
|
1057
|
+
<responseHeaders>false</responseHeaders>
|
1058
|
+
<requestHeaders>false</requestHeaders>
|
1059
|
+
<responseDataOnError>false</responseDataOnError>
|
1060
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1061
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1062
|
+
<bytes>true</bytes>
|
1063
|
+
<threadCounts>true</threadCounts>
|
1064
|
+
<sampleCount>true</sampleCount>
|
1065
|
+
</value>
|
1066
|
+
</objProp>
|
1067
|
+
<stringProp name="filename"></stringProp>
|
1068
|
+
</ResultCollector>
|
1069
|
+
<hashTree/>
|
1070
|
+
<BeanShellListener guiclass="TestBeanGUI" testclass="BeanShellListener" testname="BeanShell Listener" enabled="true">
|
1071
|
+
<stringProp name="filename"></stringProp>
|
1072
|
+
<stringProp name="parameters"></stringProp>
|
1073
|
+
<boolProp name="resetInterpreter">false</boolProp>
|
1074
|
+
<stringProp name="script"></stringProp>
|
1075
|
+
</BeanShellListener>
|
1076
|
+
<hashTree/>
|
1077
|
+
<BSFListener guiclass="TestBeanGUI" testclass="BSFListener" testname="BSF Listener" enabled="true">
|
1078
|
+
<stringProp name="filename"></stringProp>
|
1079
|
+
<stringProp name="parameters"></stringProp>
|
1080
|
+
<stringProp name="script"></stringProp>
|
1081
|
+
<stringProp name="scriptLanguage"></stringProp>
|
1082
|
+
</BSFListener>
|
1083
|
+
<hashTree/>
|
1084
|
+
<ResultCollector guiclass="ComparisonVisualizer" testclass="ResultCollector" testname="Comparison Assertion Visualizer" enabled="true">
|
1085
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1086
|
+
<objProp>
|
1087
|
+
<name>saveConfig</name>
|
1088
|
+
<value class="SampleSaveConfiguration">
|
1089
|
+
<time>true</time>
|
1090
|
+
<latency>true</latency>
|
1091
|
+
<timestamp>true</timestamp>
|
1092
|
+
<success>true</success>
|
1093
|
+
<label>true</label>
|
1094
|
+
<code>true</code>
|
1095
|
+
<message>false</message>
|
1096
|
+
<threadName>true</threadName>
|
1097
|
+
<dataType>false</dataType>
|
1098
|
+
<encoding>false</encoding>
|
1099
|
+
<assertions>false</assertions>
|
1100
|
+
<subresults>false</subresults>
|
1101
|
+
<responseData>false</responseData>
|
1102
|
+
<samplerData>false</samplerData>
|
1103
|
+
<xml>false</xml>
|
1104
|
+
<fieldNames>false</fieldNames>
|
1105
|
+
<responseHeaders>false</responseHeaders>
|
1106
|
+
<requestHeaders>false</requestHeaders>
|
1107
|
+
<responseDataOnError>false</responseDataOnError>
|
1108
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1109
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1110
|
+
<bytes>true</bytes>
|
1111
|
+
<threadCounts>true</threadCounts>
|
1112
|
+
<sampleCount>true</sampleCount>
|
1113
|
+
</value>
|
1114
|
+
</objProp>
|
1115
|
+
<stringProp name="filename"></stringProp>
|
1116
|
+
</ResultCollector>
|
1117
|
+
<hashTree/>
|
1118
|
+
<ResultCollector guiclass="DistributionGraphVisualizer" testclass="ResultCollector" testname="Distribution Graph (alpha)" enabled="true">
|
1119
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1120
|
+
<objProp>
|
1121
|
+
<name>saveConfig</name>
|
1122
|
+
<value class="SampleSaveConfiguration">
|
1123
|
+
<time>true</time>
|
1124
|
+
<latency>true</latency>
|
1125
|
+
<timestamp>true</timestamp>
|
1126
|
+
<success>true</success>
|
1127
|
+
<label>true</label>
|
1128
|
+
<code>true</code>
|
1129
|
+
<message>false</message>
|
1130
|
+
<threadName>true</threadName>
|
1131
|
+
<dataType>false</dataType>
|
1132
|
+
<encoding>false</encoding>
|
1133
|
+
<assertions>false</assertions>
|
1134
|
+
<subresults>false</subresults>
|
1135
|
+
<responseData>false</responseData>
|
1136
|
+
<samplerData>false</samplerData>
|
1137
|
+
<xml>false</xml>
|
1138
|
+
<fieldNames>false</fieldNames>
|
1139
|
+
<responseHeaders>false</responseHeaders>
|
1140
|
+
<requestHeaders>false</requestHeaders>
|
1141
|
+
<responseDataOnError>false</responseDataOnError>
|
1142
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1143
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1144
|
+
<bytes>true</bytes>
|
1145
|
+
<threadCounts>true</threadCounts>
|
1146
|
+
<sampleCount>true</sampleCount>
|
1147
|
+
</value>
|
1148
|
+
</objProp>
|
1149
|
+
<stringProp name="filename"></stringProp>
|
1150
|
+
</ResultCollector>
|
1151
|
+
<hashTree/>
|
1152
|
+
<Summariser guiclass="SummariserGui" testclass="Summariser" testname="Generate Summary Results" enabled="true"/>
|
1153
|
+
<hashTree/>
|
1154
|
+
<ResultCollector guiclass="GraphVisualizer" testclass="ResultCollector" testname="Graph Results" enabled="true">
|
1155
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1156
|
+
<objProp>
|
1157
|
+
<name>saveConfig</name>
|
1158
|
+
<value class="SampleSaveConfiguration">
|
1159
|
+
<time>true</time>
|
1160
|
+
<latency>true</latency>
|
1161
|
+
<timestamp>true</timestamp>
|
1162
|
+
<success>true</success>
|
1163
|
+
<label>true</label>
|
1164
|
+
<code>true</code>
|
1165
|
+
<message>false</message>
|
1166
|
+
<threadName>true</threadName>
|
1167
|
+
<dataType>false</dataType>
|
1168
|
+
<encoding>false</encoding>
|
1169
|
+
<assertions>false</assertions>
|
1170
|
+
<subresults>false</subresults>
|
1171
|
+
<responseData>false</responseData>
|
1172
|
+
<samplerData>false</samplerData>
|
1173
|
+
<xml>false</xml>
|
1174
|
+
<fieldNames>false</fieldNames>
|
1175
|
+
<responseHeaders>false</responseHeaders>
|
1176
|
+
<requestHeaders>false</requestHeaders>
|
1177
|
+
<responseDataOnError>false</responseDataOnError>
|
1178
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1179
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1180
|
+
<bytes>true</bytes>
|
1181
|
+
<threadCounts>true</threadCounts>
|
1182
|
+
<sampleCount>true</sampleCount>
|
1183
|
+
</value>
|
1184
|
+
</objProp>
|
1185
|
+
<stringProp name="filename"></stringProp>
|
1186
|
+
</ResultCollector>
|
1187
|
+
<hashTree/>
|
1188
|
+
<JSR223Listener guiclass="TestBeanGUI" testclass="JSR223Listener" testname="JSR223 Listener" enabled="true">
|
1189
|
+
<stringProp name="cacheKey"></stringProp>
|
1190
|
+
<stringProp name="filename"></stringProp>
|
1191
|
+
<stringProp name="parameters"></stringProp>
|
1192
|
+
<stringProp name="script"></stringProp>
|
1193
|
+
<stringProp name="scriptLanguage"></stringProp>
|
1194
|
+
</JSR223Listener>
|
1195
|
+
<hashTree/>
|
1196
|
+
<MailerResultCollector guiclass="MailerVisualizer" testclass="MailerResultCollector" testname="Mailer Visualizer" enabled="true">
|
1197
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1198
|
+
<objProp>
|
1199
|
+
<name>saveConfig</name>
|
1200
|
+
<value class="SampleSaveConfiguration">
|
1201
|
+
<time>true</time>
|
1202
|
+
<latency>true</latency>
|
1203
|
+
<timestamp>true</timestamp>
|
1204
|
+
<success>true</success>
|
1205
|
+
<label>true</label>
|
1206
|
+
<code>true</code>
|
1207
|
+
<message>false</message>
|
1208
|
+
<threadName>true</threadName>
|
1209
|
+
<dataType>false</dataType>
|
1210
|
+
<encoding>false</encoding>
|
1211
|
+
<assertions>false</assertions>
|
1212
|
+
<subresults>false</subresults>
|
1213
|
+
<responseData>false</responseData>
|
1214
|
+
<samplerData>false</samplerData>
|
1215
|
+
<xml>false</xml>
|
1216
|
+
<fieldNames>false</fieldNames>
|
1217
|
+
<responseHeaders>false</responseHeaders>
|
1218
|
+
<requestHeaders>false</requestHeaders>
|
1219
|
+
<responseDataOnError>false</responseDataOnError>
|
1220
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1221
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1222
|
+
<bytes>true</bytes>
|
1223
|
+
<threadCounts>true</threadCounts>
|
1224
|
+
<sampleCount>true</sampleCount>
|
1225
|
+
</value>
|
1226
|
+
</objProp>
|
1227
|
+
<elementProp name="MailerResultCollector.mailer_model" elementType="MailerModel">
|
1228
|
+
<stringProp name="MailerModel.successLimit">2</stringProp>
|
1229
|
+
<stringProp name="MailerModel.failureLimit">2</stringProp>
|
1230
|
+
<stringProp name="MailerModel.failureSubject"></stringProp>
|
1231
|
+
<stringProp name="MailerModel.fromAddress"></stringProp>
|
1232
|
+
<stringProp name="MailerModel.smtpHost"></stringProp>
|
1233
|
+
<stringProp name="MailerModel.successSubject"></stringProp>
|
1234
|
+
<stringProp name="MailerModel.addressie"></stringProp>
|
1235
|
+
</elementProp>
|
1236
|
+
<stringProp name="filename"></stringProp>
|
1237
|
+
</MailerResultCollector>
|
1238
|
+
<hashTree/>
|
1239
|
+
<ResultCollector guiclass="MonitorHealthVisualizer" testclass="ResultCollector" testname="Monitor Results" enabled="true">
|
1240
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1241
|
+
<objProp>
|
1242
|
+
<name>saveConfig</name>
|
1243
|
+
<value class="SampleSaveConfiguration">
|
1244
|
+
<time>true</time>
|
1245
|
+
<latency>true</latency>
|
1246
|
+
<timestamp>true</timestamp>
|
1247
|
+
<success>true</success>
|
1248
|
+
<label>true</label>
|
1249
|
+
<code>true</code>
|
1250
|
+
<message>false</message>
|
1251
|
+
<threadName>true</threadName>
|
1252
|
+
<dataType>false</dataType>
|
1253
|
+
<encoding>false</encoding>
|
1254
|
+
<assertions>false</assertions>
|
1255
|
+
<subresults>false</subresults>
|
1256
|
+
<responseData>false</responseData>
|
1257
|
+
<samplerData>false</samplerData>
|
1258
|
+
<xml>false</xml>
|
1259
|
+
<fieldNames>false</fieldNames>
|
1260
|
+
<responseHeaders>false</responseHeaders>
|
1261
|
+
<requestHeaders>false</requestHeaders>
|
1262
|
+
<responseDataOnError>false</responseDataOnError>
|
1263
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1264
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1265
|
+
<bytes>true</bytes>
|
1266
|
+
<threadCounts>true</threadCounts>
|
1267
|
+
<sampleCount>true</sampleCount>
|
1268
|
+
</value>
|
1269
|
+
</objProp>
|
1270
|
+
<stringProp name="filename"></stringProp>
|
1271
|
+
</ResultCollector>
|
1272
|
+
<hashTree/>
|
1273
|
+
<ResultCollector guiclass="RespTimeGraphVisualizer" testclass="ResultCollector" testname="Response Time Graph" enabled="true">
|
1274
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1275
|
+
<objProp>
|
1276
|
+
<name>saveConfig</name>
|
1277
|
+
<value class="SampleSaveConfiguration">
|
1278
|
+
<time>true</time>
|
1279
|
+
<latency>true</latency>
|
1280
|
+
<timestamp>true</timestamp>
|
1281
|
+
<success>true</success>
|
1282
|
+
<label>true</label>
|
1283
|
+
<code>true</code>
|
1284
|
+
<message>false</message>
|
1285
|
+
<threadName>true</threadName>
|
1286
|
+
<dataType>false</dataType>
|
1287
|
+
<encoding>false</encoding>
|
1288
|
+
<assertions>false</assertions>
|
1289
|
+
<subresults>false</subresults>
|
1290
|
+
<responseData>false</responseData>
|
1291
|
+
<samplerData>false</samplerData>
|
1292
|
+
<xml>false</xml>
|
1293
|
+
<fieldNames>false</fieldNames>
|
1294
|
+
<responseHeaders>false</responseHeaders>
|
1295
|
+
<requestHeaders>false</requestHeaders>
|
1296
|
+
<responseDataOnError>false</responseDataOnError>
|
1297
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1298
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1299
|
+
<bytes>true</bytes>
|
1300
|
+
<threadCounts>true</threadCounts>
|
1301
|
+
<sampleCount>true</sampleCount>
|
1302
|
+
</value>
|
1303
|
+
</objProp>
|
1304
|
+
<stringProp name="filename"></stringProp>
|
1305
|
+
</ResultCollector>
|
1306
|
+
<hashTree/>
|
1307
|
+
<ResultSaver guiclass="ResultSaverGui" testclass="ResultSaver" testname="Save Responses to a file" enabled="true">
|
1308
|
+
<stringProp name="FileSaver.filename"></stringProp>
|
1309
|
+
<boolProp name="FileSaver.errorsonly">false</boolProp>
|
1310
|
+
<boolProp name="FileSaver.skipautonumber">false</boolProp>
|
1311
|
+
<boolProp name="FileSaver.skipsuffix">false</boolProp>
|
1312
|
+
<boolProp name="FileSaver.successonly">false</boolProp>
|
1313
|
+
</ResultSaver>
|
1314
|
+
<hashTree/>
|
1315
|
+
<ResultCollector guiclass="SimpleDataWriter" testclass="ResultCollector" testname="Simple Data Writer" enabled="true">
|
1316
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1317
|
+
<objProp>
|
1318
|
+
<name>saveConfig</name>
|
1319
|
+
<value class="SampleSaveConfiguration">
|
1320
|
+
<time>true</time>
|
1321
|
+
<latency>true</latency>
|
1322
|
+
<timestamp>true</timestamp>
|
1323
|
+
<success>true</success>
|
1324
|
+
<label>true</label>
|
1325
|
+
<code>true</code>
|
1326
|
+
<message>true</message>
|
1327
|
+
<threadName>true</threadName>
|
1328
|
+
<dataType>false</dataType>
|
1329
|
+
<encoding>false</encoding>
|
1330
|
+
<assertions>false</assertions>
|
1331
|
+
<subresults>false</subresults>
|
1332
|
+
<responseData>false</responseData>
|
1333
|
+
<samplerData>false</samplerData>
|
1334
|
+
<xml>true</xml>
|
1335
|
+
<fieldNames>false</fieldNames>
|
1336
|
+
<responseHeaders>true</responseHeaders>
|
1337
|
+
<requestHeaders>false</requestHeaders>
|
1338
|
+
<responseDataOnError>false</responseDataOnError>
|
1339
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1340
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1341
|
+
<bytes>true</bytes>
|
1342
|
+
<threadCounts>true</threadCounts>
|
1343
|
+
<sampleCount>true</sampleCount>
|
1344
|
+
</value>
|
1345
|
+
</objProp>
|
1346
|
+
<stringProp name="filename"></stringProp>
|
1347
|
+
</ResultCollector>
|
1348
|
+
<hashTree/>
|
1349
|
+
<ResultCollector guiclass="SplineVisualizer" testclass="ResultCollector" testname="Spline Visualizer" enabled="true">
|
1350
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1351
|
+
<objProp>
|
1352
|
+
<name>saveConfig</name>
|
1353
|
+
<value class="SampleSaveConfiguration">
|
1354
|
+
<time>true</time>
|
1355
|
+
<latency>true</latency>
|
1356
|
+
<timestamp>true</timestamp>
|
1357
|
+
<success>true</success>
|
1358
|
+
<label>true</label>
|
1359
|
+
<code>true</code>
|
1360
|
+
<message>false</message>
|
1361
|
+
<threadName>true</threadName>
|
1362
|
+
<dataType>false</dataType>
|
1363
|
+
<encoding>false</encoding>
|
1364
|
+
<assertions>false</assertions>
|
1365
|
+
<subresults>false</subresults>
|
1366
|
+
<responseData>false</responseData>
|
1367
|
+
<samplerData>false</samplerData>
|
1368
|
+
<xml>false</xml>
|
1369
|
+
<fieldNames>false</fieldNames>
|
1370
|
+
<responseHeaders>false</responseHeaders>
|
1371
|
+
<requestHeaders>false</requestHeaders>
|
1372
|
+
<responseDataOnError>false</responseDataOnError>
|
1373
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1374
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1375
|
+
<bytes>true</bytes>
|
1376
|
+
<threadCounts>true</threadCounts>
|
1377
|
+
<sampleCount>true</sampleCount>
|
1378
|
+
</value>
|
1379
|
+
</objProp>
|
1380
|
+
<stringProp name="filename"></stringProp>
|
1381
|
+
</ResultCollector>
|
1382
|
+
<hashTree/>
|
1383
|
+
<ResultCollector guiclass="SummaryReport" testclass="ResultCollector" testname="Summary Report" enabled="true">
|
1384
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1385
|
+
<objProp>
|
1386
|
+
<name>saveConfig</name>
|
1387
|
+
<value class="SampleSaveConfiguration">
|
1388
|
+
<time>true</time>
|
1389
|
+
<latency>true</latency>
|
1390
|
+
<timestamp>true</timestamp>
|
1391
|
+
<success>true</success>
|
1392
|
+
<label>true</label>
|
1393
|
+
<code>true</code>
|
1394
|
+
<message>false</message>
|
1395
|
+
<threadName>true</threadName>
|
1396
|
+
<dataType>false</dataType>
|
1397
|
+
<encoding>false</encoding>
|
1398
|
+
<assertions>false</assertions>
|
1399
|
+
<subresults>false</subresults>
|
1400
|
+
<responseData>false</responseData>
|
1401
|
+
<samplerData>false</samplerData>
|
1402
|
+
<xml>false</xml>
|
1403
|
+
<fieldNames>false</fieldNames>
|
1404
|
+
<responseHeaders>false</responseHeaders>
|
1405
|
+
<requestHeaders>false</requestHeaders>
|
1406
|
+
<responseDataOnError>false</responseDataOnError>
|
1407
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1408
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1409
|
+
<bytes>true</bytes>
|
1410
|
+
<threadCounts>true</threadCounts>
|
1411
|
+
<sampleCount>true</sampleCount>
|
1412
|
+
</value>
|
1413
|
+
</objProp>
|
1414
|
+
<stringProp name="filename"></stringProp>
|
1415
|
+
</ResultCollector>
|
1416
|
+
<hashTree/>
|
1417
|
+
<ResultCollector guiclass="TableVisualizer" testclass="ResultCollector" testname="View Results in Table" enabled="true">
|
1418
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1419
|
+
<objProp>
|
1420
|
+
<name>saveConfig</name>
|
1421
|
+
<value class="SampleSaveConfiguration">
|
1422
|
+
<time>true</time>
|
1423
|
+
<latency>true</latency>
|
1424
|
+
<timestamp>true</timestamp>
|
1425
|
+
<success>true</success>
|
1426
|
+
<label>true</label>
|
1427
|
+
<code>true</code>
|
1428
|
+
<message>false</message>
|
1429
|
+
<threadName>true</threadName>
|
1430
|
+
<dataType>false</dataType>
|
1431
|
+
<encoding>false</encoding>
|
1432
|
+
<assertions>false</assertions>
|
1433
|
+
<subresults>false</subresults>
|
1434
|
+
<responseData>false</responseData>
|
1435
|
+
<samplerData>false</samplerData>
|
1436
|
+
<xml>false</xml>
|
1437
|
+
<fieldNames>false</fieldNames>
|
1438
|
+
<responseHeaders>false</responseHeaders>
|
1439
|
+
<requestHeaders>false</requestHeaders>
|
1440
|
+
<responseDataOnError>false</responseDataOnError>
|
1441
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1442
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1443
|
+
<bytes>true</bytes>
|
1444
|
+
<threadCounts>true</threadCounts>
|
1445
|
+
<sampleCount>true</sampleCount>
|
1446
|
+
</value>
|
1447
|
+
</objProp>
|
1448
|
+
<stringProp name="filename"></stringProp>
|
1449
|
+
</ResultCollector>
|
1450
|
+
<hashTree/>
|
1451
|
+
<ResultCollector guiclass="ViewResultsFullVisualizer" testclass="ResultCollector" testname="View Results Tree" enabled="true">
|
1452
|
+
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
1453
|
+
<objProp>
|
1454
|
+
<name>saveConfig</name>
|
1455
|
+
<value class="SampleSaveConfiguration">
|
1456
|
+
<time>true</time>
|
1457
|
+
<latency>true</latency>
|
1458
|
+
<timestamp>true</timestamp>
|
1459
|
+
<success>true</success>
|
1460
|
+
<label>true</label>
|
1461
|
+
<code>true</code>
|
1462
|
+
<message>false</message>
|
1463
|
+
<threadName>true</threadName>
|
1464
|
+
<dataType>false</dataType>
|
1465
|
+
<encoding>false</encoding>
|
1466
|
+
<assertions>false</assertions>
|
1467
|
+
<subresults>false</subresults>
|
1468
|
+
<responseData>false</responseData>
|
1469
|
+
<samplerData>false</samplerData>
|
1470
|
+
<xml>false</xml>
|
1471
|
+
<fieldNames>false</fieldNames>
|
1472
|
+
<responseHeaders>false</responseHeaders>
|
1473
|
+
<requestHeaders>false</requestHeaders>
|
1474
|
+
<responseDataOnError>false</responseDataOnError>
|
1475
|
+
<saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
|
1476
|
+
<assertionsResultsToSave>0</assertionsResultsToSave>
|
1477
|
+
<bytes>true</bytes>
|
1478
|
+
<threadCounts>true</threadCounts>
|
1479
|
+
<sampleCount>true</sampleCount>
|
1480
|
+
</value>
|
1481
|
+
</objProp>
|
1482
|
+
<stringProp name="filename"></stringProp>
|
1483
|
+
</ResultCollector>
|
1484
|
+
<hashTree/>
|
1485
|
+
</hashTree>
|
1486
|
+
</hashTree>
|
1487
|
+
</hashTree>
|
1488
|
+
</jmeterTestPlan>
|