Re: JUnit Setup Issues

2018-09-07 Thread Kiran Badi
Can you wrap browser.driver.quit in try catch block and try.
Also check if driver.quit api returns npe on success full closure
Is this related to selenium web driver 


Sent from Yahoo Mail for iPad


On Friday, September 7, 2018, 11:40 AM, MaxwellFalcon  wrote:

Here is the code:

@After 
public void testCleanUp(){ 
    browser.driver.quit(); 
} 


I guess it is worth noting that these tests are running perfectly fine in my
IDE (Intellij).





--
Sent from: http://www.jmeter-archive.org/JMeter-User-f512775.html

-
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org






Re: JUnit Setup Issues

2018-09-07 Thread Deepak Shetty
Hi
Nothing specific to JMeter
Within your test ,if you already have some form of logging use that ,
otherwise use your favorite (log4j, java logging ,or good old
system.out.println). Add statements around where you are creating the
browser - driver etc and if you have any catch (exception){ //do nothing}
then delete those , when your test method begins / ends. When you run this
via JMeter , it will print the logs wherever the logging frameowrk is
printing it (e.g. if you are using log4j , wherever the log4j configuration
says the log should go or if you are using System.out then ensure you run
Jmeter with a console and the values will get printed there)

If you want the logs to come in JMeter log then I believe it is log4j2 with
the config file in bin (please verify in doc) - if you use this as your log
framework within the test then values should come in jmeter.log

I dont know the setting in IntelliJ but you can usually see the entire java
command that is being run in the IDE which can tell you things like
classpath /additional VM or program parameters that you may be missing


regards
deepak


On Fri, Sep 7, 2018 at 10:41 AM MaxwellFalcon  wrote:

> It feels like you are on the right track here.  Can you walk me through
> how I
> can go about determining what resource/dependency is missing?  How can I
> enable debug like you are talking about?  Sorry I am very new to JMeter.
>
>
>
> --
> Sent from: http://www.jmeter-archive.org/JMeter-User-f512775.html
>
> -
> To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
> For additional commands, e-mail: user-h...@jmeter.apache.org
>
>


Re: JUnit Setup Issues

2018-09-07 Thread MaxwellFalcon
It feels like you are on the right track here.  Can you walk me through how I
can go about determining what resource/dependency is missing?  How can I
enable debug like you are talking about?  Sorry I am very new to JMeter.



--
Sent from: http://www.jmeter-archive.org/JMeter-User-f512775.html

-
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org



Re: JUnit Setup Issues

2018-09-07 Thread Deepak Shetty
Typically that indicates a setting or resource that is being found when you
run via IntelliJ and you havent made the same change for the JVM of JMeter
(e.g. are classpath settings or resources like files or command line
parameters that are read by the code)
You probably need to enable debug for your test or write some log
statements to tell you whats missing if you cant make out the issue via
inspection - If browser or driver is null , i am guessing your test
actually didnt run either and there should be a problem with initialization
of your test where these objects are being created.



On Fri, Sep 7, 2018 at 8:40 AM MaxwellFalcon  wrote:

> Here is the code:
>
> @After
> public void testCleanUp(){
> browser.driver.quit();
> }
>
>
> I guess it is worth noting that these tests are running perfectly fine in
> my
> IDE (Intellij).
>
>
>
>
>
> --
> Sent from: http://www.jmeter-archive.org/JMeter-User-f512775.html
>
> -
> To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
> For additional commands, e-mail: user-h...@jmeter.apache.org
>
>


Re: JUnit Setup Issues

2018-09-07 Thread Felix Schumacher



Am 7. September 2018 17:40:31 MESZ schrieb MaxwellFalcon :
>Here is the code:
>
>@After 
>public void testCleanUp(){ 
>browser.driver.quit(); 

So either browser or driver is null. You could try to log /print those values 
to see, which one is null. 

Have you checked them at the point where you initialize them? 

Felix 

>} 
>
>
>I guess it is worth noting that these tests are running perfectly fine
>in my
>IDE (Intellij).
>
>
>
>
>
>--
>Sent from: http://www.jmeter-archive.org/JMeter-User-f512775.html
>
>-
>To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
>For additional commands, e-mail: user-h...@jmeter.apache.org

-
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org



Re: JUnit Setup Issues

2018-09-07 Thread MaxwellFalcon
Here is the code:

@After 
public void testCleanUp(){ 
browser.driver.quit(); 
} 


I guess it is worth noting that these tests are running perfectly fine in my
IDE (Intellij).





--
Sent from: http://www.jmeter-archive.org/JMeter-User-f512775.html

-
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org



Re: JUnit Setup Issues

2018-09-07 Thread Felix Schumacher



Am 7. September 2018 15:59:34 MESZ schrieb Maxwell Falcon :
>Here are the new screenshots: https://imgur.com/a/vaR12yn
>
>Ill post the text that was in the response data field that got cut off:
>
>Error --
>loginLogout(org.apache.jmeter.protocol.java.sampler.JUnitSampler$AnnotatedTestCase):
>null
>Trace -- java.lang.NullPointerException
>   at core.BaseCommunityTest.testCleanUp(BaseCommunityTest.java:48)

What is your code at that line 48 looking like? 

Felix 

>   at
>java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
>Method)
>   at
>java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at
>java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.base/java.lang.reflect.Method.invoke(Method.java:564)
>   at
>org.apache.jmeter.protocol.java.sampler.JUnitSampler.sample(JUnitSampler.java:399)
>   at
>org.apache.jmeter.threads.JMeterThread.executeSamplePackage(JMeterThread.java:490)
>   at
>org.apache.jmeter.threads.JMeterThread.processSampler(JMeterThread.java:416)
>   at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:250)
>   at java.base/java.lang.Thread.run(Thread.java:844)
>
>
>Again than you everyone for all of your help!
>
>
>
>On 9/6/18, 6:56 PM, "Deepak Shetty"  wrote:
>
>Hi
>can you enable  Append Assertion errors and Append Runtime errors in
>the
>sampler , and resend the screenshot ? Also if you havent please add
>distinct values for failure code and error codes so system would be
>able to
>differentiate between your test ran but something you asserted failed
>and
>there was a runtime exception or something while running the test.
>
>In your screen , The error count is 1 , it does look like it attempted
>to
>run and got some error.
>
>
>regards
>deepak
>
>On Thu, Sep 6, 2018 at 2:01 PM Maxwell Falcon 
>wrote:
>
>
>

-
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org



Re: JUnit Setup Issues

2018-09-07 Thread Maxwell Falcon
Here are the new screenshots: https://imgur.com/a/vaR12yn

Ill post the text that was in the response data field that got cut off:

Error -- 
loginLogout(org.apache.jmeter.protocol.java.sampler.JUnitSampler$AnnotatedTestCase):
 null
