Files
sdk/tests/lib_2/html/custom/attribute_changed_callback_test.dart
T
Bob Nystrom a80b71fc15 Fix issues around "utils.dart" and "util.dart" in lib_2/html.
- "util.dart" is completely unused, so deleted.

- We had two copies of "utils.dart" in two directories. It needs to
  exist in both places, but doesn't need to be copy/pasted. Replaced
  one with an export of the other.

- Fixed bad import paths to "../utils.dart" in html/custom/ tests.
  These were causing those tests to crash DDC. (Now most are instead
  failing because of #31577, so it's not a *huge* improvement, but it's
  a step in the right direction.)

- Don't use unittest in utils.dart.

Change-Id: I28c432b53c992a5ec790f5804453cddb0f44cbe5
Reviewed-on: https://dart-review.googlesource.com/27301
Reviewed-by: Vijay Menon <vsm@google.com>
Commit-Queue: Bob Nystrom <rnystrom@google.com>
2017-12-07 19:35:58 +00:00

126 lines
3.2 KiB
Dart

// Copyright (c) 2013, 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.
library attribute_changed_callback_test;
import 'dart:async';
import 'dart:html';
import 'dart:js' as js;
import 'package:unittest/unittest.dart';
import 'utils.dart';
class A extends HtmlElement {
static final tag = 'x-a';
factory A() => new Element.tag(tag);
A.created() : super.created();
static var attributeChangedInvocations = 0;
void attributeChanged(name, oldValue, newValue) {
attributeChangedInvocations++;
}
}
class B extends HtmlElement {
static final tag = 'x-b';
factory B() => new Element.tag(tag);
B.created() : super.created() {
invocations.add('created');
}
static var invocations = [];
Completer completer;
void attributeChanged(name, oldValue, newValue) {
invocations.add('$name: $oldValue => $newValue');
if (completer != null) {
completer.complete('value changed to $newValue');
completer = null;
}
}
}
// Pump custom events polyfill events.
void customElementsTakeRecords() {
if (js.context.hasProperty('CustomElements')) {
js.context['CustomElements'].callMethod('takeRecords');
}
}
main() {
// Adapted from Blink's fast/dom/custom/attribute-changed-callback test.
var registered = false;
setUp(() => customElementsReady.then((_) {
if (!registered) {
registered = true;
document.registerElement(A.tag, A);
document.registerElement(B.tag, B);
}
}));
group('fully_supported', () {
test('transfer attribute changed callback', () {
var element = new A();
element.attributes['a'] = 'b';
expect(A.attributeChangedInvocations, 1);
});
test('add, change and remove an attribute', () {
var b = new B();
B.invocations = [];
b.attributes['data-s'] = 't';
expect(B.invocations, ['data-s: null => t']);
b.attributes['data-v'] = 'w';
B.invocations = [];
b.attributes['data-v'] = 'x';
expect(B.invocations, ['data-v: w => x']);
B.invocations = [];
b.attributes['data-v'] = 'x';
expect(B.invocations, []);
b.attributes.remove('data-v');
expect(B.invocations, ['data-v: x => null']);
});
test('add, change ID', () {
B.invocations = [];
var b = new B();
var completer = new Completer();
b.completer = completer;
b.id = 'x';
return completer.future
.then((_) => expect(B.invocations, ['created', 'id: null => x']))
.then((_) {
B.invocations = [];
var secondCompleter = new Completer();
b.completer = secondCompleter;
b.attributes.remove('id');
return secondCompleter.future;
}).then((_) => expect(B.invocations, ['id: x => null']));
});
});
group('unsupported_on_polyfill', () {
// If these tests start passing, don't remove the status suppression. Move
// the tests to the fullYy_supported group.
test('add, change classes', () {
var b = new B();
B.invocations = [];
b.classes.toggle('u');
expect(B.invocations, ['class: null => u']);
});
});
}