Search in sources :

Example 1 with MouseEventData

use of junit.extensions.jfcunit.eventdata.MouseEventData in project ACS by ACS-Community.

the class AddToDeployTreeTest method testPortValidation.

public void testPortValidation() throws Exception {
    JDialog dialog;
    AbstractButtonFinder buttonFinder = new AbstractButtonFinder("Add to View");
    // { m_ignoreVisiblity || comp.isShowing() }
    buttonFinder.setIgnoreVisibility(true);
    JButton addButton = (JButton) buttonFinder.find(panel, 0);
    assertNotNull("Could not find the Add button", addButton);
    buttonFinder.setText("Full Refresh");
    JButton refreshButton = (JButton) buttonFinder.find(panel, 0);
    assertNotNull("Could not find the Refresh button", refreshButton);
    ComponentFinder componentFinder = new ComponentFinder(JTextField.class);
    // { m_ignoreVisiblity || comp.isShowing() }
    componentFinder.setIgnoreVisibility(true);
    JTextField hostField = (JTextField) componentFinder.find(panel, 0);
    assertNotNull("Could not find the host field", hostField);
    assertEquals("host field is empty", "", hostField.getText());
    JTextField portField = (JTextField) componentFinder.find(panel, 0);
    assertNotNull("Could not find the port field", portField);
    assertEquals("port field is empty", "", portField.getText());
    getHelper().sendString(new StringEventData(this, hostField, "testhost"));
    getHelper().sendString(new StringEventData(this, portField, "2"));
    getHelper().enterClickAndLeave(new MouseEventData(this, addButton));
    DialogFinder dFinder = new DialogFinder(null);
    dFinder.setWait(2);
    List<Object> showingDialogs = dFinder.findAll();
    assertEquals("Number of dialogs showing is wrong", 1, showingDialogs.size());
    dialog = (JDialog) showingDialogs.get(0);
    assertEquals("Wrong dialog showing up", "Message", dialog.getTitle());
    TestHelper.disposeWindow(dialog, this);
}
Also used : ComponentFinder(junit.extensions.jfcunit.finder.ComponentFinder) StringEventData(junit.extensions.jfcunit.eventdata.StringEventData) AbstractButtonFinder(junit.extensions.jfcunit.finder.AbstractButtonFinder) JButton(javax.swing.JButton) MouseEventData(junit.extensions.jfcunit.eventdata.MouseEventData) JTextField(javax.swing.JTextField) DialogFinder(junit.extensions.jfcunit.finder.DialogFinder) JDialog(javax.swing.JDialog)

Example 2 with MouseEventData

use of junit.extensions.jfcunit.eventdata.MouseEventData in project JMRI by JMRI.

the class ImageIndexEditorTest method pressButton.

private javax.swing.AbstractButton pressButton(java.awt.Container frame, String text) {
    AbstractButtonFinder buttonFinder = new AbstractButtonFinder(text);
    javax.swing.AbstractButton button = (javax.swing.AbstractButton) buttonFinder.find(frame, 0);
    Assert.assertNotNull(text + " Button not found", button);
    getHelper().enterClickAndLeave(new MouseEventData(this, button));
    return button;
}
Also used : AbstractButtonFinder(junit.extensions.jfcunit.finder.AbstractButtonFinder) MouseEventData(junit.extensions.jfcunit.eventdata.MouseEventData)

Example 3 with MouseEventData

use of junit.extensions.jfcunit.eventdata.MouseEventData in project JMRI by JMRI.

the class IconEditorWindowTest method testMemoryEditor.

