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.custom_event_test; | 5 library polymer.test.web.custom_event_test; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:html'; | 8 import 'dart:html'; |
9 import 'package:polymer/polymer.dart'; | 9 import 'package:polymer/polymer.dart'; |
10 import 'package:template_binding/template_binding.dart' show nodeBind; | 10 import 'package:template_binding/template_binding.dart' show nodeBind; |
(...skipping 24 matching lines...) Expand all Loading... | |
35 class TestCustomEvent extends PolymerElement { | 35 class TestCustomEvent extends PolymerElement { |
36 TestCustomEvent.created() : super.created(); | 36 TestCustomEvent.created() : super.created(); |
37 | 37 |
38 get fooBar => getShadowRoot('test-custom-event').querySelector('foo-bar'); | 38 get fooBar => getShadowRoot('test-custom-event').querySelector('foo-bar'); |
39 | 39 |
40 final events = []; | 40 final events = []; |
41 fooHandler(e) => events.add(['foo', e]); | 41 fooHandler(e) => events.add(['foo', e]); |
42 barBazHandler(e) => events.add(['barbaz', e]); | 42 barBazHandler(e) => events.add(['barbaz', e]); |
43 } | 43 } |
44 | 44 |
45 @initMethod | |
46 main() { | 45 main() { |
46 initPolymer(); | |
Jennifer Messerly
2014/05/23 07:20:06
I wonder if this should use the initPolymer.run(..
Siggi Cherem (dart-lang)
2014/05/23 17:56:33
Done.
| |
47 useHtmlConfiguration(); | 47 useHtmlConfiguration(); |
48 | 48 |
49 setUp(() => Polymer.onReady); | 49 setUp(() => Polymer.onReady); |
50 | 50 |
51 test('custom event', () { | 51 test('custom event', () { |
52 final testComp = querySelector('test-custom-event'); | 52 final testComp = querySelector('test-custom-event'); |
53 final fooBar = testComp.fooBar; | 53 final fooBar = testComp.fooBar; |
54 | 54 |
55 final binding = nodeBind(fooBar).bindings['on-barbaz']; | 55 final binding = nodeBind(fooBar).bindings['on-barbaz']; |
56 expect(binding is Bindable, true, | 56 expect(binding is Bindable, true, |
57 reason: 'on-barbaz event should be bound'); | 57 reason: 'on-barbaz event should be bound'); |
58 | 58 |
59 expect(binding.value, null, reason: 'event bindings do not have value'); | 59 expect(binding.value, null, reason: 'event bindings do not have value'); |
60 | 60 |
61 fooBar.fireFoo(123); | 61 fooBar.fireFoo(123); |
62 fooBar.fireBarBaz(42); | 62 fooBar.fireBarBaz(42); |
63 fooBar.fireFoo(777); | 63 fooBar.fireFoo(777); |
64 | 64 |
65 final events = testComp.events; | 65 final events = testComp.events; |
66 expect(events.length, 3); | 66 expect(events.length, 3); |
67 expect(events.map((e) => e[0]), ['foo', 'barbaz', 'foo']); | 67 expect(events.map((e) => e[0]), ['foo', 'barbaz', 'foo']); |
68 expect(events.map((e) => e[1].detail), [123, 42, 777]); | 68 expect(events.map((e) => e[1].detail), [123, 42, 777]); |
69 }); | 69 }); |
70 } | 70 } |
OLD | NEW |