You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GridSubPixelProblemWrappingTest.java 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright 2000-2016 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.tests.components.grid;
  17. import org.junit.Assert;
  18. import org.junit.Test;
  19. import com.vaadin.testbench.elements.ButtonElement;
  20. import com.vaadin.testbench.elements.GridElement;
  21. import com.vaadin.testbench.elements.GridElement.GridRowElement;
  22. import com.vaadin.testbench.parallel.TestCategory;
  23. import com.vaadin.tests.tb3.MultiBrowserTest;
  24. @TestCategory("grid")
  25. public class GridSubPixelProblemWrappingTest extends MultiBrowserTest {
  26. @Test
  27. public void addedRowShouldNotWrap() {
  28. openTestURL();
  29. GridElement grid = $(LegacyGridElement.class).first();
  30. // Cells in first row should be at the same y coordinate as the row
  31. assertRowAndCellTops(grid, 0);
  32. // Add a row
  33. $(ButtonElement.class).first().click();
  34. // Cells in the first row should be at the same y coordinate as the row
  35. assertRowAndCellTops(grid, 0);
  36. // Cells in the second row should be at the same y coordinate as the row
  37. assertRowAndCellTops(grid, 1);
  38. }
  39. private void assertRowAndCellTops(GridElement grid, int rowIndex) {
  40. GridRowElement row = grid.getRow(rowIndex);
  41. int rowTop = row.getLocation().y;
  42. int cell0Top = grid.getCell(rowIndex, 0).getLocation().y;
  43. int cell1Top = grid.getCell(rowIndex, 1).getLocation().y;
  44. Assert.assertEquals(rowTop, cell0Top);
  45. Assert.assertEquals(rowTop, cell1Top);
  46. }
  47. }