]> source.dussan.org Git - vaadin-framework.git/commitdiff
Alter TooltipInWindowTest to inherit from TooltipTest (#14240)
authorJuuso Valli <juuso@vaadin.com>
Thu, 17 Jul 2014 10:24:50 +0000 (13:24 +0300)
committerBogdan Udrescu <bogdan@vaadin.com>
Tue, 29 Jul 2014 14:04:58 +0000 (17:04 +0300)
Change-Id: I27c0a236d4dd654c1cf8d567752af9d1ea3c1de5

uitest/src/com/vaadin/tests/components/window/TooltipInWindow.java [deleted file]
uitest/src/com/vaadin/tests/components/window/TooltipInWindowTest.java [deleted file]
uitest/src/com/vaadin/tests/tooltip/TooltipInWindow.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/tooltip/TooltipInWindowTest.java [new file with mode: 0644]

diff --git a/uitest/src/com/vaadin/tests/components/window/TooltipInWindow.java b/uitest/src/com/vaadin/tests/components/window/TooltipInWindow.java
deleted file mode 100644 (file)
index cd2cc7d..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/* 
- * Copyright 2000-2014 Vaadin Ltd.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- * 
- * http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
-package com.vaadin.tests.components.window;
-
-import com.vaadin.server.VaadinRequest;
-import com.vaadin.tests.components.AbstractTestUI;
-import com.vaadin.ui.TextField;
-import com.vaadin.ui.VerticalLayout;
-import com.vaadin.ui.Window;
-
-public class TooltipInWindow extends AbstractTestUI {
-
-    @Override
-    protected void setup(VaadinRequest request) {
-        VerticalLayout layout = new VerticalLayout();
-        layout.setMargin(true);
-        Window window = new Window("Window", layout);
-        layout.setSizeUndefined();
-        window.center();
-        layout.addComponent(createTextField("tf1"));
-
-        addWindow(window);
-        addComponent(createTextField("tf2"));
-    }
-
-    private TextField createTextField(String id) {
-        TextField tf = new TextField("TextField with a tooltip");
-        tf.setDescription("My tooltip");
-        tf.setId(id);
-        getTooltipConfiguration().setOpenDelay(0);
-        getTooltipConfiguration().setQuickOpenDelay(0);
-        getTooltipConfiguration().setCloseTimeout(1000);
-        return tf;
-    }
-
-    @Override
-    protected String getTestDescription() {
-        return "Tooltips should also work in a Window (as well as in other overlays)";
-    }
-
-    @Override
-    protected Integer getTicketNumber() {
-        return Integer.valueOf(9172);
-    }
-
-}
diff --git a/uitest/src/com/vaadin/tests/components/window/TooltipInWindowTest.java b/uitest/src/com/vaadin/tests/components/window/TooltipInWindowTest.java
deleted file mode 100644 (file)
index 412fd30..0000000
+++ /dev/null
@@ -1,95 +0,0 @@
-/*
- * Copyright 2000-2014 Vaadin Ltd.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- * 
- * http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-package com.vaadin.tests.components.window;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Test;
-import org.openqa.selenium.WebElement;
-import org.openqa.selenium.interactions.HasInputDevices;
-import org.openqa.selenium.interactions.Mouse;
-import org.openqa.selenium.interactions.internal.Coordinates;
-import org.openqa.selenium.internal.Locatable;
-
-import com.vaadin.testbench.By;
-import com.vaadin.tests.tb3.MultiBrowserTest;
-
-/**
- * 
- * @since
- * @author Vaadin Ltd
- */
-public class TooltipInWindowTest extends MultiBrowserTest {
-
-    @Test
-    public void testTooltipsInSubWindow() throws InterruptedException {
-        openTestURL();
-
-        WebElement textfield = vaadinElementById("tf1");
-        Coordinates textfieldCoordinates = ((Locatable) textfield)
-                .getCoordinates();
-
-        Mouse mouse = ((HasInputDevices) getDriver()).getMouse();
-
-        // Show tooltip
-        mouse.mouseMove(textfieldCoordinates, 10, 10);
-
-        sleep(100);
-        ensureVisibleTooltipPositionedCorrectly();
-        assertEquals("My tooltip", getTooltipElement().getText());
-
-        // Hide tooltip
-        mouse.mouseMove(textfieldCoordinates, -100, -100);
-        sleep(2000);
-
-        ensureHiddenTooltipPositionedCorrectly();
-        assertEquals("", getTooltipElement().getText());
-
-        // Show tooltip again
-        mouse.mouseMove(textfieldCoordinates, 10, 10);
-
-        sleep(100);
-        ensureVisibleTooltipPositionedCorrectly();
-        assertEquals("My tooltip", getTooltipElement().getText());
-
-        // Hide tooltip
-        mouse.mouseMove(textfieldCoordinates, -100, -100);
-        sleep(2000);
-
-        ensureHiddenTooltipPositionedCorrectly();
-        assertEquals("", getTooltipElement().getText());
-
-    }
-
-    private WebElement getTooltipContainerElement() {
-        return getDriver().findElement(By.className("v-tooltip"));
-    }
-
-    private void ensureVisibleTooltipPositionedCorrectly() {
-        WebElement textfield = vaadinElementById("tf1");
-        int tooltipX = getTooltipContainerElement().getLocation().getX();
-        int textfieldX = textfield.getLocation().getX();
-        assertGreaterOrEqual("Tooltip should be positioned on the textfield ("
-                + tooltipX + " < " + textfieldX + ")", tooltipX, textfieldX);
-    }
-
-    private void ensureHiddenTooltipPositionedCorrectly() {
-        int tooltipX = getTooltipContainerElement().getLocation().getX();
-        assertLessThanOrEqual(
-                "Tooltip should be positioned outside of viewport (was at "
-                        + tooltipX + ")", tooltipX, -1000);
-    }
-}
diff --git a/uitest/src/com/vaadin/tests/tooltip/TooltipInWindow.java b/uitest/src/com/vaadin/tests/tooltip/TooltipInWindow.java
new file mode 100644 (file)
index 0000000..690b654
--- /dev/null
@@ -0,0 +1,57 @@
+/*
+ * Copyright 2000-2014 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+
+package com.vaadin.tests.tooltip;
+
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.tests.components.AbstractTestUI;
+import com.vaadin.ui.TextField;
+import com.vaadin.ui.VerticalLayout;
+import com.vaadin.ui.Window;
+
+public class TooltipInWindow extends AbstractTestUI {
+
+    @Override
+    protected void setup(VaadinRequest request) {
+        VerticalLayout layout = new VerticalLayout();
+        layout.setMargin(true);
+        Window window = new Window("Window", layout);
+        layout.setSizeUndefined();
+        window.center();
+        layout.addComponent(createTextField("tf1"));
+
+        addWindow(window);
+        addComponent(createTextField("tf2"));
+    }
+
+    private TextField createTextField(String id) {
+        TextField tf = new TextField("TextField with a tooltip");
+        tf.setDescription("My tooltip");
+        tf.setId(id);
+        return tf;
+    }
+
+    @Override
+    protected String getTestDescription() {
+        return "Tooltips should also work in a Window (as well as in other overlays)";
+    }
+
+    @Override
+    protected Integer getTicketNumber() {
+        return 9172;
+    }
+
+}
diff --git a/uitest/src/com/vaadin/tests/tooltip/TooltipInWindowTest.java b/uitest/src/com/vaadin/tests/tooltip/TooltipInWindowTest.java
new file mode 100644 (file)
index 0000000..1c50bf5
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Copyright 2000-2014 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.vaadin.tests.tooltip;
+
+import org.junit.Test;
+import org.openqa.selenium.WebElement;
+
+import com.vaadin.testbench.By;
+import com.vaadin.tests.tb3.TooltipTest;
+
+/**
+ * Test if tooltips in subwindows behave correctly
+ *
+ * @author Vaadin Ltd
+ */
+public class TooltipInWindowTest extends TooltipTest {
+
+    @Test
+    public void testTooltipsInSubWindow() throws Exception {
+        openTestURL();
+
+        WebElement textfield = vaadinElementById("tf1");
+
+        checkTooltip(textfield, "My tooltip");
+
+        ensureVisibleTooltipPositionedCorrectly(textfield);
+
+        clearTooltip();
+
+        checkTooltip(textfield, "My tooltip");
+
+        clearTooltip();
+    }
+
+    private WebElement getTooltipContainerElement() {
+        return getDriver().findElement(By.className("v-tooltip"));
+    }
+
+    private void ensureVisibleTooltipPositionedCorrectly(WebElement textfield)
+            throws InterruptedException {
+        int tooltipX = getTooltip().getLocation().getX();
+        int textfieldX = textfield.getLocation().getX();
+        assertGreaterOrEqual("Tooltip should be positioned on the textfield ("
+                + tooltipX + " < " + textfieldX + ")", tooltipX, textfieldX);
+    }
+
+    private void ensureHiddenTooltipPositionedCorrectly() {
+        int tooltipX = getTooltipContainerElement().getLocation().getX();
+        assertLessThanOrEqual(
+                "Tooltip should be positioned outside of viewport (was at "
+                        + tooltipX + ")", tooltipX, -1000);
+    }
+}