1/*
2 * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
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
24import org.jtregext.GuiTestListener;
25import com.sun.swingset3.demos.combobox.ComboBoxDemo;
26import static org.testng.AssertJUnit.*;
27import org.testng.annotations.Test;
28import org.netbeans.jemmy.ClassReference;
29import org.netbeans.jemmy.operators.JComboBoxOperator;
30import org.netbeans.jemmy.operators.JFrameOperator;
31import static com.sun.swingset3.demos.combobox.ComboBoxDemo.*;
32import org.testng.annotations.Listeners;
33
34/*
35 * @test
36 * @key headful
37 * @summary Verifies ComboBoxes on SwingSet2 ComboBoxDemo page by selecting
38 *          each value of each ComboBox.
39 *
40 * @library /sanity/client/lib/jemmy/src
41 * @library /sanity/client/lib/Extensions/src
42 * @library /sanity/client/lib/SwingSet3/src
43 * @modules java.desktop
44 *          java.logging
45 * @build org.jemmy2ext.JemmyExt
46 * @build com.sun.swingset3.demos.combobox.ComboBoxDemo
47 * @run testng ComboBoxDemoTest
48 */
49@Listeners(GuiTestListener.class)
50public class ComboBoxDemoTest {
51
52    private static enum ComboBoxInfo {
53        PRESETS("Presets:"),
54        HAIR("Hair:"),
55        EYES_N_NOSE("Eyes & Nose:"),
56        MOUTH("Mouth:");
57
58        private final String comboBoxName;
59
60        private ComboBoxInfo(String comboBoxName) {
61            this.comboBoxName = comboBoxName;
62        }
63
64    }
65
66    @Test
67    public void test() throws Exception {
68
69        new ClassReference(ComboBoxDemo.class.getCanonicalName()).startApplication();
70
71        JFrameOperator frame = new JFrameOperator(DEMO_TITLE);
72        for (ComboBoxInfo comboBoxInfo : ComboBoxInfo.values()) {
73            comboBoxChecker(frame, comboBoxInfo);
74        }
75    }
76
77    private void comboBoxChecker(JFrameOperator jfo, ComboBoxInfo comboBoxInfo) {
78        JComboBoxOperator jcbo = new JComboBoxOperator(jfo, comboBoxInfo.ordinal());
79        for (int i = 0; i < jcbo.getItemCount(); i++) {
80            jcbo.selectItem(i);
81            jcbo.waitItemSelected(i);
82        }
83    }
84
85}
86