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

Unified Diff: runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart
diff --git a/runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart b/runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e6b3bc2552dc3fac29f4a995dad198c58e248b94
--- /dev/null
+++ b/runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart
@@ -0,0 +1,67 @@
+// Copyright (c) 2016, 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.
+import 'dart:html';
+import 'dart:async';
+import 'package:unittest/unittest.dart';
+import 'package:observatory/models.dart';
+import 'package:observatory/mocks.dart';
+import 'package:observatory/src/elements/nav/notify_exception.dart';
+
+main() {
+ NavNotifyExceptionElement.tag.ensureRegistration();
+
+ final ConnectionException exception =
+ new ConnectionExceptionMock(message: 'message');
+ test('instantiation', () {
+ final NavNotifyExceptionElement e =
+ new NavNotifyExceptionElement(exception);
+ expect(e, isNotNull, reason: 'element correctly created');
+ });
+ test('elements created after attachment', () async {
+ final NavNotifyExceptionElement e =
+ new NavNotifyExceptionElement(exception);
+ document.body.append(e);
+ await e.onRendered.first;
+ expect(e.children.length, isNonZero, reason: 'has elements');
+ e.remove();
+ await e.onRendered.first;
+ expect(e.children.length, isZero, reason: 'is empty');
+ });
+ group('events are fired', () {
+ NavNotifyExceptionElement e;
+ StreamSubscription sub;
+ setUp(() async {
+ e = new NavNotifyExceptionElement(exception);
+ document.body.append(e);
+ await e.onRendered.first;
+ });
+ tearDown(() {
+ sub.cancel();
+ e.remove();
+ });
+ test('navigation after connect', () async {
+ sub = window.onPopState.listen(expectAsync((_) {}, count: 1,
+ reason: 'event is fired'));
+ e.querySelector('a').click();
+ });
+ test('onDelete events (DOM)', () async {
+ sub = e.onDelete.listen(expectAsync((ExceptionDeleteEvent event) {
+ expect(event, isNotNull, reason: 'event is passed');
+ expect(event.exception, equals(exception),
+ reason: 'exception is the same');
+ expect(event.stacktrace, isNull);
+ }, count: 1, reason: 'event is fired'));
+ e.querySelector('button').click();
+ });
+ test('onDelete events (code)', () async {
+ sub = e.onDelete.listen(expectAsync((ExceptionDeleteEvent event) {
+ expect(event, isNotNull, reason: 'event is passed');
+ expect(event.exception, equals(exception),
+ reason: 'exception is the same');
+ expect(event.stacktrace, isNull);
+ }, count: 1, reason: 'event is fired'));
+ e.delete();
+ });
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698