diff options
author | Mika Murtojarvi <mika@vaadin.com> | 2015-04-27 17:42:32 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-05-05 10:29:26 +0000 |
commit | a4544124c5f8fa70a70dfdf7dd4f511f53094069 (patch) | |
tree | f68104fca0ddb461ba055f99e5d94811ea726531 /uitest | |
parent | 744d04f796522a12f5b5f925e39433afbb2cb2e0 (diff) | |
download | vaadin-framework-a4544124c5f8fa70a70dfdf7dd4f511f53094069.tar.gz vaadin-framework-a4544124c5f8fa70a70dfdf7dd4f511f53094069.zip |
Fix the updating of sort indicators (#17440)
Change-Id: I0f8aa598b6e133a5cc128777cb6f1950dc6666c7
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/grid/GridSortIndicator.java | 95 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/components/grid/GridSortIndicatorTest.java | 51 |
2 files changed, 146 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/GridSortIndicator.java b/uitest/src/com/vaadin/tests/components/grid/GridSortIndicator.java new file mode 100644 index 0000000000..a05365d575 --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/grid/GridSortIndicator.java @@ -0,0 +1,95 @@ +/* + * 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 java.util.ArrayList; +import java.util.List; + +import com.vaadin.data.sort.SortOrder; +import com.vaadin.event.SortEvent; +import com.vaadin.event.SortEvent.SortListener; +import com.vaadin.server.VaadinRequest; +import com.vaadin.shared.data.sort.SortDirection; +import com.vaadin.tests.components.AbstractTestUI; +import com.vaadin.ui.Grid; + +/* + * Test UI for checking that sort indicators of a Grid are updated when the sort order is changed by a + * SortListener. + */ +public class GridSortIndicator extends AbstractTestUI { + + @Override + protected void setup(VaadinRequest request) { + final Grid g = getGrid(); + addComponent(g); + g.addSortListener(new SortListener() { + private SortDirection oldSortDirection = null; + + @Override + public void sort(SortEvent event) { + List<SortOrder> currentSortOrder = new ArrayList<SortOrder>( + event.getSortOrder()); + if (currentSortOrder.size() == 1) { + // If the name column was clicked, set a new sort order for + // both columns. Otherwise, revert to oldSortDirection if it + // is not null. + List<SortOrder> newSortOrder = new ArrayList<SortOrder>(); + SortDirection newSortDirection = oldSortDirection; + if (currentSortOrder.get(0).getPropertyId().equals("Name")) { + newSortDirection = SortDirection.ASCENDING + .equals(oldSortDirection) ? SortDirection.DESCENDING + : SortDirection.ASCENDING; + } + if (newSortDirection != null) { + newSortOrder + .add(new SortOrder("Name", newSortDirection)); + newSortOrder.add(new SortOrder("Value", + newSortDirection)); + g.setSortOrder(newSortOrder); + } + oldSortDirection = newSortDirection; + } + } + }); + } + + private final Grid getGrid() { + Grid g = new Grid(); + g.addColumn("Name"); + g.addColumn("Value", Integer.class); + g.addRow(new Object[] { "a", 4 }); + g.addRow(new Object[] { "b", 5 }); + g.addRow(new Object[] { "c", 3 }); + g.addRow(new Object[] { "a", 6 }); + g.addRow(new Object[] { "a", 2 }); + g.addRow(new Object[] { "c", 7 }); + g.addRow(new Object[] { "b", 1 }); + return g; + } + + @Override + public String getTestDescription() { + return "When the first column is the primary sort column, both columns should have " + + "a sort indicator with the same sort direction. Clicking on the right column " + + "in that state should have no effect."; + } + + @Override + public Integer getTicketNumber() { + return 17440; + } +} diff --git a/uitest/src/com/vaadin/tests/components/grid/GridSortIndicatorTest.java b/uitest/src/com/vaadin/tests/components/grid/GridSortIndicatorTest.java new file mode 100644 index 0000000000..30ce7b76f9 --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/grid/GridSortIndicatorTest.java @@ -0,0 +1,51 @@ +/* + * 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.assertTrue; + +import org.junit.Test; + +import com.vaadin.testbench.elements.GridElement; +import com.vaadin.tests.tb3.MultiBrowserTest; + +public class GridSortIndicatorTest extends MultiBrowserTest { + + @Test + public void testIndicators() throws InterruptedException { + openTestURL(); + GridElement grid = $(GridElement.class).first(); + // Clicking the left header cell should set ascending sort order for + // both columns. + grid.getHeaderCell(0, 0).click(); + assertTrue(grid.getHeaderCell(0, 0).getAttribute("class") + .contains("sort-asc")); + assertTrue(grid.getHeaderCell(0, 1).getAttribute("class") + .contains("sort-asc")); + // Click the left column to change the sort direction. + grid.getHeaderCell(0, 0).click(); + assertTrue(grid.getHeaderCell(0, 0).getAttribute("class") + .contains("sort-desc")); + assertTrue(grid.getHeaderCell(0, 1).getAttribute("class") + .contains("sort-desc")); + // Clicking on the right column should have no effect. + grid.getHeaderCell(0, 1).click(); + assertTrue(grid.getHeaderCell(0, 0).getAttribute("class") + .contains("sort-desc")); + assertTrue(grid.getHeaderCell(0, 1).getAttribute("class") + .contains("sort-desc")); + } +}
\ No newline at end of file |