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

Unified Diff: test/codegen/lib/html/document_test.dart

Issue 1930043002: Add all dart:html tests from the sdk to test/codegen. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: ptal Created 4 years, 8 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
« no previous file with comments | « test/codegen/lib/html/deferred_multi_app_lib.dart ('k') | test/codegen/lib/html/documentfragment_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/lib/html/document_test.dart
diff --git a/test/codegen/lib/html/document_test.dart b/test/codegen/lib/html/document_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..2ed520f756803cb05ea5e9eecd39b33580d86d23
--- /dev/null
+++ b/test/codegen/lib/html/document_test.dart
@@ -0,0 +1,86 @@
+library DocumentTest;
+import 'package:unittest/unittest.dart';
+import 'package:unittest/html_individual_config.dart';
+import 'dart:html';
+
+main() {
+ useHtmlIndividualConfiguration();
+
+ var isElement = predicate((x) => x is Element, 'is an Element');
+ var isDivElement = predicate((x) => x is DivElement, 'is a DivElement');
+ var isAnchorElement =
+ predicate((x) => x is AnchorElement, 'is an AnchorElement');
+ var isUnknownElement =
+ predicate((x) => x is UnknownElement, 'is UnknownElement');
+
+ var inscrutable;
+
+ test('CreateElement', () {
+ // FIXME: nifty way crashes, do it boring way.
+ expect(new Element.tag('span'), isElement);
+ expect(new Element.tag('div'), isDivElement);
+ expect(new Element.tag('a'), isAnchorElement);
+ expect(new Element.tag('bad_name'), isUnknownElement);
+ });
+
+ group('document', () {
+ inscrutable = (x) => x;
+
+ test('Document.query', () {
+ Document doc = new DomParser().parseFromString(
+ '''<ResultSet>
+ <Row>A</Row>
+ <Row>B</Row>
+ <Row>C</Row>
+ </ResultSet>''','text/xml');
+
+ var rs = doc.query('ResultSet');
+ expect(rs, isNotNull);
+ });
+
+ test('CreateElement', () {
+ // FIXME: nifty way crashes, do it boring way.
+ expect(new Element.tag('span'), isElement);
+ expect(new Element.tag('div'), isDivElement);
+ expect(new Element.tag('a'), isAnchorElement);
+ expect(new Element.tag('bad_name'), isUnknownElement);
+ });
+
+ test('adoptNode', () {
+ var div = new Element.html('<div><div id="foo">bar</div></div>');
+ var doc = document.implementation.createHtmlDocument('');
+ expect(doc.adoptNode(div), div);
+ expect(div.ownerDocument, doc);
+ doc.body.nodes.add(div);
+ expect(doc.query('#foo').text, 'bar');
+ });
+
+ test('importNode', () {
+ var div = new Element.html('<div><div id="foo">bar</div></div>');
+ var doc = document.implementation.createHtmlDocument('');
+ var div2 = doc.importNode(div, true);
+ expect(div2, isNot(equals(div)));
+ expect(div2.ownerDocument, doc);
+ doc.body.nodes.add(div2);
+ expect(doc.query('#foo').text, 'bar');
+ });
+
+ test('typeTest1', () {
+ inscrutable = inscrutable(inscrutable);
+ var doc1 = document;
+ expect(doc1 is HtmlDocument, true);
+ expect(inscrutable(doc1) is HtmlDocument, true);
+ var doc2 = document.implementation.createHtmlDocument('');
+ expect(doc2 is HtmlDocument, true);
+ expect(inscrutable(doc2) is HtmlDocument, true);
+ });
+
+ test('typeTest2', () {
+ inscrutable = inscrutable(inscrutable);
+ // XML document.
+ var doc3 = document.implementation.createDocument(null, 'report', null);
+ expect(doc3 is HtmlDocument, false);
+ expect(inscrutable(doc3) is HtmlDocument, false);
+ });
+ });
+}
« no previous file with comments | « test/codegen/lib/html/deferred_multi_app_lib.dart ('k') | test/codegen/lib/html/documentfragment_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698