public void testMemoryEditor() throws Exception {
    if (GraphicsEnvironment.isHeadless()) {
        // can't Assume in TestCase
        return;
    }
    Editor.JFrameItem iconEditorFrame = _editor.getIconFrame("Memory");
    IconAdder iconEditor = iconEditorFrame.getEditor();
    Assert.assertNotNull(iconEditor);
    iconEditor._sysNametext.setText("IM0");
    iconEditor.addToTable();
    MemoryIcon memIcon = _editor.putMemory();
    Assert.assertNotNull(memIcon);
    Memory memory = memIcon.getMemory();
    Assert.assertNotNull(memory);
    int x = 20;
    int y = 10;
    memIcon.setLocation(x, y);
    _panel.repaint();
    java.awt.Point location = new java.awt.Point(x + memIcon.getSize().width / 2, y + memIcon.getSize().height / 2);
    getHelper().enterClickAndLeave(new MouseEventData(this, // component
    _panel, // number clicks
    1, // modifiers
    EventDataConstants.DEFAULT_MOUSE_MODIFIERS, // isPopUpTrigger
    false, // sleeptime
    10, // position
    EventDataConstants.CUSTOM, location));
    iconEditor._sysNametext.setText("IM1");
    iconEditor.addToTable();
    MemorySpinnerIcon memSpinIcon = _editor.addMemorySpinner();
    Assert.assertNotNull(memSpinIcon);
    memory = memSpinIcon.getMemory();
    Assert.assertNotNull(memory);
    x = 70;
    y = 10;
    memSpinIcon.setLocation(x, y);
    _panel.repaint();
    location = new java.awt.Point(x + memSpinIcon.getSize().width / 2, y + memSpinIcon.getSize().height / 2);
    getHelper().enterClickAndLeave(new MouseEventData(this, // component
    _panel, // number clicks
    1, // modifiers
    EventDataConstants.DEFAULT_MOUSE_MODIFIERS, // isPopUpTrigger
    false, // sleeptime
    10, // position
    EventDataConstants.CUSTOM, location));
    iconEditor._sysNametext.setText("IM2");
    iconEditor.addToTable();
    MemoryInputIcon memInputIcon = _editor.addMemoryInputBox();
    Assert.assertNotNull(memInputIcon);
    memory = memInputIcon.getMemory();
    Assert.assertNotNull(memory);
    x = 150;
    y = 10;
    memInputIcon.setLocation(x, y);
    _panel.repaint();
    location = new java.awt.Point(x + memInputIcon.getSize().width / 2, y + memInputIcon.getSize().height / 2);
    getHelper().enterClickAndLeave(new MouseEventData(this, // component
    _panel, // number clicks
    1, // modifiers
    EventDataConstants.DEFAULT_MOUSE_MODIFIERS, // isPopUpTrigger
    false, // sleeptime
    10, // position
    EventDataConstants.CUSTOM, location));
    TestHelper.disposeWindow(iconEditorFrame, this);
}
Also used : Memory(jmri.Memory) MouseEventData(junit.extensions.jfcunit.eventdata.MouseEventData) PanelEditor(jmri.jmrit.display.panelEditor.PanelEditor)

Example 4 with MouseEventData

use of junit.extensions.jfcunit.eventdata.MouseEventData in project JMRI by JMRI.

the class IconEditorWindowTest method testReporterEditor.

public void testReporterEditor() throws Exception {
    if (GraphicsEnvironment.isHeadless()) {
        // can't Assume in TestCase
        return;
    }
    Editor.JFrameItem iconEditorFrame = _editor.getIconFrame("Reporter");
    IconAdder iconEditor = iconEditorFrame.getEditor();
    Assert.assertNotNull(iconEditor);
    iconEditor._sysNametext.setText("IR0");
    iconEditor.addToTable();
    ReporterIcon icon = _editor.addReporter();
    Assert.assertNotNull(icon);
    Reporter reporter = icon.getReporter();
    Assert.assertNotNull(reporter);
    int x = 30;
    int y = 10;
    icon.setLocation(x, y);
    _panel.repaint();
    java.awt.Point location = new java.awt.Point(x + icon.getSize().width / 2, y + icon.getSize().height / 2);
    getHelper().enterClickAndLeave(new MouseEventData(this, // component
    _panel, // number clicks
    1, // modifiers
    EventDataConstants.DEFAULT_MOUSE_MODIFIERS, // isPopUpTrigger
    false, // sleeptime
    10, // position
    EventDataConstants.CUSTOM, location));
    TestHelper.disposeWindow(iconEditorFrame, this);
}
Also used : Reporter(jmri.Reporter) MouseEventData(junit.extensions.jfcunit.eventdata.MouseEventData) PanelEditor(jmri.jmrit.display.panelEditor.PanelEditor)

Example 5 with MouseEventData

use of junit.extensions.jfcunit.eventdata.MouseEventData in project JMRI by JMRI.

the class TurnoutIconWindowTest method testLayoutEditor.

