summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2015-06-08 17:21:58 +0300
committerVaadin Code Review <review@vaadin.com>2015-06-09 10:56:26 +0000
commit5ebfdecb1b4eb016b674f7a01257959a50047eb3 (patch)
treeb55f79890aac42697ac765111a1cc041cd7ce50c /uitest
parent1eba7f023bf534c8dd5d508ef5f9a5970af67885 (diff)
downloadvaadin-framework-5ebfdecb1b4eb016b674f7a01257959a50047eb3.tar.gz
vaadin-framework-5ebfdecb1b4eb016b674f7a01257959a50047eb3.zip
Better handle exceptions when opening Grid editor (#17935)
Change-Id: I68103db75c422b042988c6662da268ff9d11a306
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/components/grid/GridEditorConverterNotFound.java56
-rw-r--r--uitest/src/com/vaadin/tests/components/grid/GridEditorConverterNotFoundTest.java42
2 files changed, 98 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/GridEditorConverterNotFound.java b/uitest/src/com/vaadin/tests/components/grid/GridEditorConverterNotFound.java
new file mode 100644
index 0000000000..e5532b10ad
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/components/grid/GridEditorConverterNotFound.java
@@ -0,0 +1,56 @@
+/*
+ * 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.grid;
+
+import com.vaadin.server.ErrorHandler;
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.tests.components.AbstractTestUIWithLog;
+import com.vaadin.ui.Grid;
+
+public class GridEditorConverterNotFound extends AbstractTestUIWithLog {
+
+ class Foo {
+ }
+
+ @Override
+ protected void setup(VaadinRequest request) {
+
+ Grid grid = new Grid();
+
+ grid.addColumn("foo", Foo.class);
+ grid.addRow(new Foo());
+ grid.setEditorEnabled(true);
+ grid.setErrorHandler(new ErrorHandler() {
+
+ @Override
+ public void error(com.vaadin.server.ErrorEvent event) {
+ log(event.getThrowable().toString());
+ }
+ });
+
+ addComponent(grid);
+ }
+
+ @Override
+ protected Integer getTicketNumber() {
+ return 17935;
+ }
+
+ @Override
+ protected String getTestDescription() {
+ return "Grid should gracefully handle bind failures when opening editor";
+ }
+}
diff --git a/uitest/src/com/vaadin/tests/components/grid/GridEditorConverterNotFoundTest.java b/uitest/src/com/vaadin/tests/components/grid/GridEditorConverterNotFoundTest.java
new file mode 100644
index 0000000000..468ea8da3a
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/components/grid/GridEditorConverterNotFoundTest.java
@@ -0,0 +1,42 @@
+/*
+ * 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.grid;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.Test;
+
+import com.vaadin.testbench.elements.GridElement;
+import com.vaadin.tests.components.grid.basicfeatures.GridBasicFeaturesTest;
+
+public class GridEditorConverterNotFoundTest extends GridBasicFeaturesTest {
+
+ @Override
+ protected Class<?> getUIClass() {
+ // Use the correct UI with helpers from GridBasicFeatures
+ return GridEditorConverterNotFound.class;
+ }
+
+ @Test
+ public void testConverterNotFound() {
+ openTestURL();
+
+ $(GridElement.class).first().getCell(0, 0).doubleClick();
+
+ assertEquals("1. com.vaadin.data.Buffered$SourceException",
+ getLogRow(0));
+ }
+}