Trace -- java.lang.NullPointerException
at core.BaseCommunityTest.testCleanUp(BaseCommunityTest.java:48)
at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at 
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at 
org.apache.jmeter.protocol.java.sampler.JUnitSampler.sample(JUnitSampler.java:399)
at 
org.apache.jmeter.threads.JMeterThread.executeSamplePackage(JMeterThread.java:490)
at 
org.apache.jmeter.threads.JMeterThread.processSampler(JMeterThread.java:416)
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:250)
at java.base/java.lang.Thread.run(Thread.java:844)


Again than you everyone for all of your help!



On 9/6/18, 6:56 PM, "Deepak Shetty"  wrote:

Hi
can you enable  Append Assertion errors and Append Runtime errors in the
sampler , and resend the screenshot ? Also if you havent please add
distinct values for failure code and error codes so system would be able to
differentiate between your test ran but something you asserted failed and
there was a runtime exception or something while running the test.

In your screen , The error count is 1 , it does look like it attempted to
run and got some error.


regards
deepak

On Thu, Sep 6, 2018 at 2:01 PM Maxwell Falcon  wrote:





Re: JUnit Setup Issues

2018-09-06 Thread Deepak Shetty
Hi
can you enable  Append Assertion errors and Append Runtime errors in the
sampler , and resend the screenshot ? Also if you havent please add
distinct values for failure code and error codes so system would be able to
differentiate between your test ran but something you asserted failed and
there was a runtime exception or something while running the test.

In your screen , The error count is 1 , it does look like it attempted to
run and got some error.


regards
deepak

On Thu, Sep 6, 2018 at 2:01 PM Maxwell Falcon  wrote:

> Is it acceptable to post images?
>
> https://imgur.com/a/Z3vTsd4
>
> On 9/6/18, 4:57 PM, "Philippe Mouawad" 
> wrote:
>
> What does the node show in the 3 tabs of View Result Tree when you
> click on
> it ?
>
> On Thu, Sep 6, 2018 at 10:54 PM Maxwell Falcon 
> wrote:
>
> > As far as I can tell the test is not actually being executed.  Also
> when I
> > look at the results tree listener the Junit request is highlighted
> in red
> > with a red x icon next to it.
> >
> > On 9/6/18, 4:50 PM, "Felix Schumacher" <
> felix.schumac...@internetallee.de>
> > wrote:
> >
> >
> >
> > Am 06.09.2018 um 22:46 schrieb Maxwell Falcon:
> > > However it looks like when I leave that field blank the log
> > changes.  Maybe leaving it blank fixed my original issue, but now I
> have a
> > new issue?
> > Do you think you have new issue? Why? All those message are
> INFO, so
> > no
> > problems are reported there.
> >
> > Regards,
> >   Felix
> > >
> > > 2018-09-06 16:44:20,103 INFO o.a.j.u.JMeterUtils: Setting
> Locale to
> > en_US
> > > 2018-09-06 16:44:20,185 INFO o.a.j.JMeter: Loading user
> properties
> > from: user.properties
> > > 2018-09-06 16:44:20,187 INFO o.a.j.JMeter: Loading system
> properties
> > from: system.properties
> > > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Copyright (c)
> 1998-2018
> > The Apache Software Foundation
> > > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Version 4.0 r1823414
> > > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.version=10.0.2
> > > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.vm.name=Java
> > HotSpot(TM) 64-Bit Server VM
> > > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.name=Mac OS X
> > > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.arch=x86_64
> > > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.version=10.13.6
> > > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: file.encoding=UTF-8
> > > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Max memory
>  =2147483648
> > > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Available
> Processors =4
> > > 2018-09-06 16:44:20,215 INFO o.a.j.JMeter: Default
> Locale=English
> > (United States)
> > > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeter
> Locale=English
> > (United States)
> > > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter:
> JMeterHome=/Source/JMeter
> > > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: user.dir
> > =/Source/JMeter/bin
> > > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: PWD
> >  =/Source/JMeter/bin
> > > 2018-09-06 16:44:20,218 INFO o.a.j.JMeter: IP: 10.246.64.68
> Name:
> > maxwellfalcon.local FullName: 10.246.64.68
> > > 2018-09-06 16:44:22,489 INFO o.a.j.g.a.LookAndFeelCommand:
> > Installing Darcula LAF
> > > 2018-09-06 16:44:22,511 INFO o.a.j.g.a.LookAndFeelCommand:
> Using
> > look and feel: com.bulenkov.darcula.DarculaLaf [Darcula]
> > > 2018-09-06 16:44:22,511 INFO o.a.j.JMeter: Setting LAF to:
> > com.bulenkov.darcula.DarculaLaf
> > > 2018-09-06 16:44:22,674 INFO o.a.j.JMeter: Loaded icon
> properties
> > from org/apache/jmeter/images/icon.properties
> > > 2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note:
> > Function class names must contain the string: '.functions.'
> > > 2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note:
> > Function class names must not contain the string: '.gui.'
> > > 2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase:
> Parser for
> > text/html is
> org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > > 2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase:
> Parser for
> > application/xhtml+xml is
> > org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > > 2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase:
> Parser for
> > application/xml is
> > org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > > 2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase:
> Parser for
> > text/xml is
> org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > > 2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase:
> Parser for
> > text/vnd.wap.wml is

Re: JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
Is it acceptable to post images?

https://imgur.com/a/Z3vTsd4

On 9/6/18, 4:57 PM, "Philippe Mouawad"  wrote:

What does the node show in the 3 tabs of View Result Tree when you click on
it ?

On Thu, Sep 6, 2018 at 10:54 PM Maxwell Falcon  wrote:

> As far as I can tell the test is not actually being executed.  Also when I
> look at the results tree listener the Junit request is highlighted in red
> with a red x icon next to it.
>
> On 9/6/18, 4:50 PM, "Felix Schumacher" 

