OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library polymer.test.web.events_test; | 5 library polymer.test.web.events_test; |
6 | 6 |
7 import 'dart:html'; | 7 import 'dart:html'; |
8 import 'package:polymer/polymer.dart'; | 8 import 'package:polymer/polymer.dart'; |
9 import 'package:unittest/html_config.dart'; | 9 import 'package:unittest/html_config.dart'; |
10 import 'package:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 | 46 |
47 main() { | 47 main() { |
48 initPolymer(); | 48 initPolymer(); |
49 useHtmlConfiguration(); | 49 useHtmlConfiguration(); |
50 | 50 |
51 setUp(() => Polymer.onReady); | 51 setUp(() => Polymer.onReady); |
52 | 52 |
53 test('host event', () { | 53 test('host event', () { |
54 // Note: this test is currently the only event in | 54 // Note: this test is currently the only event in |
55 // polymer/test/js/events.js at commit #7936ff8 | 55 // polymer/test/js/events.js at commit #7936ff8 |
56 var testA = query('#a'); | 56 var testA = querySelector('#a'); |
57 expect(testA.clicks, isEmpty); | 57 expect(testA.clicks, isEmpty); |
58 testA.click(); | 58 testA.click(); |
59 expect(testA.clicks, ['host click on: test-a (id a)']); | 59 expect(testA.clicks, ['host click on: test-a (id a)']); |
60 }); | 60 }); |
61 | 61 |
62 test('local event', () { | 62 test('local event', () { |
63 var testB = query('#b'); | 63 var testB = querySelector('#b'); |
64 expect(testB.clicks, isEmpty); | 64 expect(testB.clicks, isEmpty); |
65 testB.click(); | 65 testB.click(); |
66 expect(testB.clicks, []); | 66 expect(testB.clicks, []); |
67 var b1 = testB.shadowRoot.query('#b-1'); | 67 var b1 = testB.shadowRoot.querySelector('#b-1'); |
68 b1.click(); | 68 b1.click(); |
69 expect(testB.clicks, []); | 69 expect(testB.clicks, []); |
70 var b2 = testB.shadowRoot.query('#b-2'); | 70 var b2 = testB.shadowRoot.querySelector('#b-2'); |
71 b2.click(); | 71 b2.click(); |
72 expect(testB.clicks, ['local click under test-b (id b) on b-2']); | 72 expect(testB.clicks, ['local click under test-b (id b) on b-2']); |
73 }); | 73 }); |
74 | 74 |
75 test('event on superclass', () { | 75 test('event on superclass', () { |
76 var testC = query('#c'); | 76 var testC = querySelector('#c'); |
77 expect(testC.clicks, isEmpty); | 77 expect(testC.clicks, isEmpty); |
78 testC.click(); | 78 testC.click(); |
79 expect(testC.clicks, []); | 79 expect(testC.clicks, []); |
80 var c1 = testC.shadowRoot.query('#c-1'); | 80 var c1 = testC.shadowRoot.querySelector('#c-1'); |
81 c1.click(); | 81 c1.click(); |
82 expect(testC.clicks, []); | 82 expect(testC.clicks, []); |
83 var c2 = testC.shadowRoot.query('#c-2'); | 83 var c2 = testC.shadowRoot.querySelector('#c-2'); |
84 c2.click(); | 84 c2.click(); |
85 expect(testC.clicks, ['local click under test-c (id c) on c-2']); | 85 expect(testC.clicks, ['local click under test-c (id c) on c-2']); |
86 }); | 86 }); |
87 } | 87 } |
OLD | NEW |