[rfc][icedtea-web] Fix for JavaConsoleTest
Jiri Vanek
jvanek at redhat.com
Tue Nov 25 14:44:14 UTC 2014
On 11/25/2014 03:41 PM, Jie Kang wrote:
> Hello,
>
>
> This patch fixes a newly failing unit test in JavaConsoleTest related to PR2063 [1].
>
> The test 'CreatePluginHeaderTestNotOK' fails due to the changes to PluginMessage, PluginHeader and Header. The test has been fixed in accordance with the changes and now passes.
>
> How does it look?
>
>
> [1]http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2063
>
>
> Regards,
>
> -- Jie Kang
>
>
> itw-java-console-test.patch
>
>
> diff --git a/tests/netx/unit/net/sourceforge/jnlp/util/logging/JavaConsoleTest.java b/tests/netx/unit/net/sourceforge/jnlp/util/logging/JavaConsoleTest.java
> --- a/tests/netx/unit/net/sourceforge/jnlp/util/logging/JavaConsoleTest.java
> +++ b/tests/netx/unit/net/sourceforge/jnlp/util/logging/JavaConsoleTest.java
> @@ -15,7 +15,7 @@
>
>
> String s1 = "plugindebug 1384850630162925 [jvanek][ITW-C-PLUGIN][MESSAGE_DEBUG][Tue Nov 19 09:43:50 CET 2013][/home/jvanek/Desktop/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc:1204] ITNPP Thread# 140513434003264, gthread 0x7fcbd531f8c0: PIPE: plugin read: plugin PluginProxyInfo reference 1http://www.walter-fendt.de:80";
> - String s2 = "plugindebugX 1384850630162954 [jvanek][ITW-Cplugindebug 1384850630163008 [jvanek][ITW-C-PLUGIN][MESSAGE_DEBUG][Tue Nov 19 09:43:50 CET 2013][/home/jvanek/Desktop/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc:1124] ITNPP Thread# 140513434003264, gthread 0x7fcbd531f8c0: parts[0]=plugin, parts[1]=PluginProxyInfo, reference, parts[3]=1, parts[4]=http://www.walter-fendt.de:80 -- decoded_url=http://www.walter-fendt.de:80";
> + String s2 = "plugindebugX blob [jvanek][ITW-Cplugindebug 1384850630163008 [jvanek][ITW-C-PLUGIN][MESSAGE_DEBUG][Tue Nov 19 09:43:50 CET 2013][/home/jvanek/Desktop/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc:1124] ITNPP Thread# 140513434003264, gthread 0x7fcbd531f8c0: parts[0]=plugin, parts[1]=PluginProxyInfo, reference, parts[3]=1, parts[4]=http://www.walter-fendt.de:80 -- decoded_url=http://www.walter-fendt.de:80";
> String s3 = "preinit_pluginerror 1384850630163298 [jvanek][ITW-C-PLUGIN][MESSAGE_DEBUG][Tue Nov 19 09:43:50 CET 2013][/home/jvanek/Desktop/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc:1134] ITNPP Thread# 140513434003264, gthread 0x7fcbd531f8c0: Proxy info: plugin PluginProxyInfo reference 1 DIRECT";
>
> @Test
> @@ -47,12 +47,9 @@
> PluginMessage p2 = new PluginMessage(s2);
> Assert.assertTrue(p2.wasError);
> Assert.assertTrue(p2.header.isC);
> - Assert.assertEquals(OutputController.Level.WARNING_ALL,p2.header.level);
> - Assert.assertTrue(p2.header.date.toString().contains(new Date().toString().substring(0,16))); //means no Tue Nov 19 09:43:50 :)
> - Assert.assertTrue(p2.header.user.equals("jvanek"));
> + Assert.assertEquals(OutputController.Level.WARNING_ALL, p2.header.level);
> + Assert.assertTrue(p2.header.date.toString().contains(new Date().toString().substring(0, 16))); //means no Tue Nov 19 09:43:50 :)
> Assert.assertTrue(p2.header.thread1.equals("unknown"));
> Assert.assertTrue(p2.header.thread2.equals("unknown"));
> -
> -
> }
> }
>
This is ok. What else to do?
Just one nit - may you please add separate test for original String s2?
J.
More information about the distro-pkg-dev
mailing list