[rfc][icedtea-web] Fix resource loading in CodebaseManifestEntry reproducers
Jie Kang
jkang at redhat.com
Mon Mar 16 16:27:39 UTC 2015
----- Original Message -----
> On 03/16/2015 03:29 PM, Jie Kang wrote:
> > Hello,
> >
> > The CodebaseManifestEntry reproducers were failing due to NPE in getting
> > the Message.properties resource. This patch fixes that. The tests no
> > longer fail with NPE when manifest checks are enabled.
> >
> > However, for the most part, manifest checks are disabled when running
> > reproducers in order to prevent popup dialogs from causing them to fail. I
> > think ldracz is working on a fix to allow us to test with them
> > enabled/disabled per-test/per-reproducer. This fix should be applied here
> > when able.
> >
> > Also, the tests still have some errors unrelated to this resource loading
> > which will be addressed in a separate patch.
> >
> > Thoughts?
> >
> >
> > Regards,
> >
>
>
> Looks ok. Please, before push, ensure that it is working both in IDE and from
> commandline. In past
> there were divergences. From commandline very often direct call to
> getSystemClasloader was necessary.
>
Hello,
Just for some closure:
Class.java::getResourceAsStream:
{
[...]
ClassLoader cl = getClassLoader0();
if (cl==null) {
// A system class.
return ClassLoader.getSystemResourceAsStream(name);
}
return cl.getResourceAsStream(name);
[...]
}
And getSystemResourceAsSteam uses the system class loader so this should work out for us in all cases.
I have tested it through command-line and it seems fine. If anything we can always push a patch on top if it doesn't.
P.S. I have never ran reproducers in IDE; it seems to need a lot of setup;;; Do you run them in an IDE and if so, how'd you get it to work? :D
Regards,
>
> Any working change on this line is ok to go.
> Thanx!
>
> J.
>
--
Jie Kang
OpenJDK Team - Software Engineering Intern
More information about the distro-pkg-dev
mailing list