/* * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.hazelcast.internal.diagnostics; import com.hazelcast.core.HazelcastInstance; import com.hazelcast.test.HazelcastParallelClassRunner; import com.hazelcast.test.annotation.QuickTest; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import java.io.IOException; import java.util.Properties; import static org.junit.Assert.assertEquals; @RunWith(HazelcastParallelClassRunner.class) @Category(QuickTest.class) public class SystemPropertiesPluginTest extends AbstractDiagnosticsPluginTest { public static final String FAKE_PROPERTY = "hazelcast.fake.property"; public static final String FAKE_PROPERTY_VALUE = "foobar"; private SystemPropertiesPlugin plugin; @Before public void setup() { HazelcastInstance hz = createHazelcastInstance(); plugin = new SystemPropertiesPlugin(getNodeEngineImpl(hz)); plugin.onStart(); System.setProperty(FAKE_PROPERTY, "foobar"); } @After public void tearDown() { System.clearProperty(FAKE_PROPERTY); } @Test public void testGetPeriodMillis() { assertEquals(DiagnosticsPlugin.STATIC, plugin.getPeriodMillis()); } @Test public void testRun() throws IOException { plugin.run(logWriter); Properties systemProperties = System.getProperties(); // we check a few of the regular ones. assertContains("java.class.version=" + systemProperties.get("java.class.version")); assertContains("java.class.path=" + systemProperties.get("java.class.path")); // we want to make sure the hazelcast system properties are added assertContains(FAKE_PROPERTY + "=" + FAKE_PROPERTY_VALUE); // we don't want to have awt assertNotContains("java.awt"); } }