> wrote:
>
>
>
> Am 06.09.2018 um 22:46 schrieb Maxwell Falcon:
> > However it looks like when I leave that field blank the log
> changes.  Maybe leaving it blank fixed my original issue, but now I have a
> new issue?
> Do you think you have new issue? Why? All those message are INFO, so
> no
> problems are reported there.
>
> Regards,
>   Felix
> >
> > 2018-09-06 16:44:20,103 INFO o.a.j.u.JMeterUtils: Setting Locale to
> en_US
> > 2018-09-06 16:44:20,185 INFO o.a.j.JMeter: Loading user properties
> from: user.properties
> > 2018-09-06 16:44:20,187 INFO o.a.j.JMeter: Loading system properties
> from: system.properties
> > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Copyright (c) 1998-2018
> The Apache Software Foundation
> > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Version 4.0 r1823414
> > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.version=10.0.2
> > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.vm.name=Java
> HotSpot(TM) 64-Bit Server VM
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.name=Mac OS X
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.arch=x86_64
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.version=10.13.6
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: file.encoding=UTF-8
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Max memory 
=2147483648
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Available Processors =4
> > 2018-09-06 16:44:20,215 INFO o.a.j.JMeter: Default Locale=English
> (United States)
> > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeter  Locale=English
> (United States)
> > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeterHome=/Source/JMeter
> > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: user.dir
> =/Source/JMeter/bin
> > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: PWD
>  =/Source/JMeter/bin
> > 2018-09-06 16:44:20,218 INFO o.a.j.JMeter: IP: 10.246.64.68 Name:
> maxwellfalcon.local FullName: 10.246.64.68
> > 2018-09-06 16:44:22,489 INFO o.a.j.g.a.LookAndFeelCommand:
> Installing Darcula LAF
> > 2018-09-06 16:44:22,511 INFO o.a.j.g.a.LookAndFeelCommand: Using
> look and feel: com.bulenkov.darcula.DarculaLaf [Darcula]
> > 2018-09-06 16:44:22,511 INFO o.a.j.JMeter: Setting LAF to:
> com.bulenkov.darcula.DarculaLaf
> > 2018-09-06 16:44:22,674 INFO o.a.j.JMeter: Loaded icon properties
> from org/apache/jmeter/images/icon.properties
> > 2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note:
> Function class names must contain the string: '.functions.'
> > 2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note:
> Function class names must not contain the string: '.gui.'
> > 2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> text/html is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > 2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> application/xhtml+xml is
> org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > 2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> application/xml is
> org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > 2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> text/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > 2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> text/vnd.wap.wml is 
org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
> > 2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> text/css is org.apache.jmeter.protocol.http.parser.CssParser
> > 2018-09-06 16:44:27,575 INFO o.a.j.e.KeyToolUtils: keytool found at
> 'keytool'
> > 2018-09-06 16:44:27,576 INFO o.a.j.p.h.p.ProxyControl: HTTP(S) Test
> Script Recorder SSL Proxy will use keys that support embedded 3rd party
> resources in file /Source/JMeter/bin/proxyserver.jks
> > 2018-09-06 16:44:30,814 INFO o.a.j.s.FileServer: Default
> base='/Source/JMeter/bin'
> > 2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: Note: Sample
> TimeStamps are START times
> > 2018-09-06 16:44:31,368 INFO 

Re: JUnit Setup Issues

2018-09-06 Thread Philippe Mouawad
What does the node show in the 3 tabs of View Result Tree when you click on
it ?

On Thu, Sep 6, 2018 at 10:54 PM Maxwell Falcon  wrote:

> As far as I can tell the test is not actually being executed.  Also when I
> look at the results tree listener the Junit request is highlighted in red
> with a red x icon next to it.
>
> On 9/6/18, 4:50 PM, "Felix Schumacher" 
> wrote:
>
>
>
> Am 06.09.2018 um 22:46 schrieb Maxwell Falcon:
> > However it looks like when I leave that field blank the log
> changes.  Maybe leaving it blank fixed my original issue, but now I have a
> new issue?
> Do you think you have new issue? Why? All those message are INFO, so
> no
> problems are reported there.
>
> Regards,
>   Felix
> >
> > 2018-09-06 16:44:20,103 INFO o.a.j.u.JMeterUtils: Setting Locale to
> en_US
> > 2018-09-06 16:44:20,185 INFO o.a.j.JMeter: Loading user properties
> from: user.properties
> > 2018-09-06 16:44:20,187 INFO o.a.j.JMeter: Loading system properties
> from: system.properties
> > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Copyright (c) 1998-2018
> The Apache Software Foundation
> > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Version 4.0 r1823414
> > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.version=10.0.2
> > 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.vm.name=Java
> HotSpot(TM) 64-Bit Server VM
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.name=Mac OS X
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.arch=x86_64
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.version=10.13.6
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: file.encoding=UTF-8
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Max memory =2147483648
> > 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Available Processors =4
> > 2018-09-06 16:44:20,215 INFO o.a.j.JMeter: Default Locale=English
> (United States)
> > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeter  Locale=English
> (United States)
> > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeterHome=/Source/JMeter
> > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: user.dir
> =/Source/JMeter/bin
> > 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: PWD
>  =/Source/JMeter/bin
> > 2018-09-06 16:44:20,218 INFO o.a.j.JMeter: IP: 10.246.64.68 Name:
> maxwellfalcon.local FullName: 10.246.64.68
> > 2018-09-06 16:44:22,489 INFO o.a.j.g.a.LookAndFeelCommand:
> Installing Darcula LAF
> > 2018-09-06 16:44:22,511 INFO o.a.j.g.a.LookAndFeelCommand: Using
> look and feel: com.bulenkov.darcula.DarculaLaf [Darcula]
> > 2018-09-06 16:44:22,511 INFO o.a.j.JMeter: Setting LAF to:
> com.bulenkov.darcula.DarculaLaf
> > 2018-09-06 16:44:22,674 INFO o.a.j.JMeter: Loaded icon properties
> from org/apache/jmeter/images/icon.properties
> > 2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note:
> Function class names must contain the string: '.functions.'
> > 2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note:
> Function class names must not contain the string: '.gui.'
> > 2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> text/html is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > 2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> application/xhtml+xml is
> org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > 2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> application/xml is
> org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > 2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> text/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> > 2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> text/vnd.wap.wml is org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
> > 2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for
> text/css is org.apache.jmeter.protocol.http.parser.CssParser
> > 2018-09-06 16:44:27,575 INFO o.a.j.e.KeyToolUtils: keytool found at
> 'keytool'
> > 2018-09-06 16:44:27,576 INFO o.a.j.p.h.p.ProxyControl: HTTP(S) Test
> Script Recorder SSL Proxy will use keys that support embedded 3rd party
> resources in file /Source/JMeter/bin/proxyserver.jks
> > 2018-09-06 16:44:30,814 INFO o.a.j.s.FileServer: Default
> base='/Source/JMeter/bin'
> > 2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: Note: Sample
> TimeStamps are START times
> > 2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult:
> sampleresult.default.encoding is set to ISO-8859-1
> > 2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult:
> sampleresult.useNanoTime=true
> > 2018-09-06 16:44:31,369 INFO o.a.j.s.SampleResult:
> sampleresult.nanoThreadSleep=5000
> > 2018-09-06 16:45:14,984 INFO o.a.j.e.StandardJMeterEngine: Running
> the test!
> > 2018-09-06 16:45:14,985 INFO o.a.j.s.SampleEvent: List of
> sample_variables: []
> > 2018-09-06 16:45:14,985 INFO 

Re: JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
As far as I can tell the test is not actually being executed.  Also when I look 
at the results tree listener the Junit request is highlighted in red with a red 
x icon next to it.  

On 9/6/18, 4:50 PM, "Felix Schumacher"  
wrote:



Am 06.09.2018 um 22:46 schrieb Maxwell Falcon:
> However it looks like when I leave that field blank the log changes.  
Maybe leaving it blank fixed my original issue, but now I have a new issue?
Do you think you have new issue? Why? All those message are INFO, so no 
problems are reported there.

Regards,
  Felix
