diff options
author | Denis Anisimov <denis@vaadin.com> | 2014-08-16 18:04:51 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-08-27 17:01:26 +0300 |
commit | 00e6a2aed5621ae7c5da63aa429450152eeb496d (patch) | |
tree | 7aa4df399d740d28f6d5f3bcb98f9f37af833d1f /uitest | |
parent | 78d3a753ac456af17893218f473c4f871bf07f60 (diff) | |
download | vaadin-framework-00e6a2aed5621ae7c5da63aa429450152eeb496d.tar.gz vaadin-framework-00e6a2aed5621ae7c5da63aa429450152eeb496d.zip |
VTabsheetBase should implement HasEnabled (#14114).
Change-Id: I31ebc1b4c0698f10c145c6e59d5c951918c5fdbe
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/tabsheet/TabSheetInDisabledParent.java | 72 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/components/tabsheet/TabSheetInDisabledParentTest.java | 71 |
2 files changed, 143 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/tabsheet/TabSheetInDisabledParent.java b/uitest/src/com/vaadin/tests/components/tabsheet/TabSheetInDisabledParent.java new file mode 100644 index 0000000000..2ccbfeef76 --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/tabsheet/TabSheetInDisabledParent.java @@ -0,0 +1,72 @@ +/* + * 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.tabsheet; + +import com.vaadin.server.VaadinRequest; +import com.vaadin.tests.components.AbstractTestUI; +import com.vaadin.ui.Button; +import com.vaadin.ui.Button.ClickEvent; +import com.vaadin.ui.Button.ClickListener; +import com.vaadin.ui.HorizontalLayout; +import com.vaadin.ui.Label; +import com.vaadin.ui.TabSheet; + +/** + * Test UI to check that TabsheetBaseConnector reacts on disabling its parent. + * + * @author Vaadin Ltd + */ +public class TabSheetInDisabledParent extends AbstractTestUI { + + @Override + protected void setup(VaadinRequest request) { + final HorizontalLayout layout = new HorizontalLayout(); + addComponent(new Button("toggle", new ClickListener() { + + @Override + public void buttonClick(ClickEvent event) { + layout.setEnabled(!layout.isEnabled()); + } + })); + addComponent(layout); + + TabSheet sheet = new TabSheet(); + Label label1 = new Label("Label1"); + label1.setCaption("Label 1"); + sheet.addComponent(label1); + + Label label2 = new Label("Label2"); + label2.setCaption("Label 2"); + sheet.addComponent(label2); + + Label label3 = new Label("Label3"); + label3.setCaption("Label 3"); + sheet.addComponent(label3); + + layout.addComponent(sheet); + } + + @Override + protected String getTestDescription() { + return "VTabsheetBase widget should implement HasEnabled interface."; + } + + @Override + protected Integer getTicketNumber() { + return 14114; + } + +} diff --git a/uitest/src/com/vaadin/tests/components/tabsheet/TabSheetInDisabledParentTest.java b/uitest/src/com/vaadin/tests/components/tabsheet/TabSheetInDisabledParentTest.java new file mode 100644 index 0000000000..5070fd069c --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/tabsheet/TabSheetInDisabledParentTest.java @@ -0,0 +1,71 @@ +/* + * 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.tabsheet; + +import java.util.List; + +import org.junit.Assert; +import org.junit.Test; +import org.openqa.selenium.WebElement; + +import com.vaadin.testbench.By; +import com.vaadin.tests.tb3.MultiBrowserTest; + +/** + * Test to check that TabsheetBaseConnector reacts on disabling its parent. + * + * @author Vaadin Ltd + */ +public class TabSheetInDisabledParentTest extends MultiBrowserTest { + + @Test + public void testTabsheetInDisabledParent() { + openTestURL(); + + WebElement button = getDriver().findElement(By.className("v-button")); + // disable parent + button.click(); + + List<WebElement> tabHeaders = getDriver().findElements( + By.className("v-tabsheet-tabitemcell")); + tabHeaders.get(1).findElement(By.className("v-captiontext")).click(); + + Assert.assertFalse( + "It's possible to activate TabSheet tab when its parent is disabled", + tabHeaders.get(1).getAttribute("class") + .contains("v-tabsheet-tabitemcell-selected")); + + // enable parent back + button.click(); + + // selected tab is still the same + tabHeaders = getDriver().findElements( + By.className("v-tabsheet-tabitemcell")); + Assert.assertTrue( + "Tabsheet has wrong selected tab after enabling its parent", + tabHeaders.get(0).getAttribute("class") + .contains("v-tabsheet-tabitemcell-selected")); + + // click to the second tab + tabHeaders.get(1).findElement(By.className("v-captiontext")).click(); + // check the second tab is selected + Assert.assertTrue( + "Second tab is not activated in the Tabsheet after clicking on it", + tabHeaders.get(1).getAttribute("class") + .contains("v-tabsheet-tabitemcell-selected")); + } + +} |