Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: pkg/custom_element/test/custom_element_test.dart

Issue 20886002: add custom_element package (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: remove unused dev dep Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library custom_element.test.custom_element_test;
6
7 import 'dart:async';
8 import 'dart:html';
9 import 'package:custom_element/custom_element.dart';
10 import 'package:unittest/html_config.dart';
11 import 'package:unittest/unittest.dart';
12
13 main() {
14 useHtmlConfiguration();
15
16 test('register creates the element and calls lifecycle methods', () {
17 // Add element to the page.
18 var element = new Element.html('<fancy-button>foo bar</fancy-button>');
19 document.body.nodes.add(element);
20
21 var xtag = null;
22 registerCustomElement('fancy-button', () => xtag = new FancyButton());
23 expect(xtag, isNotNull, reason: 'FancyButton was created');
24 expect(element.xtag, xtag, reason: 'xtag pointer should be set');
25 expect(xtag.host, element, reason: 'host pointer should be set');
26 expect(xtag.lifecycle, ['created']);
27 return new Future(() {
28 expect(xtag.lifecycle, ['created', 'inserted']);
29 element.remove();
30 return new Future(() {
31 expect(xtag.lifecycle, ['created', 'inserted', 'removed']);
32 });
33 });
34 });
35 }
36
37 class FancyButton extends CustomElement {
38 final lifecycle = [];
39 created() {
40 super.created();
41 lifecycle.add('created');
42 }
43 inserted() {
44 super.inserted();
45 lifecycle.add('inserted');
46 }
47 removed() {
48 super.removed();
49 lifecycle.add('removed');
50 }
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698