>
> 2018-09-06 16:44:20,103 INFO o.a.j.u.JMeterUtils: Setting Locale to en_US
> 2018-09-06 16:44:20,185 INFO o.a.j.JMeter: Loading user properties from: 
user.properties
> 2018-09-06 16:44:20,187 INFO o.a.j.JMeter: Loading system properties 
from: system.properties
> 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Copyright (c) 1998-2018 The 
Apache Software Foundation
> 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Version 4.0 r1823414
> 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.version=10.0.2
> 2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.vm.name=Java HotSpot(TM) 
64-Bit Server VM
> 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.name=Mac OS X
> 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.arch=x86_64
> 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.version=10.13.6
> 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: file.encoding=UTF-8
> 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Max memory =2147483648
> 2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Available Processors =4
> 2018-09-06 16:44:20,215 INFO o.a.j.JMeter: Default Locale=English (United 
States)
> 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeter  Locale=English (United 
States)
> 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeterHome=/Source/JMeter
> 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: user.dir  =/Source/JMeter/bin
> 2018-09-06 16:44:20,216 INFO o.a.j.JMeter: PWD   =/Source/JMeter/bin
> 2018-09-06 16:44:20,218 INFO o.a.j.JMeter: IP: 10.246.64.68 Name: 
maxwellfalcon.local FullName: 10.246.64.68
> 2018-09-06 16:44:22,489 INFO o.a.j.g.a.LookAndFeelCommand: Installing 
Darcula LAF
> 2018-09-06 16:44:22,511 INFO o.a.j.g.a.LookAndFeelCommand: Using look and 
feel: com.bulenkov.darcula.DarculaLaf [Darcula]
> 2018-09-06 16:44:22,511 INFO o.a.j.JMeter: Setting LAF to: 
com.bulenkov.darcula.DarculaLaf
> 2018-09-06 16:44:22,674 INFO o.a.j.JMeter: Loaded icon properties from 
org/apache/jmeter/images/icon.properties
> 2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note: Function 
class names must contain the string: '.functions.'
> 2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note: Function 
class names must not contain the string: '.gui.'
> 2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
text/html is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> 2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xhtml+xml is 
org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> 2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> 2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
text/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
> 2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
text/vnd.wap.wml is org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
> 2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
text/css is org.apache.jmeter.protocol.http.parser.CssParser
> 2018-09-06 16:44:27,575 INFO o.a.j.e.KeyToolUtils: keytool found at 
'keytool'
> 2018-09-06 16:44:27,576 INFO o.a.j.p.h.p.ProxyControl: HTTP(S) Test 
Script Recorder SSL Proxy will use keys that support embedded 3rd party 
resources in file /Source/JMeter/bin/proxyserver.jks
> 2018-09-06 16:44:30,814 INFO o.a.j.s.FileServer: Default 
base='/Source/JMeter/bin'
> 2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: Note: Sample 
TimeStamps are START times
> 2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: 
sampleresult.default.encoding is set to ISO-8859-1
> 2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: 
sampleresult.useNanoTime=true
> 2018-09-06 16:44:31,369 INFO o.a.j.s.SampleResult: 
sampleresult.nanoThreadSleep=5000
> 2018-09-06 16:45:14,984 INFO o.a.j.e.StandardJMeterEngine: Running the 
test!
> 2018-09-06 16:45:14,985 INFO o.a.j.s.SampleEvent: List of 
sample_variables: []
> 2018-09-06 16:45:14,985 INFO o.a.j.s.SampleEvent: List of 
sample_variables: []
> 2018-09-06 16:45:14,994 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, 
*local*)
> 2018-09-06 16:45:15,123 INFO o.a.j.e.StandardJMeterEngine: Starting 
ThreadGroup: 1 : Thread Group
> 2018-09-06 16:45:15,123 

Re: JUnit Setup Issues

2018-09-06 Thread Felix Schumacher




Am 06.09.2018 um 22:46 schrieb Maxwell Falcon:

However it looks like when I leave that field blank the log changes.  Maybe 
leaving it blank fixed my original issue, but now I have a new issue?
Do you think you have new issue? Why? All those message are INFO, so no 
problems are reported there.


Regards,
 Felix


2018-09-06 16:44:20,103 INFO o.a.j.u.JMeterUtils: Setting Locale to en_US
2018-09-06 16:44:20,185 INFO o.a.j.JMeter: Loading user properties from: 
user.properties
2018-09-06 16:44:20,187 INFO o.a.j.JMeter: Loading system properties from: 
system.properties
2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Copyright (c) 1998-2018 The Apache 
Software Foundation
2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Version 4.0 r1823414
2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.version=10.0.2
2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.vm.name=Java HotSpot(TM) 64-Bit 
Server VM
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.name=Mac OS X
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.arch=x86_64
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.version=10.13.6
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: file.encoding=UTF-8
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Max memory =2147483648
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Available Processors =4
2018-09-06 16:44:20,215 INFO o.a.j.JMeter: Default Locale=English (United 
States)
2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeter  Locale=English (United 
States)
2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeterHome=/Source/JMeter
2018-09-06 16:44:20,216 INFO o.a.j.JMeter: user.dir  =/Source/JMeter/bin
2018-09-06 16:44:20,216 INFO o.a.j.JMeter: PWD   =/Source/JMeter/bin
2018-09-06 16:44:20,218 INFO o.a.j.JMeter: IP: 10.246.64.68 Name: 
maxwellfalcon.local FullName: 10.246.64.68
2018-09-06 16:44:22,489 INFO o.a.j.g.a.LookAndFeelCommand: Installing Darcula 
LAF
2018-09-06 16:44:22,511 INFO o.a.j.g.a.LookAndFeelCommand: Using look and feel: 
com.bulenkov.darcula.DarculaLaf [Darcula]
2018-09-06 16:44:22,511 INFO o.a.j.JMeter: Setting LAF to: 
com.bulenkov.darcula.DarculaLaf
2018-09-06 16:44:22,674 INFO o.a.j.JMeter: Loaded icon properties from 
org/apache/jmeter/images/icon.properties
2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note: Function class 
names must contain the string: '.functions.'
2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note: Function class 
names must not contain the string: '.gui.'
2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/html 
is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xhtml+xml is 
org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/xml 
is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
text/vnd.wap.wml is org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/css 
is org.apache.jmeter.protocol.http.parser.CssParser
2018-09-06 16:44:27,575 INFO o.a.j.e.KeyToolUtils: keytool found at 'keytool'
2018-09-06 16:44:27,576 INFO o.a.j.p.h.p.ProxyControl: HTTP(S) Test Script 
Recorder SSL Proxy will use keys that support embedded 3rd party resources in 
file /Source/JMeter/bin/proxyserver.jks
2018-09-06 16:44:30,814 INFO o.a.j.s.FileServer: Default 
base='/Source/JMeter/bin'
2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: Note: Sample TimeStamps are 
START times
2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: 
sampleresult.default.encoding is set to ISO-8859-1
2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: sampleresult.useNanoTime=true
2018-09-06 16:44:31,369 INFO o.a.j.s.SampleResult: 
sampleresult.nanoThreadSleep=5000
2018-09-06 16:45:14,984 INFO o.a.j.e.StandardJMeterEngine: Running the test!
2018-09-06 16:45:14,985 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2018-09-06 16:45:14,985 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2018-09-06 16:45:14,994 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*)
2018-09-06 16:45:15,123 INFO o.a.j.e.StandardJMeterEngine: Starting 
ThreadGroup: 1 : Thread Group
2018-09-06 16:45:15,123 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads 
for group Thread Group.
2018-09-06 16:45:15,124 INFO o.a.j.e.StandardJMeterEngine: Thread will continue 
on error
2018-09-06 16:45:15,126 INFO o.a.j.t.ThreadGroup: Starting thread group... 
number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false
2018-09-06 16:45:15,138 INFO o.a.j.t.ThreadGroup: Started thread group number 1
2018-09-06 16:45:15,138 INFO o.a.j.t.JMeterThread: Thread started: Thread Group 
1-1
2018-09-06 16:45:15,138 INFO o.a.j.e.StandardJMeterEngine: All 

