[rfc][icedtea-web] DeploymentPropertiesAreExposed reproducer fix

Omair Majid omajid at redhat.com
Fri Oct 4 13:19:08 PDT 2013


On 10/04/2013 04:10 PM, Andrew Azores wrote:
> On 10/04/2013 03:38 PM, Omair Majid wrote:
>> On 09/26/2013 02:58 PM, Andrew Azores wrote:
>>> Actually, since the test is about checking that the
>>> DeploymentConfiguration data is available through
>>> System.getProperty()... is there any reason I can't just "abuse" the
>>> DeploymentConfiguration singleton from JNLPRuntime again? Should work
>>> just fine, I think still captures the "spirit" of this test, and also
>>> means we can leave that constant in Defaults as default visibility.
>> Sounds fine to me.
>>
> 
> Here it is then.

> +        DeploymentConfiguration config = JNLPRuntime.getConfiguration();
> +        config.load();

If you have to invoke load() manually, why not skip JNLPRuntime
altogether and just use:

DeploymentConfiguration config = new DeploymentConfiguration();
config.load();

Disclaimer: I did not try and compile this. It just seems a little
awkward that you are using config through JNLPRuntime, but JNLPRuntime
has not done its one job: calling config.load(). Of course, calling
JNLPRuntime.initialize() is a big no-no.

> +        String userLogDir = config.getProperty(DeploymentConfiguration.KEY_USER_LOG_DIR);
> +        String expectedRegex = userLogDir + "/?";

I am a little surprised here. Is this file named with a single character?

Anyway, these are just nits. If this works correctly, feel free to push
this.

Thanks,
Omair

-- 
PGP Key: 66484681 (http://pgp.mit.edu/)
Fingerprint = F072 555B 0A17 3957 4E95  0056 F286 F14F 6648 4681


More information about the distro-pkg-dev mailing list