summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorDenis Anisimov <denis@vaadin.com>2014-11-08 12:47:05 +0200
committerSauli Tähkäpää <sauli@vaadin.com>2014-11-28 12:16:43 +0200
commit860884a469968f07ec2994f6f967d6748360aa62 (patch)
tree304399ade7d937a9e5423858a3fe7ab3bb7f050d /uitest
parent826e5ec7ee80fca1068333c3360eb83442386074 (diff)
downloadvaadin-framework-860884a469968f07ec2994f6f967d6748360aa62.tar.gz
vaadin-framework-860884a469968f07ec2994f6f967d6748360aa62.zip
Set v-bevel to 'false' should unset 'v-textfield-bevel' value (#14634).
Change-Id: Ia3598b9bcef280bef38daa189ab3c7885e5d535a
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/themes/valo/TextFieldBevel.java52
-rw-r--r--uitest/src/com/vaadin/tests/themes/valo/TextFieldBevelTest.java59
2 files changed, 111 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/themes/valo/TextFieldBevel.java b/uitest/src/com/vaadin/tests/themes/valo/TextFieldBevel.java
new file mode 100644
index 0000000000..4e1debc5b6
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/themes/valo/TextFieldBevel.java
@@ -0,0 +1,52 @@
+/*
+ * 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.themes.valo;
+
+import com.vaadin.annotations.Theme;
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.tests.components.AbstractTestUI;
+import com.vaadin.ui.TextField;
+
+/**
+ * Test UI for $v-textfield-bevel value in TextField component.
+ *
+ * @author Vaadin Ltd
+ */
+@Theme("tests-valo-textfield-bevel")
+public class TextFieldBevel extends AbstractTestUI {
+
+ @Override
+ protected void setup(VaadinRequest request) {
+ TextField field = new TextField();
+ addComponent(field);
+ }
+
+ @Override
+ protected Integer getTicketNumber() {
+ return 14634;
+ }
+
+ @Override
+ protected String getTestDescription() {
+ return "Set v-bevel to 'false' should unset 'v-textfield-bevel' value.";
+ }
+
+ @Theme("valo")
+ public static class ValoDefaultTextFieldBevel extends TextFieldBevel {
+
+ }
+
+}
diff --git a/uitest/src/com/vaadin/tests/themes/valo/TextFieldBevelTest.java b/uitest/src/com/vaadin/tests/themes/valo/TextFieldBevelTest.java
new file mode 100644
index 0000000000..ee2cdd41f8
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/themes/valo/TextFieldBevelTest.java
@@ -0,0 +1,59 @@
+/*
+ * 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.themes.valo;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+import com.vaadin.testbench.elements.TextFieldElement;
+import com.vaadin.tests.tb3.MultiBrowserTest;
+
+/**
+ * Test for $v-textfield-bevel value when $v-bevel is unset.
+ *
+ * @author Vaadin Ltd
+ */
+public class TextFieldBevelTest extends MultiBrowserTest {
+
+ @Test
+ public void testTextFieldBevel() {
+ String url = getTestUrl();
+ StringBuilder defaultValoUi = new StringBuilder(
+ TextFieldBevel.class.getSimpleName());
+ defaultValoUi.append('$');
+ defaultValoUi.append(TextFieldBevel.ValoDefaultTextFieldBevel.class
+ .getSimpleName());
+ url = url.replace(TextFieldBevel.class.getSimpleName(),
+ defaultValoUi.toString());
+ getDriver().get(url);
+
+ String defaultBoxShadow = $(TextFieldElement.class).first()
+ .getCssValue("box-shadow");
+
+ if (url.contains("restartApplication")) {
+ openTestURL();
+ } else {
+ openTestURL("restartApplication");
+ }
+
+ String boxShadow = $(TextFieldElement.class).first().getCssValue(
+ "box-shadow");
+
+ Assert.assertNotEquals(
+ "Set v-bevel to 'false' doesn't affect 'v-textfield-bevel' value",
+ defaultBoxShadow, boxShadow);
+ }
+}