Re: JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
However it looks like when I leave that field blank the log changes.  Maybe 
leaving it blank fixed my original issue, but now I have a new issue?

2018-09-06 16:44:20,103 INFO o.a.j.u.JMeterUtils: Setting Locale to en_US
2018-09-06 16:44:20,185 INFO o.a.j.JMeter: Loading user properties from: 
user.properties
2018-09-06 16:44:20,187 INFO o.a.j.JMeter: Loading system properties from: 
system.properties
2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Copyright (c) 1998-2018 The Apache 
Software Foundation
2018-09-06 16:44:20,200 INFO o.a.j.JMeter: Version 4.0 r1823414
2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.version=10.0.2
2018-09-06 16:44:20,200 INFO o.a.j.JMeter: java.vm.name=Java HotSpot(TM) 64-Bit 
Server VM
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.name=Mac OS X
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.arch=x86_64
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: os.version=10.13.6
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: file.encoding=UTF-8
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Max memory =2147483648
2018-09-06 16:44:20,201 INFO o.a.j.JMeter: Available Processors =4
2018-09-06 16:44:20,215 INFO o.a.j.JMeter: Default Locale=English (United 
States)
2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeter  Locale=English (United 
States)
2018-09-06 16:44:20,216 INFO o.a.j.JMeter: JMeterHome=/Source/JMeter
2018-09-06 16:44:20,216 INFO o.a.j.JMeter: user.dir  =/Source/JMeter/bin
2018-09-06 16:44:20,216 INFO o.a.j.JMeter: PWD   =/Source/JMeter/bin
2018-09-06 16:44:20,218 INFO o.a.j.JMeter: IP: 10.246.64.68 Name: 
maxwellfalcon.local FullName: 10.246.64.68
2018-09-06 16:44:22,489 INFO o.a.j.g.a.LookAndFeelCommand: Installing Darcula 
LAF
2018-09-06 16:44:22,511 INFO o.a.j.g.a.LookAndFeelCommand: Using look and feel: 
com.bulenkov.darcula.DarculaLaf [Darcula]
2018-09-06 16:44:22,511 INFO o.a.j.JMeter: Setting LAF to: 
com.bulenkov.darcula.DarculaLaf
2018-09-06 16:44:22,674 INFO o.a.j.JMeter: Loaded icon properties from 
org/apache/jmeter/images/icon.properties
2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note: Function class 
names must contain the string: '.functions.'
2018-09-06 16:44:23,354 INFO o.a.j.e.u.CompoundVariable: Note: Function class 
names must not contain the string: '.gui.'
2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/html 
is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:44:26,971 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xhtml+xml is 
org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:44:26,972 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/xml 
is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
text/vnd.wap.wml is org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
2018-09-06 16:44:26,973 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/css 
is org.apache.jmeter.protocol.http.parser.CssParser
2018-09-06 16:44:27,575 INFO o.a.j.e.KeyToolUtils: keytool found at 'keytool'
2018-09-06 16:44:27,576 INFO o.a.j.p.h.p.ProxyControl: HTTP(S) Test Script 
Recorder SSL Proxy will use keys that support embedded 3rd party resources in 
file /Source/JMeter/bin/proxyserver.jks
2018-09-06 16:44:30,814 INFO o.a.j.s.FileServer: Default 
base='/Source/JMeter/bin'
2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: Note: Sample TimeStamps are 
START times
2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: 
sampleresult.default.encoding is set to ISO-8859-1
2018-09-06 16:44:31,368 INFO o.a.j.s.SampleResult: sampleresult.useNanoTime=true
2018-09-06 16:44:31,369 INFO o.a.j.s.SampleResult: 
sampleresult.nanoThreadSleep=5000
2018-09-06 16:45:14,984 INFO o.a.j.e.StandardJMeterEngine: Running the test!
2018-09-06 16:45:14,985 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2018-09-06 16:45:14,985 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2018-09-06 16:45:14,994 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*)
2018-09-06 16:45:15,123 INFO o.a.j.e.StandardJMeterEngine: Starting 
ThreadGroup: 1 : Thread Group
2018-09-06 16:45:15,123 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads 
for group Thread Group.
2018-09-06 16:45:15,124 INFO o.a.j.e.StandardJMeterEngine: Thread will continue 
on error
2018-09-06 16:45:15,126 INFO o.a.j.t.ThreadGroup: Starting thread group... 
number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false
2018-09-06 16:45:15,138 INFO o.a.j.t.ThreadGroup: Started thread group number 1
2018-09-06 16:45:15,138 INFO o.a.j.t.JMeterThread: Thread started: Thread Group 
1-1
2018-09-06 16:45:15,138 INFO o.a.j.e.StandardJMeterEngine: All thread groups 
have been started
2018-09-06 16:45:15,148 INFO o.a.j.t.JMeterThread: Thread is done: Thread Group 
1-1
2018-09-06 16:45:15,148 INFO o.a.j.t.JMeterThread: Thread 

Re: JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
Whether I leave the Constructor string label blank or fill it, the test will 
still not run.  

On 9/6/18, 4:37 PM, "Deepak Shetty"  wrote:

Then thats why its failing :)
Constructor string

String pass to the string constructor. If a string is set, the sampler will
use the string constructor instead of the empty constructor.


On Thu, Sep 6, 2018 at 1:29 PM Maxwell Falcon  wrote:

> I did put a value for the Constructor String label.
>
> On 9/6/18, 4:21 PM, "Deepak Shetty"  wrote:
>
> Do you have any value specified in Constructor String label ?
>
> 
https://jmeter.apache.org/usermanual/component_reference.html#JUnit_Request
> If you specify that it will look for a constructor with a parameter .
>
> On Thu, Sep 6, 2018 at 11:13 AM Maxwell Falcon 
> wrote:
>
> > Hello, this is my first time using the mailing list, so I hope that
> I am
> > posting in the right channel/list.
> >
> > Essentially I am trying to run some of my Junit tests in JMeter.
> Right
> > now I have exported my project as a .jar and put the .jar in the
> lib/junit
> > directory.  In JMeter I add the Junit sampler and results tree
> listener.
> >  In the JUnit sampler I select my classname and test and then hit
> run.  I
> > get response code 100 but the test shows up red and never runs.
> Looking at
> > the log it looks the error is
> >
> > “Trying to find constructor with one String parameter returned 
error:
> > community.LoginTests.(java.lang.String)”
> >
> > I do not have a constructor in the test class. Any help would be
> greatly
> > appreciated.  If I am posting this in the wrong place then please
> let me
> > know.
> >
> > -Maxwell
> >
>
>



