Index: client/tests/client/layout/GridLayoutTests.dart |
diff --git a/client/tests/client/layout/GridLayoutTests.dart b/client/tests/client/layout/GridLayoutTests.dart |
deleted file mode 100644 |
index 27aabe12c481a523c8989f282e552a55d0b0d686..0000000000000000000000000000000000000000 |
--- a/client/tests/client/layout/GridLayoutTests.dart |
+++ /dev/null |
@@ -1,196 +0,0 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
- |
-// TODO(jmesserly): these tests would be easier to work with if they were WebKit |
-// layout tests. The way DumpRenderTree works is exactly what we want for |
-// testing layout: run the example and then print the element tree with metrics. |
-// The UnitTestSuite wrapper gets in our way here, because you can't "see" the |
-// test layout visually when you're debugging. |
-// See these links for more info: |
-// http://www.webkit.org/quality/testwriting.html |
-// http://www.w3.org/Style/CSS/Test/guidelines.html |
- |
-// TODO(jmesserly): need parser unit tests, especially error conditions |
- |
-/** |
- * Tests the grid layout. Currently based on examples from the spec at: |
- * [http://dev.w3.org/csswg/css3-grid-align/] |
- */ |
-class GridLayoutTests extends UnitTestSuite { |
- |
- GridLayoutTests() : super() { |
- } |
- |
- static void main() { |
- new GridLayoutTests().run(); |
- } |
- |
- void setUpTestSuite() { |
- addGridStyles('400px', '400px'); |
- |
- addTest(testSpecExample1); |
- addTest(testSpecExample2a); |
- addTest(testSpecExample2b); |
- addTest(testSpecExample3); |
- addTest(testSpecExample5); |
- addTest(testSpecExample6); |
- addTest(testSpecExample7); |
- addTest(testSpecExample11a); |
- addTest(testSpecExample11b); |
- addTest(testSpecExample12); |
- addTest(testSpecExample17); |
- addTest(testSpecExample20); |
- addTest(testSpecExample22); |
- addTest(testSpecExample23); |
- } |
- |
- // Note: to debug failures, best bet is to use GridLayoutDemo to run an |
- // individual test and see the resulting layout. |
- |
- void usingGrid(String example, void test(View grid)) { |
- final grid = createGrid(GridExamples.styles[example]); |
- try { |
- grid.addToDocument(document.body); |
- test(grid); |
- } finally { |
- grid.removeFromDocument(); |
- } |
- } |
- |
- void verifyGrid(String example, [Map expected = null]) { |
- printMetrics(example); |
- if (expected == null) { |
- return; |
- } |
- |
- for (String name in expected.getKeys()) { |
- final values = expected[name]; |
- final node = document.body.query('#$name'); |
- Expect.isNotNull(node); |
- Expect.equals(values[0], node.offsetLeft); |
- Expect.equals(values[1], node.offsetTop); |
- Expect.equals(values[2], node.offsetWidth); |
- Expect.equals(values[3], node.offsetHeight); |
- } |
- } |
- |
- void verifyExample(String example, [Map expected = null]) { |
- usingGrid(example, (grid) => verifyGrid(example, expected)); |
- } |
- |
- void testSpecExample1() { |
- verifyExample('1 Adaptive Layouts', { |
- 'title': [0, 0, 144, 24], |
- 'score': [0, 376, 144, 24], |
- 'stats': [0, 24, 144, 24], |
- 'board': [144, 0, 256, 376], |
- 'controls': [185, 376, 174, 24], |
- }); |
- } |
- |
- void testSpecExample2a() { |
- verifyExample('2a Source Independence: Portrait', { |
- 'title': [0, 0, 144, 24], |
- 'score': [0, 24, 144, 24], |
- 'stats': [144, 0, 256, 48], |
- 'board': [0, 48, 400, 328], |
- 'controls': [0, 376, 400, 24], |
- }); |
- } |
- |
- void testSpecExample2b() { |
- verifyExample('2b Source Independence: Landscape', { |
- 'title': [0, 0, 144, 24], |
- 'score': [0, 376, 144, 24], |
- 'stats': [0, 24, 144, 352], |
- 'board': [144, 0, 256, 376], |
- 'controls': [144, 376, 256, 24], |
- }); |
- } |
- |
- void testSpecExample3() { |
- verifyExample('3 Grid Layering of Elements', { |
- 'lower-label': [0, 0, 204, 24], |
- 'track': [204, 0, 144, 24], |
- 'upper-label': [348, 0, 204, 24], |
- 'lower-fill': [204, 0, 72, 24], |
- 'upper-fill': [276, 0, 72, 24], |
- 'thumb': [204, 0, 144, 24], |
- }); |
- } |
- |
- void testSpecExample5() { |
- verifyExample('5 Grid Lines', { |
- 'item1': [125, 0, 275, 400], |
- }); |
- } |
- |
- void testSpecExample6() { |
- verifyExample('6 Grid Lines', { |
- 'item1': [125, 0, 275, 400], |
- }); |
- } |
- |
- void testSpecExample7() { |
- verifyExample('7 Grid Cells', { |
- 'item2': [0, 50, 125, 24], |
- 'item3': [-19, 326, 144, 24], |
- }); |
- } |
- |
- void testSpecExample11a() { |
- verifyExample('11a Starting and Ending Grid Lines', { |
- 'item': [0, 0, 400, 400], |
- }); |
- } |
- |
- void testSpecExample11b() { |
- verifyExample('11b Starting and Ending Grid Lines', { |
- 'item': [0, 0, 400, 400], |
- }); |
- } |
- |
- void testSpecExample12() { |
- verifyExample('12 Repeating Columns and Rows', { |
- 'col2': [10, 0, 88, 400], |
- 'col4': [108, 0, 87, 400], |
- 'col6': [205, 0, 88, 400], |
- 'col8': [303, 0, 87, 400], |
- }); |
- } |
- |
- void testSpecExample17() { |
- verifyExample('17 Anonymous Grid Cells', { |
- 'header': [0, 0, 400, 24], |
- 'main': [0, 24, 400, 352], |
- 'footer': [0, 376, 400, 24], |
- }); |
- } |
- |
- void testSpecExample20() { |
- verifyExample('20 Implicit Columns and Rows', { |
- 'A': [0, 0, 104, 24], |
- 'B': [104, 0, 104, 44], |
- 'C': [0, 20, 104, 24], |
- }); |
- } |
- |
- void testSpecExample22() { |
- verifyExample('22 Grid Item Alignment', { |
- 'A': [0, 0, 104, 24], |
- 'B': [296, 376, 104, 24], |
- }); |
- } |
- |
- void testSpecExample23() { |
- verifyExample('23 Drawing Order of Grid Items', { |
- 'A': [0, 376, 400, 24], |
- 'B': [0, 0, 200, 200], |
- 'C': [200, 0, 200, 24], |
- 'D': [296, 200, 104, 24], |
- 'E': [148, 188, 104, 24], |
- }); |
- } |
-} |
- |