]> source.dussan.org Git - vaadin-framework.git/commitdiff
DefaultTextRenderer shows nulls as empty strings (#13334)
authorHenrik Paul <henrik@vaadin.com>
Fri, 19 Dec 2014 11:39:17 +0000 (13:39 +0200)
committerVaadin Code Review <review@vaadin.com>
Fri, 19 Dec 2014 13:59:00 +0000 (13:59 +0000)
Change-Id: I1fa88cbbb946b932a2a453392a50aff91c36671b

client/src/com/vaadin/client/widgets/Grid.java
uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridDefaultTextRenderer.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridDefaultTextRendererTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/widgetset/client/grid/GridDefaultTextRendererWidget.java [new file with mode: 0644]

index 63070dcd92adf39904299aac01a9cc897fb58a6e..a5b90e55636afc4f5e3d57b03b1eb9e7a29e2705 100644 (file)
@@ -2519,7 +2519,15 @@ public class Grid<T> extends ResizeComposite implements
                                     + DEFAULT_RENDERER_WARNING);
                     warned = true;
                 }
-                cell.getElement().setInnerText(data.toString());
+
+                final String text;
+                if (data == null) {
+                    text = "";
+                } else {
+                    text = data.toString();
+                }
+
+                cell.getElement().setInnerText(text);
             }
         }
 
diff --git a/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridDefaultTextRenderer.java b/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridDefaultTextRenderer.java
new file mode 100644 (file)
index 0000000..5c4ccfa
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * 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.basicfeatures;
+
+import com.vaadin.annotations.Widgetset;
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.tests.widgetset.TestingWidgetSet;
+import com.vaadin.tests.widgetset.client.grid.GridDefaultTextRendererWidget;
+import com.vaadin.tests.widgetset.server.TestWidgetComponent;
+import com.vaadin.ui.UI;
+
+@Widgetset(TestingWidgetSet.NAME)
+public class GridDefaultTextRenderer extends UI {
+
+    @Override
+    protected void init(VaadinRequest request) {
+        setContent(new TestWidgetComponent(GridDefaultTextRendererWidget.class));
+    }
+}
diff --git a/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridDefaultTextRendererTest.java b/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridDefaultTextRendererTest.java
new file mode 100644 (file)
index 0000000..cd31bfc
--- /dev/null
@@ -0,0 +1,60 @@
+/*
+ * 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.basicfeatures;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Before;
+import org.junit.Test;
+
+import com.vaadin.testbench.elements.GridElement;
+import com.vaadin.testbench.elements.NotificationElement;
+import com.vaadin.testbench.elements.ServerClass;
+import com.vaadin.tests.annotations.TestCategory;
+import com.vaadin.tests.tb3.MultiBrowserTest;
+
+@TestCategory("grid")
+public class GridDefaultTextRendererTest extends MultiBrowserTest {
+
+    @ServerClass("com.vaadin.tests.widgetset.server.TestWidgetComponent")
+    public static class MyGridElement extends GridElement {
+        // empty
+    }
+
+    private GridElement grid;
+
+    @Before
+    public void init() {
+        openTestURL();
+        grid = $(MyGridElement.class).first();
+        assertFalse("There was an unexpected notification during init",
+                $(NotificationElement.class).exists());
+    }
+
+    @Test
+    public void testNullIsRenderedAsEmptyStringByDefaultTextRenderer() {
+        assertTrue("First cell should've been empty", grid.getCell(0, 0)
+                .getText().isEmpty());
+    }
+
+    @Test
+    public void testStringIsRenderedAsStringByDefaultTextRenderer() {
+        assertEquals("Second cell should've been populated ", "string", grid
+                .getCell(1, 0).getText());
+    }
+}
diff --git a/uitest/src/com/vaadin/tests/widgetset/client/grid/GridDefaultTextRendererWidget.java b/uitest/src/com/vaadin/tests/widgetset/client/grid/GridDefaultTextRendererWidget.java
new file mode 100644 (file)
index 0000000..173ae09
--- /dev/null
@@ -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.widgetset.client.grid;
+
+import com.vaadin.client.widget.grid.datasources.ListDataSource;
+import com.vaadin.client.widgets.Grid;
+import com.vaadin.client.widgets.Grid.Column;
+import com.vaadin.client.widgets.Grid.SelectionMode;
+import com.vaadin.shared.ui.grid.HeightMode;
+
+public class GridDefaultTextRendererWidget extends
+        PureGWTTestApplication<Grid<String>> {
+    /*
+     * This can't be null, because grid thinks that a row object of null means
+     * "data is still being fetched".
+     */
+    private static final String NULL_STRING = "";
+
+    private Grid<String> grid;
+
+    public GridDefaultTextRendererWidget() {
+        super(new Grid<String>());
+        grid = getTestedWidget();
+
+        grid.setDataSource(new ListDataSource<String>(NULL_STRING, "string"));
+        grid.addColumn(new Column<String, String>() {
+            @Override
+            public String getValue(String row) {
+                if (!NULL_STRING.equals(row)) {
+                    return row;
+                } else {
+                    return null;
+                }
+            }
+        });
+
+        grid.setHeightByRows(2);
+        grid.setHeightMode(HeightMode.ROW);
+        grid.setSelectionMode(SelectionMode.NONE);
+        addNorth(grid, 500);
+    }
+
+}