Vladimir Sitnikov
Vladimir Sitnikov
Currently, JDBC Sampler uses `rs.getObject(int).toString()`, however, we should use `rs.getString(...)` so the JDBC driver makes the proper conversions. I'm not sure if `.getString(...)` alone is enough to fetch CLOB value...
This looks like a valid bug. @epoitier , do you think you could add a test case as well?
Check out WireMock-based tests: https://github.com/search?q=repo%3Aapache%2Fjmeter%20wiremock&type=code For instance: * https://github.com/apache/jmeter/blob/09c3f810dda7efaf1510ac062454d978d90a0741/src/protocol/http/src/test/kotlin/org/apache/jmeter/protocol/http/sampler/HttpSamplerTest.kt#L81 * https://github.com/apache/jmeter/blob/09c3f810dda7efaf1510ac062454d978d90a0741/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/sampler/ParallelResourcesAndIpSource.java#L61 * https://github.com/apache/jmeter/blob/09c3f810dda7efaf1510ac062454d978d90a0741/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/sampler/TestDecompression.java#L87
I would suggest trying with the latest JMeter 5.6.2 and/or ask bzm developers to clarify the reason for NPE. ParallelController is not a part of JMeter yet.
The value gets cached in https://github.com/apache/jmeter/blob/c94db9741f0547235f9a67b1ece40389add6b742/src/core/src/main/java/org/apache/jmeter/testelement/TestPlan.java#L49 Let us replace the cached value with access to `isFunctionalMode`. For instance, we could add `TestPlan` to `JmeterContext`, and use `JMeterContextService.getContext().getTestPlan().isFunctionalMode()` in the current...
Unfortunately, executing concurrent testplans within a single Java process is not supported yet. Pull requests are welcome. `FileServer` is not the only issue, and things like `JMeterProperties` would likely collide...
@fit2-zhao , we probably need something like "per-execution scope", "per-thread group scope" stores: https://github.com/apache/jmeter/issues/6194
>When they wait too long they will kill the mobile app and re longin again. >We cannot limit them. It's not real. You are right limiting threads is not realistic...
>Actually we comparing with bzm - Free Form Arrival Thread Group but I think OMTG is easier to config. Glad to hear that. Have you tried wrapping the test with...
Non parameterized strings do not process `\` as a special character, while parameterized strings uses a special character to escape `$`. For instance, in case the user wants to send...