Re: JUnit Setup Issues

2018-09-06 Thread Deepak Shetty
Then thats why its failing :)
Constructor string

String pass to the string constructor. If a string is set, the sampler will
use the string constructor instead of the empty constructor.


On Thu, Sep 6, 2018 at 1:29 PM Maxwell Falcon  wrote:

> I did put a value for the Constructor String label.
>
> On 9/6/18, 4:21 PM, "Deepak Shetty"  wrote:
>
> Do you have any value specified in Constructor String label ?
>
> https://jmeter.apache.org/usermanual/component_reference.html#JUnit_Request
> If you specify that it will look for a constructor with a parameter .
>
> On Thu, Sep 6, 2018 at 11:13 AM Maxwell Falcon 
> wrote:
>
> > Hello, this is my first time using the mailing list, so I hope that
> I am
> > posting in the right channel/list.
> >
> > Essentially I am trying to run some of my Junit tests in JMeter.
> Right
> > now I have exported my project as a .jar and put the .jar in the
> lib/junit
> > directory.  In JMeter I add the Junit sampler and results tree
> listener.
> >  In the JUnit sampler I select my classname and test and then hit
> run.  I
> > get response code 100 but the test shows up red and never runs.
> Looking at
> > the log it looks the error is
> >
> > “Trying to find constructor with one String parameter returned error:
> > community.LoginTests.(java.lang.String)”
> >
> > I do not have a constructor in the test class. Any help would be
> greatly
> > appreciated.  If I am posting this in the wrong place then please
> let me
> > know.
> >
> > -Maxwell
> >
>
>


Re: JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
I did put a value for the Constructor String label.

On 9/6/18, 4:21 PM, "Deepak Shetty"  wrote:

Do you have any value specified in Constructor String label ?
https://jmeter.apache.org/usermanual/component_reference.html#JUnit_Request
If you specify that it will look for a constructor with a parameter .

On Thu, Sep 6, 2018 at 11:13 AM Maxwell Falcon  wrote:

> Hello, this is my first time using the mailing list, so I hope that I am
> posting in the right channel/list.
>
> Essentially I am trying to run some of my Junit tests in JMeter.  Right
> now I have exported my project as a .jar and put the .jar in the lib/junit
> directory.  In JMeter I add the Junit sampler and results tree listener.
>  In the JUnit sampler I select my classname and test and then hit run.  I
> get response code 100 but the test shows up red and never runs.  Looking 
at
> the log it looks the error is
>
> “Trying to find constructor with one String parameter returned error:
> community.LoginTests.(java.lang.String)”
>
> I do not have a constructor in the test class. Any help would be greatly
> appreciated.  If I am posting this in the wrong place then please let me
> know.
>
> -Maxwell
>



Re: JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
Added a constructor with a string param:

package community;

import ...

public class LoginTests extends BaseCommunityTest {

private User user;

public LoginTests(String str){
//Do Nothing
}

@Before
public void loginTestInit() {

}

@Test
@TestCase(owner = Owner.Kevin, testId = 834089)
public void loginLogout() {
System.out.println("Test");
}
}

And the log:

2018-09-06 16:15:45,547 INFO o.a.j.u.JMeterUtils: Setting Locale to en_US
2018-09-06 16:15:45,607 INFO o.a.j.JMeter: Loading user properties from: 
user.properties
2018-09-06 16:15:45,608 INFO o.a.j.JMeter: Loading system properties from: 
system.properties
2018-09-06 16:15:45,620 INFO o.a.j.JMeter: Copyright (c) 1998-2018 The Apache 
Software Foundation
2018-09-06 16:15:45,620 INFO o.a.j.JMeter: Version 4.0 r1823414
2018-09-06 16:15:45,620 INFO o.a.j.JMeter: java.version=10.0.2
2018-09-06 16:15:45,620 INFO o.a.j.JMeter: java.vm.name=Java HotSpot(TM) 64-Bit 
Server VM
2018-09-06 16:15:45,620 INFO o.a.j.JMeter: os.name=Mac OS X
2018-09-06 16:15:45,621 INFO o.a.j.JMeter: os.arch=x86_64
2018-09-06 16:15:45,621 INFO o.a.j.JMeter: os.version=10.13.6
2018-09-06 16:15:45,621 INFO o.a.j.JMeter: file.encoding=UTF-8
2018-09-06 16:15:45,621 INFO o.a.j.JMeter: Max memory =2147483648
2018-09-06 16:15:45,621 INFO o.a.j.JMeter: Available Processors =4
2018-09-06 16:15:45,635 INFO o.a.j.JMeter: Default Locale=English (United 
States)
2018-09-06 16:15:45,636 INFO o.a.j.JMeter: JMeter  Locale=English (United 
States)
2018-09-06 16:15:45,636 INFO o.a.j.JMeter: JMeterHome=/Source/JMeter
2018-09-06 16:15:45,637 INFO o.a.j.JMeter: user.dir  =/Source/JMeter/bin
2018-09-06 16:15:45,637 INFO o.a.j.JMeter: PWD   =/Source/JMeter/bin
2018-09-06 16:15:45,639 INFO o.a.j.JMeter: IP: 10.246.64.68 Name: 
maxwellfalcon.local FullName: 10.246.64.68
2018-09-06 16:15:48,018 INFO o.a.j.g.a.LookAndFeelCommand: Installing Darcula 
LAF
2018-09-06 16:15:48,029 INFO o.a.j.g.a.LookAndFeelCommand: Using look and feel: 
com.bulenkov.darcula.DarculaLaf [Darcula]
2018-09-06 16:15:48,029 INFO o.a.j.JMeter: Setting LAF to: 
com.bulenkov.darcula.DarculaLaf
2018-09-06 16:15:48,209 INFO o.a.j.JMeter: Loaded icon properties from 
org/apache/jmeter/images/icon.properties
2018-09-06 16:15:48,971 INFO o.a.j.e.u.CompoundVariable: Note: Function class 
names must contain the string: '.functions.'
2018-09-06 16:15:48,971 INFO o.a.j.e.u.CompoundVariable: Note: Function class 
names must not contain the string: '.gui.'
2018-09-06 16:15:52,108 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/html 
is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:15:52,109 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xhtml+xml is 
org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:15:52,109 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:15:52,110 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/xml 
is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 16:15:52,110 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
text/vnd.wap.wml is org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
2018-09-06 16:15:52,110 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/css 
is org.apache.jmeter.protocol.http.parser.CssParser
2018-09-06 16:15:52,755 INFO o.a.j.e.KeyToolUtils: keytool found at 'keytool'
2018-09-06 16:15:52,756 INFO o.a.j.p.h.p.ProxyControl: HTTP(S) Test Script 
Recorder SSL Proxy will use keys that support embedded 3rd party resources in 
file /Source/JMeter/bin/proxyserver.jks
2018-09-06 16:15:56,475 INFO o.a.j.s.FileServer: Default 
base='/Source/JMeter/bin'
2018-09-06 16:15:57,074 INFO o.a.j.s.SampleResult: Note: Sample TimeStamps are 
START times
2018-09-06 16:15:57,074 INFO o.a.j.s.SampleResult: 
sampleresult.default.encoding is set to ISO-8859-1
2018-09-06 16:15:57,074 INFO o.a.j.s.SampleResult: sampleresult.useNanoTime=true
2018-09-06 16:15:57,074 INFO o.a.j.s.SampleResult: 
sampleresult.nanoThreadSleep=5000
2018-09-06 16:16:36,130 INFO o.a.j.e.StandardJMeterEngine: Running the test!
2018-09-06 16:16:36,131 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2018-09-06 16:16:36,131 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2018-09-06 16:16:36,138 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*)
2018-09-06 16:16:36,267 INFO o.a.j.e.StandardJMeterEngine: Starting 
ThreadGroup: 1 : Thread Group
2018-09-06 16:16:36,267 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads 
for group Thread Group.
2018-09-06 16:16:36,267 INFO o.a.j.e.StandardJMeterEngine: Thread will continue 
on error
2018-09-06 16:16:36,267 INFO o.a.j.t.ThreadGroup: Starting thread group... 
number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false
2018-09-06 16:16:36,273 INFO o.a.j.t.ThreadGroup: Started thread group number 1
2018-09-06 16:16:36,274 INFO o.a.j.t.JMeterThread: 

