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

Unified Diff: LayoutTests/fast/dom/idl-dictionary-unittest.html

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/idl-dictionary-unittest-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/idl-dictionary-unittest.html
diff --git a/LayoutTests/fast/dom/idl-dictionary-unittest.html b/LayoutTests/fast/dom/idl-dictionary-unittest.html
new file mode 100644
index 0000000000000000000000000000000000000000..b71e1865db3b9e98936a1a8d48df6a4150be2524
--- /dev/null
+++ b/LayoutTests/fast/dom/idl-dictionary-unittest.html
@@ -0,0 +1,62 @@
+<!DOCTYPE html>
+<script src="../../resources/js-test.js"></script>
+<script>
+description('IDL dictionary unittest');
+
+if (window.internals && internals.dictionaryTest) {
+ var dictionaryTest = window.internals.dictionaryTest();
+
+ debug('Test for setting an empty dictionary');
+ dictionaryTest.set({});
+ dict = dictionaryTest.get();
+ shouldBeUndefined('dict.longMember');
+ shouldBeEqualToString('dict.stringMember', 'defaultStringValue');
+ shouldBeNull('dict.booleanOrNullMember');
+ shouldBeUndefined('dict.doubleOrNullMember');
+ shouldBeUndefined('dict.stringSequenceMember');
+ debug('');
+
+ debug('Test for setting undefined');
+ dictionaryTest.set(undefined);
+ dict = dictionaryTest.get();
+ shouldBeUndefined('dict.longMember');
+ shouldBeEqualToString('dict.stringMember', 'defaultStringValue');
+ shouldBeNull('dict.booleanOrNullMember');
+ shouldBeUndefined('dict.doubleOrNullMember');
+ shouldBeUndefined('dict.stringSequenceMember');
+ debug('');
+
+ debug('Test for setting valid values');
+ dictionaryTest.set({longMember: 3, stringMember: 'modifiedString',
+ booleanOrNullMember: true, doubleOrNullMember: 2.0,
+ stringSequenceMember: ['foo', 'bar', 'baz']});
+ dict = dictionaryTest.get();
+ shouldBe('dict.longMember', '3');
+ shouldBeEqualToString('dict.stringMember', 'modifiedString');
+ shouldBeTrue('dict.booleanOrNullMember');
+ shouldBe('dict.doubleOrNullMember', '2.0');
+ shouldBe('dict.stringSequenceMember', '["foo", "bar", "baz"]');
+ debug('');
+
+ // FIXME: Following test doesn't pass. Make it pass.
+/*
+ debug('Test for explicit undefined or null, and missing members');
+ dictionaryTest.reset();
+ dictionaryTest.set({longMember: undefined, stringMember: undefined,
+ booleanOrNullMember: null});
+ dict = dictionaryTest.get();
+ shouldBeUndefined('dict.longMember');
+ shouldBeEqualToString('dict.stringMember', 'defaultStringValue');
+ shouldBeNull('dict.booleanOrNullMember');
+ shouldBeUndefined('dict.doubleOrNullMember');
+ shouldBeUndefined('dict.stringSequenceMember');
+ debug('');
+*/
+
+ debug('Test for setting invalid member');
+ dictionaryTest.set({invalidMember: 'shouldNotBeSet'});
+ dict = dictionaryTest.get();
+ shouldBeUndefined('dict.invalidMember');
+ debug('');
+}
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/idl-dictionary-unittest-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698