@SuppressWarnings("unchecked")
public void testLayoutEditor() throws Exception {
    if (GraphicsEnvironment.isHeadless()) {
        // can't Assume in TestCase
        return;
    }
    jmri.jmrit.display.layoutEditor.LayoutEditor panel = new jmri.jmrit.display.layoutEditor.LayoutEditor("TurnoutIconWindowTest.testLayoutEditor");
    JComponent jf = panel.getTargetPanel();
    TurnoutIcon icon = new TurnoutIcon(panel);
    icon.setDisplayLevel(Editor.TURNOUTS);
    Turnout sn = jmri.InstanceManager.turnoutManagerInstance().provideTurnout("IT1");
    icon.setTurnout("IT1");
    icon.setIcon("TurnoutStateClosed", new NamedIcon("resources/icons/smallschematics/tracksegments/os-lefthand-east-closed.gif", "resources/icons/smallschematics/tracksegments/os-lefthand-east-closed.gif"));
    icon.setIcon("TurnoutStateThrown", new NamedIcon("resources/icons/smallschematics/tracksegments/os-lefthand-east-thrown.gif", "resources/icons/smallschematics/tracksegments/os-lefthand-east-thrown.gif"));
    icon.setIcon("BeanStateInconsistent", new NamedIcon("resources/icons/smallschematics/tracksegments/os-lefthand-east-error.gif", "resources/icons/smallschematics/tracksegments/os-lefthand-east-error.gif"));
    icon.setIcon("BeanStateUnknown", new NamedIcon("resources/icons/smallschematics/tracksegments/os-lefthand-east-unknown.gif", "resources/icons/smallschematics/tracksegments/os-lefthand-east-unknown.gif"));
    panel.putItem(icon);
    panel.setVisible(true);
    Assert.assertEquals("initial state", Turnout.UNKNOWN, sn.getState());
    // Click icon change state to Active
    java.awt.Point location = new java.awt.Point(icon.getLocation().x + icon.getSize().width / 2, icon.getLocation().y + icon.getSize().height / 2);
    getHelper().enterClickAndLeave(new MouseEventData(this, // component
    jf, // number clicks
    1, // modifiers
    EventDataConstants.DEFAULT_MOUSE_MODIFIERS, // isPopUpTrigger
    false, // sleeptime
    10, // position
    EventDataConstants.CUSTOM, location));
    Assert.assertEquals("state after one click", Turnout.CLOSED, sn.getState());
    // Click icon change state to inactive
    getHelper().enterClickAndLeave(new MouseEventData(this, icon));
    Assert.assertEquals("state after two clicks", Turnout.THROWN, sn.getState());
    // if OK to here, close window
    TestHelper.disposeWindow(panel.getTargetFrame(), this);
    // that pops dialog, find and press Delete
    List<JDialog> dialogList = new DialogFinder(null).findAll(panel.getTargetFrame());
    JDialog d = dialogList.get(0);
    // Find the button that deletes the panel
    AbstractButtonFinder bf = new AbstractButtonFinder("Delete Panel");
    JButton button = (JButton) bf.find(d, 0);
    Assert.assertNotNull(button);
    // Click button to delete panel and close window
    getHelper().enterClickAndLeave(new MouseEventData(this, button));
    // that pops dialog, find and press Yes - Delete
    dialogList = new DialogFinder(null).findAll(panel.getTargetFrame());
    d = dialogList.get(0);
    // Find the button that deletes the panel
    bf = new AbstractButtonFinder("Yes - Dele");
    button = (JButton) bf.find(d, 0);
    Assert.assertNotNull(button);
    // Click button to delete panel and close window
    getHelper().enterClickAndLeave(new MouseEventData(this, button));
}
Also used : NamedIcon(jmri.jmrit.catalog.NamedIcon) JComponent(javax.swing.JComponent) JButton(javax.swing.JButton) MouseEventData(junit.extensions.jfcunit.eventdata.MouseEventData) DialogFinder(junit.extensions.jfcunit.finder.DialogFinder) AbstractButtonFinder(junit.extensions.jfcunit.finder.AbstractButtonFinder) Turnout(jmri.Turnout) JDialog(javax.swing.JDialog)

Aggregations

MouseEventData (junit.extensions.jfcunit.eventdata.MouseEventData)23 AbstractButtonFinder (junit.extensions.jfcunit.finder.AbstractButtonFinder)14 JButton (javax.swing.JButton)11 DialogFinder (junit.extensions.jfcunit.finder.DialogFinder)8 JDialog (javax.swing.JDialog)7 PanelEditor (jmri.jmrit.display.panelEditor.PanelEditor)7 JComponent (javax.swing.JComponent)6 Turnout (jmri.Turnout)5 Sensor (jmri.Sensor)4 NamedIcon (jmri.jmrit.catalog.NamedIcon)4 JFrame (javax.swing.JFrame)3 JTextField (javax.swing.JTextField)3 NamedComponentFinder (junit.extensions.jfcunit.finder.NamedComponentFinder)3 JCheckBox (javax.swing.JCheckBox)2 JComboBox (javax.swing.JComboBox)2 JmriJFrame (jmri.util.JmriJFrame)2 File (java.io.File)1 JRadioButton (javax.swing.JRadioButton)1 Block (jmri.Block)1 BlockManager (jmri.BlockManager)1