< prev index next >

test/jdk/java/awt/Toolkit/ToolkitPropertyTest/bug7129133.java

Print this page
rev 51542 : 8210039: move OSInfo to top level testlibrary
Reviewed-by: duke


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 7129133
  27  * @summary [macosx] Accelerators are displayed as Meta instead of the Command symbol
  28  * @author leonid.romanov@oracle.com
  29  * @library ../../../../lib/testlibrary
  30  * @build jdk.testlibrary.OSInfo
  31  * @run main bug7129133
  32  */
  33 


  34 import java.awt.*;
  35 
  36 public class bug7129133 {
  37     public static void main(String[] args) throws Exception {
  38         if (jdk.testlibrary.OSInfo.getOSType() != jdk.testlibrary.OSInfo.OSType.MACOSX) {
  39             System.out.println("This test is for MacOS only. Automatically passed on other platforms.");
  40             return;
  41         }
  42 
  43         Toolkit.getDefaultToolkit();
  44 
  45         String cmdSymbol = "\u2318";
  46         String val = Toolkit.getProperty("AWT.meta", "Meta");
  47 
  48         if (!val.equals(cmdSymbol)) {
  49            throw new Exception("Wrong property value for AWT.meta. Expected: " + cmdSymbol + ", actual: " + val);
  50         }
  51     }
  52 }


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 7129133
  27  * @summary [macosx] Accelerators are displayed as Meta instead of the Command symbol
  28  * @author leonid.romanov@oracle.com
  29  * @library /test/lib
  30  * @build jdk.test.lib.Platform
  31  * @run main bug7129133
  32  */
  33 
  34 import jdk.test.lib.Platform;
  35 
  36 import java.awt.*;
  37 
  38 public class bug7129133 {
  39     public static void main(String[] args) throws Exception {
  40         if (!Platform.isOSX()) {
  41             System.out.println("This test is for MacOS only. Automatically passed on other platforms.");
  42             return;
  43         }
  44 
  45         Toolkit.getDefaultToolkit();
  46 
  47         String cmdSymbol = "\u2318";
  48         String val = Toolkit.getProperty("AWT.meta", "Meta");
  49 
  50         if (!val.equals(cmdSymbol)) {
  51            throw new Exception("Wrong property value for AWT.meta. Expected: " + cmdSymbol + ", actual: " + val);
  52         }
  53     }
  54 }
< prev index next >