OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2016, 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 import 'dart:html'; |
| 5 import 'package:unittest/unittest.dart'; |
| 6 import 'package:observatory/src/elements/class_tree.dart'; |
| 7 import 'package:observatory/src/elements/nav/notify.dart'; |
| 8 import '../mocks.dart'; |
| 9 |
| 10 main() { |
| 11 ClassTreeElement.tag.ensureRegistration(); |
| 12 |
| 13 final nTag = NavNotifyElement.tag.name; |
| 14 const vm = const VMMock(); |
| 15 const isolate = const IsolateRefMock(); |
| 16 final events = new EventRepositoryMock(); |
| 17 final notifications = new NotificationRepositoryMock(); |
| 18 |
| 19 group('instantiation', () { |
| 20 test('default', () { |
| 21 final e = new ClassTreeElement(vm, isolate, events, notifications, |
| 22 new ClassRepositoryMock()); |
| 23 expect(e, isNotNull, reason: 'element correctly created'); |
| 24 }); |
| 25 }); |
| 26 group('elements', () { |
| 27 test('created after attachment', () async { |
| 28 const child2_id = 'c2-id'; |
| 29 const child1_1_id = 'c1_1-id'; |
| 30 const child1_id = 'c1-id'; |
| 31 const child2 = const ClassMock(id: child2_id); |
| 32 const child1_1 = const ClassMock(id: child1_1_id); |
| 33 const child1 = const ClassMock(id: child1_id, |
| 34 subclasses: const [child1_1]); |
| 35 const object = const ClassMock(id: 'o-id', |
| 36 subclasses: const [child1, child2]); |
| 37 const ids = const [child1_id, child1_1_id, child2_id]; |
| 38 bool rendered = false; |
| 39 final e = new ClassTreeElement(vm, isolate, events, notifications, |
| 40 new ClassRepositoryMock( |
| 41 object: expectAsync(() async { |
| 42 expect(rendered, isFalse); |
| 43 return object; |
| 44 }, count: 1), |
| 45 getter: expectAsync((id) async { |
| 46 expect(ids.contains(id), isTrue); |
| 47 switch (id) { |
| 48 case child1_id: return child1; |
| 49 case child1_1_id: return child1_1; |
| 50 case child2_id: return child2; |
| 51 default: return null; |
| 52 } |
| 53 }, count: 3))); |
| 54 document.body.append(e); |
| 55 await e.onRendered.first; |
| 56 rendered = true; |
| 57 expect(e.children.length, isNonZero, reason: 'has elements'); |
| 58 expect(e.querySelectorAll(nTag).length, equals(1)); |
| 59 e.remove(); |
| 60 await e.onRendered.first; |
| 61 expect(e.children.length, isZero, reason: 'is empty'); |
| 62 }); |
| 63 }); |
| 64 } |
OLD | NEW |