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

Unified Diff: runtime/observatory/tests/observatory_ui/stack_trace_tree_config/element_test.dart

Issue 2204563003: Converted Observatory cpu-profile element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merged with master Created 4 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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/observatory_ui/stack_trace_tree_config/element_test.dart
diff --git a/runtime/observatory/tests/observatory_ui/stack_trace_tree_config/element_test.dart b/runtime/observatory/tests/observatory_ui/stack_trace_tree_config/element_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..f8c0f0004e56c91094b998a0b8f2664fad207210
--- /dev/null
+++ b/runtime/observatory/tests/observatory_ui/stack_trace_tree_config/element_test.dart
@@ -0,0 +1,185 @@
+// 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 'package:unittest/unittest.dart';
+import 'package:observatory/models.dart' as M;
+import 'package:observatory/src/elements/stack_trace_tree_config.dart';
+
+main() {
+ StackTraceTreeConfigElement.tag.ensureRegistration();
+
+ group('instantiation', () {
+ test('default', () {
+ final e = new StackTraceTreeConfigElement();
+ expect(e, isNotNull, reason: 'element correctly created');
+ expect(e.showMode, isTrue);
+ expect(e.showDirection, isTrue);
+ expect(e.showFilter, isTrue);
+ expect(e.filter, equals(''));
+ expect(e.mode, equals(ProfileTreeMode.function));
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ });
+ test('showMode', () {
+ final e = new StackTraceTreeConfigElement(showMode: false);
+ expect(e, isNotNull, reason: 'element correctly created');
+ expect(e.showMode, isFalse);
+ expect(e.showDirection, isTrue);
+ expect(e.showFilter, isTrue);
+ expect(e.filter, equals(''));
+ expect(e.mode, equals(ProfileTreeMode.function));
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ });
+ test('showDirection', () {
+ final e = new StackTraceTreeConfigElement(showDirection: false);
+ expect(e, isNotNull, reason: 'element correctly created');
+ expect(e.showMode, isTrue);
+ expect(e.showDirection, isFalse);
+ expect(e.showFilter, isTrue);
+ expect(e.filter, equals(''));
+ expect(e.mode, equals(ProfileTreeMode.function));
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ });
+ test('showFilter', () {
+ final e = new StackTraceTreeConfigElement(showFilter: false);
+ expect(e, isNotNull, reason: 'element correctly created');
+ expect(e.showMode, isTrue);
+ expect(e.showDirection, isTrue);
+ expect(e.showFilter, isFalse);
+ expect(e.filter, equals(''));
+ expect(e.mode, equals(ProfileTreeMode.function));
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ });
+ test('filter', () {
+ final filter = 'filter-string';
+ final e = new StackTraceTreeConfigElement(filter: filter);
+ expect(e, isNotNull, reason: 'element correctly created');
+ expect(e.showMode, isTrue);
+ expect(e.showDirection, isTrue);
+ expect(e.showFilter, isTrue);
+ expect(e.filter, equals(filter));
+ expect(e.mode, equals(ProfileTreeMode.function));
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ });
+ test('mode', () {
+ final e = new StackTraceTreeConfigElement(mode: ProfileTreeMode.code);
+ expect(e, isNotNull, reason: 'element correctly created');
+ expect(e.showMode, isTrue);
+ expect(e.showDirection, isTrue);
+ expect(e.showFilter, isTrue);
+ expect(e.filter, equals(''));
+ expect(e.mode, equals(ProfileTreeMode.code));
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ });
+ test('default', () {
+ final e = new StackTraceTreeConfigElement(
+ direction: M.ProfileTreeDirection.inclusive);
+ expect(e, isNotNull, reason: 'element correctly created');
+ expect(e.showMode, isTrue);
+ expect(e.showDirection, isTrue);
+ expect(e.showFilter, isTrue);
+ expect(e.filter, equals(''));
+ expect(e.mode, equals(ProfileTreeMode.function));
+ expect(e.direction, equals(M.ProfileTreeDirection.inclusive));
+ });
+ });
+ group('elements', () {
+ test('created after attachment', () async {
+ final e = new StackTraceTreeConfigElement();
+ 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');
+ });
+ test('react to mode change', () async {
+ final e = new StackTraceTreeConfigElement();
+ document.body.append(e);
+ await e.onRendered.first;
+ expect(e.mode, equals(ProfileTreeMode.function));
+ e.mode = ProfileTreeMode.code;
+ await e.onRendered.first;
+ expect(e.mode, equals(ProfileTreeMode.code));
+ e.remove();
+ await e.onRendered.first;
+ expect(e.children.length, isZero, reason: 'is empty');
+ });
+ test('react to direction change', () async {
+ final e = new StackTraceTreeConfigElement();
+ document.body.append(e);
+ await e.onRendered.first;
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ e.direction = M.ProfileTreeDirection.inclusive;
+ await e.onRendered.first;
+ expect(e.direction, equals(M.ProfileTreeDirection.inclusive));
+ e.remove();
+ await e.onRendered.first;
+ expect(e.children.length, isZero, reason: 'is empty');
+ });
+ test('react to filter change', () async {
+ final filter = 'filter-string';
+ final e = new StackTraceTreeConfigElement();
+ document.body.append(e);
+ await e.onRendered.first;
+ expect(e.filter, equals(''));
+ e.filter = filter;
+ await e.onRendered.first;
+ expect(e.filter, equals(filter));
+ e.remove();
+ await e.onRendered.first;
+ expect(e.children.length, isZero, reason: 'is empty');
+ });
+ });
+ group('events', () {
+ test('onModeChange', () async {
+ final e = new StackTraceTreeConfigElement();
+ document.body.append(e);
+ await e.onRendered.first;
+ expect(e.mode, equals(ProfileTreeMode.function));
+ e.onModeChange.listen(expectAsync((_) {
+ expect(e.mode, equals(ProfileTreeMode.code));
+ }, count: 1));
+ final select = (e.querySelector('.mode-select') as SelectElement);
+ select.selectedIndex = select.options.indexOf(
+ (select.options.toSet()
+ ..removeAll(select.selectedOptions)).toList().first
+ );
+ select.dispatchEvent(new Event("change"));
+ e.remove();
+ await e.onRendered.first;
+ });
+ test('onDirectionChange', () async {
+ final e = new StackTraceTreeConfigElement();
+ document.body.append(e);
+ await e.onRendered.first;
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ e.onDirectionChange.listen(expectAsync((_) {
+ expect(e.direction, equals(M.ProfileTreeDirection.inclusive));
+ }, count: 1));
+ final select = (e.querySelector('.direction-select') as SelectElement);
+ select.selectedIndex = select.options.indexOf(
+ (select.options.toSet()
+ ..removeAll(select.selectedOptions)).toList().first
+ );
+ select.dispatchEvent(new Event("change"));
+ e.remove();
+ await e.onRendered.first;
+ });
+ test('onFilterChange', () async {
+ final e = new StackTraceTreeConfigElement();
+ document.body.append(e);
+ await e.onRendered.first;
+ expect(e.direction, equals(M.ProfileTreeDirection.exclusive));
+ e.onFilterChange.listen(expectAsync((_) {
+ expect(e.filter, equals('value'));
+ }, count: 1));
+ var input = (e.querySelector('input') as TextInputElement);
+ input.value = 'value';
+ input.dispatchEvent(new Event("change"));
+ e.remove();
+ await e.onRendered.first;
+ });
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698