2c0b584b2d
Implementation of the more mouse buttons support Reviewed-by: art, dcherepanov
43 lines
1.9 KiB
Java
43 lines
1.9 KiB
Java
/*
|
|
@test %I% %E%
|
|
@bug 6315717
|
|
@summary verifies that system property sun.awt.enableExtraMouseButtons might be set to true by the System class API.
|
|
@author Andrei Dmitriev : area=awt.mouse
|
|
@run main SystemPropTest_4
|
|
*/
|
|
//1)
|
|
// - Use System.setProperty("sun.awt.enableExtraMouseButtons", "true")
|
|
// - Verifies that System.getProperty("sun.awt.enableExtraMouseButtons") returns true
|
|
// - Verifies that Toolkit.areExtraMouseButtonsEnabled() returns true.
|
|
//2)
|
|
// - Use System.setProperty("sun.awt.enableExtraMouseButtons", "false")
|
|
// - Verifies that System.getProperty("sun.awt.enableExtraMouseButtons") returns false
|
|
// - Verifies that Toolkit.areExtraMouseButtonsEnabled() returns true still.
|
|
|
|
import java.awt.*;
|
|
|
|
public class SystemPropTest_4 {
|
|
public static void main(String []s){
|
|
System.out.println("STAGE 1");
|
|
System.setProperty("sun.awt.enableExtraMouseButtons", "true");
|
|
boolean propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
|
|
if (!propValue){
|
|
throw new RuntimeException("TEST FAILED(1) : System property sun.awt.enableExtraMouseButtons = " + propValue);
|
|
}
|
|
if (!Toolkit.getDefaultToolkit().areExtraMouseButtonsEnabled()){
|
|
throw new RuntimeException("TEST FAILED(1) : Toolkit.areExtraMouseButtonsEnabled() returns false");
|
|
}
|
|
|
|
System.out.println("STAGE 2");
|
|
System.setProperty("sun.awt.enableExtraMouseButtons", "false");
|
|
propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
|
|
if (propValue){
|
|
throw new RuntimeException("TEST FAILED(2) : System property sun.awt.enableExtraMouseButtons = " + propValue);
|
|
}
|
|
if (!Toolkit.getDefaultToolkit().areExtraMouseButtonsEnabled()){
|
|
throw new RuntimeException("TEST FAILED(2) : Toolkit.areExtraMouseButtonsEnabled() returns false");
|
|
}
|
|
System.out.println("Test passed.");
|
|
}
|
|
}
|