blob: 8f2cae1f0c65e7777fb092fa0ccc5fed0a88b149 [file] [log] [blame]
// 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.
import 'dart:async';
import 'dart:html';
import 'package:polymer/polymer.dart';
import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'package:template_binding/template_binding.dart';
@CustomTag('x-target')
class XTarget extends PolymerElement {
XTarget.created() : super.created();
final Completer _found = new Completer();
Future get foundSrc => _found.future;
// force an mdv binding
bind(name, model, [path]) =>
nodeBindFallback(this).bind(name, model, path);
inserted() {
testSrcForMustache();
}
attributeChanged(name, oldValue, newValue) {
testSrcForMustache();
if (attributes[name] == '../testSource') {
_found.complete();
}
}
testSrcForMustache() {
expect(attributes['src'], isNot(matches(Polymer.bindPattern)),
reason: 'attribute does not contain {{...}}');
}
}
@CustomTag('x-test')
class XTest extends PolymerElement {
XTest.created() : super.created();
@observable var src = 'testSource';
}
main() {
initPolymer();
useHtmlConfiguration();
setUp(() => Polymer.onReady);
test('mustache attributes', () {
final xtest = document.query('#test');
final xtarget = xtest.shadowRoot.query('#target');
return xtarget.foundSrc;
});
}