Re: JUnit Setup Issues

2018-09-06 Thread Felix Schumacher




Am 06.09.2018 um 20:13 schrieb Maxwell Falcon:

Hello, this is my first time using the mailing list, so I hope that I am 
posting in the right channel/list.

Essentially I am trying to run some of my Junit tests in JMeter.  Right now I 
have exported my project as a .jar and put the .jar in the lib/junit directory. 
 In JMeter I add the Junit sampler and results tree listener.   In the JUnit 
sampler I select my classname and test and then hit run.  I get response code 
100 but the test shows up red and never runs.  Looking at the log it looks the 
error is

“Trying to find constructor with one String parameter returned error: 
community.LoginTests.(java.lang.String)”

I do not have a constructor in the test class. Any help would be greatly 
appreciated.  If I am posting this in the wrong place then please let me know.

What happens, when you add a constructor with a String parameter?

Regards,
 Felix



-Maxwell




-
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org



Re: JUnit Setup Issues

2018-09-06 Thread Philippe Mouawad
You can't attach files, so either share it in pastebin or similar website,
or copy content here .
In both cases, remove sensitive information if any.

Thanks

On Thu, Sep 6, 2018 at 10:02 PM Maxwell Falcon  wrote:

> Here is my class and I'll attach the log file:
>
> package community;
>
> import ...
>
> public class LoginTests extends BaseCommunityTest {
>
> private User user;
>
> @Before
> public void loginTestInit() {
>
> }
>
> @Test
> @TestCase(owner = Owner.Kevin, testId = 834089)
> public void loginLogout() {
> System.out.println("Test");
> }
> }
>
> On 9/6/18, 3:32 PM, "Philippe Mouawad" 
> wrote:
>
> Hello,
> You're in the right place.
>
> Would it be possible to show your class maybe removing the code of
> methods
> and also show jmeter.log ?
>
> Thank you
>
> On Thu, Sep 6, 2018 at 8:13 PM Maxwell Falcon 
> wrote:
>
> > Hello, this is my first time using the mailing list, so I hope that
> I am
> > posting in the right channel/list.
> >
> > Essentially I am trying to run some of my Junit tests in JMeter.
> Right
> > now I have exported my project as a .jar and put the .jar in the
> lib/junit
> > directory.  In JMeter I add the Junit sampler and results tree
> listener.
> >  In the JUnit sampler I select my classname and test and then hit
> run.  I
> > get response code 100 but the test shows up red and never runs.
> Looking at
> > the log it looks the error is
> >
> > “Trying to find constructor with one String parameter returned error:
> > community.LoginTests.(java.lang.String)”
> >
> > I do not have a constructor in the test class. Any help would be
> greatly
> > appreciated.  If I am posting this in the wrong place then please
> let me
> > know.
> >
> > -Maxwell
> >
>
>
> --
> Cordialement.
> Philippe Mouawad.
> Ubik-Ingénierie
>
> UBIK LOAD PACK Web Site 
>
> UBIK LOAD PACK on TWITTER 
>
>
> -
> To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
> For additional commands, e-mail: user-h...@jmeter.apache.org



-- 
Cordialement.
Philippe Mouawad.


Re: JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
I'm not sure if that attachment went through so I'll post the logfile here:

