870N/A/*
870N/A @test %I% %E%
870N/A @bug 6315717
870N/A @summary verifies that system property sun.awt.enableExtraMouseButtons might be set to true by the System class API.
870N/A @author Andrei Dmitriev : area=awt.mouse
870N/A @run main SystemPropTest_4
870N/A */
870N/A//1)
870N/A// - Use System.setProperty("sun.awt.enableExtraMouseButtons", "true")
870N/A// - Verifies that System.getProperty("sun.awt.enableExtraMouseButtons") returns true
870N/A// - Verifies that Toolkit.areExtraMouseButtonsEnabled() returns true.
870N/A//2)
870N/A// - Use System.setProperty("sun.awt.enableExtraMouseButtons", "false")
870N/A// - Verifies that System.getProperty("sun.awt.enableExtraMouseButtons") returns false
870N/A// - Verifies that Toolkit.areExtraMouseButtonsEnabled() returns true still.
870N/A
870N/Aimport java.awt.*;
870N/A
870N/Apublic class SystemPropTest_4 {
870N/A public static void main(String []s){
870N/A System.out.println("STAGE 1");
870N/A System.setProperty("sun.awt.enableExtraMouseButtons", "true");
870N/A boolean propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
870N/A if (!propValue){
870N/A throw new RuntimeException("TEST FAILED(1) : System property sun.awt.enableExtraMouseButtons = " + propValue);
870N/A }
870N/A if (!Toolkit.getDefaultToolkit().areExtraMouseButtonsEnabled()){
870N/A throw new RuntimeException("TEST FAILED(1) : Toolkit.areExtraMouseButtonsEnabled() returns false");
870N/A }
870N/A
870N/A System.out.println("STAGE 2");
870N/A System.setProperty("sun.awt.enableExtraMouseButtons", "false");
870N/A propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
870N/A if (propValue){
870N/A throw new RuntimeException("TEST FAILED(2) : System property sun.awt.enableExtraMouseButtons = " + propValue);
870N/A }
870N/A if (!Toolkit.getDefaultToolkit().areExtraMouseButtonsEnabled()){
870N/A throw new RuntimeException("TEST FAILED(2) : Toolkit.areExtraMouseButtonsEnabled() returns false");
870N/A }
870N/A System.out.println("Test passed.");
870N/A }
870N/A}