2018-09-06 15:56:03,294 INFO o.a.j.u.JMeterUtils: Setting Locale to en_US
2018-09-06 15:56:03,345 INFO o.a.j.JMeter: Loading user properties from: 
user.properties
2018-09-06 15:56:03,346 INFO o.a.j.JMeter: Loading system properties from: 
system.properties
2018-09-06 15:56:03,357 INFO o.a.j.JMeter: Copyright (c) 1998-2018 The Apache 
Software Foundation
2018-09-06 15:56:03,357 INFO o.a.j.JMeter: Version 4.0 r1823414
2018-09-06 15:56:03,357 INFO o.a.j.JMeter: java.version=10.0.2
2018-09-06 15:56:03,357 INFO o.a.j.JMeter: java.vm.name=Java HotSpot(TM) 64-Bit 
Server VM
2018-09-06 15:56:03,357 INFO o.a.j.JMeter: os.name=Mac OS X
2018-09-06 15:56:03,357 INFO o.a.j.JMeter: os.arch=x86_64
2018-09-06 15:56:03,358 INFO o.a.j.JMeter: os.version=10.13.6
2018-09-06 15:56:03,358 INFO o.a.j.JMeter: file.encoding=UTF-8
2018-09-06 15:56:03,358 INFO o.a.j.JMeter: Max memory =2147483648
2018-09-06 15:56:03,358 INFO o.a.j.JMeter: Available Processors =4
2018-09-06 15:56:03,369 INFO o.a.j.JMeter: Default Locale=English (United 
States)
2018-09-06 15:56:03,369 INFO o.a.j.JMeter: JMeter  Locale=English (United 
States)
2018-09-06 15:56:03,369 INFO o.a.j.JMeter: JMeterHome=/Source/JMeter
2018-09-06 15:56:03,369 INFO o.a.j.JMeter: user.dir  =/Source/JMeter/bin
2018-09-06 15:56:03,370 INFO o.a.j.JMeter: PWD   =/Source/JMeter/bin
2018-09-06 15:56:03,372 INFO o.a.j.JMeter: IP: 10.246.64.68 Name: 
maxwellfalcon.local FullName: 10.246.64.68
2018-09-06 15:56:05,334 INFO o.a.j.g.a.LookAndFeelCommand: Installing Darcula 
LAF
2018-09-06 15:56:05,345 INFO o.a.j.g.a.LookAndFeelCommand: Using look and feel: 
com.bulenkov.darcula.DarculaLaf [Darcula]
2018-09-06 15:56:05,345 INFO o.a.j.JMeter: Setting LAF to: 
com.bulenkov.darcula.DarculaLaf
2018-09-06 15:56:05,492 INFO o.a.j.JMeter: Loaded icon properties from 
org/apache/jmeter/images/icon.properties
2018-09-06 15:56:06,157 INFO o.a.j.e.u.CompoundVariable: Note: Function class 
names must contain the string: '.functions.'
2018-09-06 15:56:06,161 INFO o.a.j.e.u.CompoundVariable: Note: Function class 
names must not contain the string: '.gui.'
2018-09-06 15:56:09,157 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/html 
is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 15:56:09,161 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xhtml+xml is 
org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 15:56:09,162 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
application/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 15:56:09,162 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/xml 
is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser
2018-09-06 15:56:09,162 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for 
text/vnd.wap.wml is org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
2018-09-06 15:56:09,163 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/css 
is org.apache.jmeter.protocol.http.parser.CssParser
2018-09-06 15:56:10,118 INFO o.a.j.e.KeyToolUtils: keytool found at 'keytool'
2018-09-06 15:56:10,119 INFO o.a.j.p.h.p.ProxyControl: HTTP(S) Test Script 
Recorder SSL Proxy will use keys that support embedded 3rd party resources in 
file /Source/JMeter/bin/proxyserver.jks
2018-09-06 15:56:13,391 INFO o.a.j.s.FileServer: Default 
base='/Source/JMeter/bin'
2018-09-06 15:56:13,919 INFO o.a.j.s.SampleResult: Note: Sample TimeStamps are 
START times
2018-09-06 15:56:13,920 INFO o.a.j.s.SampleResult: 
sampleresult.default.encoding is set to ISO-8859-1
2018-09-06 15:56:13,920 INFO o.a.j.s.SampleResult: sampleresult.useNanoTime=true
2018-09-06 15:56:13,920 INFO o.a.j.s.SampleResult: 
sampleresult.nanoThreadSleep=5000
2018-09-06 15:56:47,534 INFO o.a.j.e.StandardJMeterEngine: Running the test!
2018-09-06 15:56:47,535 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2018-09-06 15:56:47,536 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2018-09-06 15:56:47,544 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*)
2018-09-06 15:56:47,681 INFO o.a.j.e.StandardJMeterEngine: Starting 
ThreadGroup: 1 : Thread Group
2018-09-06 15:56:47,682 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads 
for group Thread Group.
2018-09-06 15:56:47,682 INFO o.a.j.e.StandardJMeterEngine: Thread will continue 
on error
2018-09-06 15:56:47,682 INFO o.a.j.t.ThreadGroup: Starting thread group... 
number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false
2018-09-06 15:56:47,688 INFO o.a.j.t.ThreadGroup: Started thread group number 1
2018-09-06 15:56:47,688 INFO o.a.j.t.JMeterThread: Thread started: Thread Group 
1-1
2018-09-06 15:56:47,690 INFO o.a.j.e.StandardJMeterEngine: All thread groups 
have been started
2018-09-06 15:56:47,693 INFO o.a.j.p.j.s.JUnitSampler: Trying to find 
constructor with one String parameter returned error: 
community.LoginTests.(java.lang.String)
2018-09-06 15:56:47,697 INFO 

Re: JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
Here is my class and I'll attach the log file:

package community;

import ...

public class LoginTests extends BaseCommunityTest {

private User user;

@Before
public void loginTestInit() {

}

@Test
@TestCase(owner = Owner.Kevin, testId = 834089)
public void loginLogout() {
System.out.println("Test");
}
}

On 9/6/18, 3:32 PM, "Philippe Mouawad"  wrote:

Hello,
You're in the right place.

Would it be possible to show your class maybe removing the code of methods
and also show jmeter.log ?

Thank you

On Thu, Sep 6, 2018 at 8:13 PM Maxwell Falcon  wrote:

> Hello, this is my first time using the mailing list, so I hope that I am
> posting in the right channel/list.
>
> Essentially I am trying to run some of my Junit tests in JMeter.  Right
> now I have exported my project as a .jar and put the .jar in the lib/junit
> directory.  In JMeter I add the Junit sampler and results tree listener.
>  In the JUnit sampler I select my classname and test and then hit run.  I
> get response code 100 but the test shows up red and never runs.  Looking 
at
> the log it looks the error is
>
> “Trying to find constructor with one String parameter returned error:
> community.LoginTests.(java.lang.String)”
>
> I do not have a constructor in the test class. Any help would be greatly
> appreciated.  If I am posting this in the wrong place then please let me
> know.
>
> -Maxwell
>


-- 
Cordialement.
Philippe Mouawad.
Ubik-Ingénierie

UBIK LOAD PACK Web Site 

UBIK LOAD PACK on TWITTER 


-
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org

Re: JUnit Setup Issues

2018-09-06 Thread Philippe Mouawad
Hello,
You're in the right place.

Would it be possible to show your class maybe removing the code of methods
and also show jmeter.log ?

Thank you

On Thu, Sep 6, 2018 at 8:13 PM Maxwell Falcon  wrote:

> Hello, this is my first time using the mailing list, so I hope that I am
> posting in the right channel/list.
>
> Essentially I am trying to run some of my Junit tests in JMeter.  Right
> now I have exported my project as a .jar and put the .jar in the lib/junit
> directory.  In JMeter I add the Junit sampler and results tree listener.
>  In the JUnit sampler I select my classname and test and then hit run.  I
> get response code 100 but the test shows up red and never runs.  Looking at
> the log it looks the error is
>
> “Trying to find constructor with one String parameter returned error:
> community.LoginTests.(java.lang.String)”
>
> I do not have a constructor in the test class. Any help would be greatly
> appreciated.  If I am posting this in the wrong place then please let me
> know.
>
> -Maxwell
>


-- 
Cordialement.
Philippe Mouawad.
Ubik-Ingénierie

UBIK LOAD PACK Web Site 

UBIK LOAD PACK on TWITTER 


JUnit Setup Issues

2018-09-06 Thread Maxwell Falcon
Hello, this is my first time using the mailing list, so I hope that I am 
posting in the right channel/list.

Essentially I am trying to run some of my Junit tests in JMeter.  Right now I 
have exported my project as a .jar and put the .jar in the lib/junit directory. 
 In JMeter I add the Junit sampler and results tree listener.   In the JUnit 
sampler I select my classname and test and then hit run.  I get response code 
100 but the test shows up red and never runs.  Looking at the log it looks the 
error is

“Trying to find constructor with one String parameter returned error: 
community.LoginTests.(java.lang.String)”

I do not have a constructor in the test class. Any help would be greatly 
appreciated.  If I am posting this in the wrong place then please let me know.

-Maxwell