diff options
author | sashab@chromium.org <sashab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-21 01:49:06 +0000 |
---|---|---|
committer | sashab@chromium.org <sashab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-21 01:49:06 +0000 |
commit | ea49b25403a24fdcc2533709edc561baaabe8f5f (patch) | |
tree | 916f40e93f86810c7107ad7e2810170d8f054d63 /tools/json_schema_compiler/dart_test | |
parent | a6a49ab654f277a899c2e65ac70d92bd1ad65556 (diff) | |
download | chromium_src-ea49b25403a24fdcc2533709edc561baaabe8f5f.zip chromium_src-ea49b25403a24fdcc2533709edc561baaabe8f5f.tar.gz chromium_src-ea49b25403a24fdcc2533709edc561baaabe8f5f.tar.bz2 |
Added unit tests for the Dart Chrome.* API wrappers, testing the Dart output mode from JSON Schema Compiler.
The physical tests I've added are initial dummies - kalman, please take a look at the *structure* of the test setup. It feels like there is a lot of repetition of test names, but I like using python's unittest framework so it runs as a presubmit check. Any hints?
I have a lot more tests I'd like to add.
Note that there needs to be functionality to disable tests, e.g. there will need to be some tests that will fail from the IDL return value type bug (https://code.google.com/p/chromium/issues/detail?id=170837).
Thanks,
Sasha
Review URL: https://chromiumcodereview.appspot.com/12218151
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183709 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/json_schema_compiler/dart_test')
18 files changed, 643 insertions, 0 deletions
diff --git a/tools/json_schema_compiler/dart_test/basic_event.dart b/tools/json_schema_compiler/dart_test/basic_event.dart new file mode 100644 index 0000000..905ab7f --- /dev/null +++ b/tools/json_schema_compiler/dart_test/basic_event.dart @@ -0,0 +1,40 @@ +// 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. + +// Generated from namespace: basic_event + +part of chrome; +/** + * Events + */ + +/// Documentation for basicEvent. +class Event_basic_event_basicEvent extends Event { + void addListener(void callback()) => super.addListener(callback); + + void removeListener(void callback()) => super.removeListener(callback); + + bool hasListener(void callback()) => super.hasListener(callback); + + Event_basic_event_basicEvent(jsObject) : super._(jsObject, 0); +} + +/** + * Functions + */ + +class API_basic_event { + /* + * API connection + */ + Object _jsObject; + + /* + * Events + */ + Event_basic_event_basicEvent basicEvent; + API_basic_event(this._jsObject) { + basicEvent = new Event_basic_event_basicEvent(JS('', '#.basicEvent', this._jsObject)); + } +} diff --git a/tools/json_schema_compiler/dart_test/basic_event.idl b/tools/json_schema_compiler/dart_test/basic_event.idl new file mode 100644 index 0000000..8e5e13c --- /dev/null +++ b/tools/json_schema_compiler/dart_test/basic_event.idl @@ -0,0 +1,10 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +namespace basic_event { + interface Events { + // Documentation for basicEvent. + static void basicEvent(); + }; +}; diff --git a/tools/json_schema_compiler/dart_test/basic_function.dart b/tools/json_schema_compiler/dart_test/basic_function.dart new file mode 100644 index 0000000..3eb7947 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/basic_function.dart @@ -0,0 +1,29 @@ +// 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. + +// Generated from namespace: basic_function + +part of chrome; +/** + * Functions + */ + +class API_basic_function { + /* + * API connection + */ + Object _jsObject; + + /* + * Functions + */ + /// Documentation for the basic function, foo(). + void foo() => JS('void', '#.foo()', this._jsObject); + + /// Documentation for the basic static function, staticFoo(). + void staticFoo() => JS('void', '#.staticFoo()', this._jsObject); + + API_basic_function(this._jsObject) { + } +} diff --git a/tools/json_schema_compiler/dart_test/basic_function.idl b/tools/json_schema_compiler/dart_test/basic_function.idl new file mode 100644 index 0000000..29f62be --- /dev/null +++ b/tools/json_schema_compiler/dart_test/basic_function.idl @@ -0,0 +1,13 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +namespace basic_function { + interface Functions { + // Documentation for the basic function, foo(). + void foo(); + + // Documentation for the basic static function, staticFoo(). + static void staticFoo(); + }; +}; diff --git a/tools/json_schema_compiler/dart_test/basic_type.dart b/tools/json_schema_compiler/dart_test/basic_type.dart new file mode 100644 index 0000000..53183d0 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/basic_type.dart @@ -0,0 +1,77 @@ +// 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. + +// Generated from namespace: basic_type + +part of chrome; + +/** + * Types + */ + +class Basic_typeBasicType extends ChromeObject { + /* + * Public constructor + */ + Basic_typeBasicType({String s, int i, int l, double d}) { + if (?s) + this.s = s; + if (?i) + this.i = i; + if (?l) + this.l = l; + if (?d) + this.d = d; + } + + /* + * Private constructor + */ + Basic_typeBasicType._proxy(_jsObject) : super._proxy(_jsObject); + + /* + * Public accessors + */ + /// Documentation for the String s. + String get s => JS('String', '#.s', this._jsObject); + + void set s(String s) { + JS('void', '#.s = #', this._jsObject, s); + } + + /// Documentation for the int i. + int get i => JS('int', '#.i', this._jsObject); + + void set i(int i) { + JS('void', '#.i = #', this._jsObject, i); + } + + /// Documentation for the long l. + int get l => JS('int', '#.l', this._jsObject); + + void set l(int l) { + JS('void', '#.l = #', this._jsObject, l); + } + + /// Documentation for the double d. + double get d => JS('double', '#.d', this._jsObject); + + void set d(double d) { + JS('void', '#.d = #', this._jsObject, d); + } + +} + +/** + * Functions + */ + +class API_basic_type { + /* + * API connection + */ + Object _jsObject; + API_basic_type(this._jsObject) { + } +} diff --git a/tools/json_schema_compiler/dart_test/basic_type.idl b/tools/json_schema_compiler/dart_test/basic_type.idl new file mode 100644 index 0000000..52837f8 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/basic_type.idl @@ -0,0 +1,20 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +namespace basic_type { + // Documentation for BasicType. + dictionary BasicType { + // Documentation for the String s. + DOMString s; + + // Documentation for the int i. + int i; + + // Documentation for the long l. + long l; + + // Documentation for the double d. + double d; + }; +}; diff --git a/tools/json_schema_compiler/dart_test/comments.dart b/tools/json_schema_compiler/dart_test/comments.dart new file mode 100644 index 0000000..d734d56 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/comments.dart @@ -0,0 +1,31 @@ +// 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. + +// Generated from namespace: comments + +part of chrome; +/** + * Functions + */ + +class API_comments { + /* + * API connection + */ + Object _jsObject; + + /* + * Functions + */ + /// There's a blank line at the start of this comment. Documentation for + /// basicFunction. BasicFunction() is a great function. There is a newline + /// after this.<br/><br/> It works like so: +-----+ | | + /// +--+ | | | | +-----+ --> +--+<br/><br/> Some other + /// stuff here. This paragraph starts with whitespace. Overall, its a + /// great function. There's also a blank line at the end of this comment. + void basicFunction() => JS('void', '#.basicFunction()', this._jsObject); + + API_comments(this._jsObject) { + } +} diff --git a/tools/json_schema_compiler/dart_test/comments.idl b/tools/json_schema_compiler/dart_test/comments.idl new file mode 100644 index 0000000..867d289 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/comments.idl @@ -0,0 +1,32 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// This comment is for the comments namespace. +namespace comments { + // This comments the "Functions" block, and should be ignored. + interface Functions { + // This comment is separated by at least one blank line from the start of + // the function, and should be ignored. + + // + // There's a blank line at the start of this comment. + // + // Documentation for basicFunction. + // BasicFunction() is a great function. + // There is a newline after this. + // + // It works like so: + // +-----+ + // | | +--+ + // | | | | + // +-----+ --> +--+ + // + // Some other stuff here. + // This paragraph starts with whitespace. + // Overall, its a great function. + // There's also a blank line at the end of this comment. + // + static void basicFunction(); + }; +}; diff --git a/tools/json_schema_compiler/dart_test/complex_type.dart b/tools/json_schema_compiler/dart_test/complex_type.dart new file mode 100644 index 0000000..f66821a --- /dev/null +++ b/tools/json_schema_compiler/dart_test/complex_type.dart @@ -0,0 +1,86 @@ +// 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. + +// Generated from namespace: complex_type + +part of chrome; + +/** + * Types + */ + +class Complex_typeComplexType extends ChromeObject { + /* + * Public constructor + */ + Complex_typeComplexType({String s, int i, int l, double d, Complex_typeComplexType c}) { + if (?s) + this.s = s; + if (?i) + this.i = i; + if (?l) + this.l = l; + if (?d) + this.d = d; + if (?c) + this.c = c; + } + + /* + * Private constructor + */ + Complex_typeComplexType._proxy(_jsObject) : super._proxy(_jsObject); + + /* + * Public accessors + */ + /// Documentation for the String s. + String get s => JS('String', '#.s', this._jsObject); + + void set s(String s) { + JS('void', '#.s = #', this._jsObject, s); + } + + /// Documentation for the int i. + int get i => JS('int', '#.i', this._jsObject); + + void set i(int i) { + JS('void', '#.i = #', this._jsObject, i); + } + + /// Documentation for the long l. + int get l => JS('int', '#.l', this._jsObject); + + void set l(int l) { + JS('void', '#.l = #', this._jsObject, l); + } + + /// Documentation for the double d. + double get d => JS('double', '#.d', this._jsObject); + + void set d(double d) { + JS('void', '#.d = #', this._jsObject, d); + } + + /// Documentation for the ComplexType c. + Complex_typeComplexType get c => new Complex_typeComplexType._proxy(JS('', '#.c', this._jsObject)); + + void set c(Complex_typeComplexType c) { + JS('void', '#.c = #', this._jsObject, convertArgument(c)); + } + +} + +/** + * Functions + */ + +class API_complex_type { + /* + * API connection + */ + Object _jsObject; + API_complex_type(this._jsObject) { + } +} diff --git a/tools/json_schema_compiler/dart_test/complex_type.idl b/tools/json_schema_compiler/dart_test/complex_type.idl new file mode 100644 index 0000000..c75f97e --- /dev/null +++ b/tools/json_schema_compiler/dart_test/complex_type.idl @@ -0,0 +1,23 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +namespace complex_type { + // Documentation for ComplexType. + dictionary ComplexType { + // Documentation for the String s. + DOMString s; + + // Documentation for the int i. + int i; + + // Documentation for the long l. + long l; + + // Documentation for the double d. + double d; + + // Documentation for the ComplexType c. + ComplexType c; + }; +}; diff --git a/tools/json_schema_compiler/dart_test/empty_namespace.dart b/tools/json_schema_compiler/dart_test/empty_namespace.dart new file mode 100644 index 0000000..d2378a2 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/empty_namespace.dart @@ -0,0 +1,19 @@ +// 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. + +// Generated from namespace: empty_namespace + +part of chrome; +/** + * Functions + */ + +class API_empty_namespace { + /* + * API connection + */ + Object _jsObject; + API_empty_namespace(this._jsObject) { + } +} diff --git a/tools/json_schema_compiler/dart_test/empty_namespace.idl b/tools/json_schema_compiler/dart_test/empty_namespace.idl new file mode 100644 index 0000000..5a5ea03 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/empty_namespace.idl @@ -0,0 +1,6 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +namespace empty_namespace { +}; diff --git a/tools/json_schema_compiler/dart_test/empty_type.dart b/tools/json_schema_compiler/dart_test/empty_type.dart new file mode 100644 index 0000000..ebe8e69 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/empty_type.dart @@ -0,0 +1,37 @@ +// 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. + +// Generated from namespace: empty_type + +part of chrome; + +/** + * Types + */ + +class Empty_typeEmptyType extends ChromeObject { + /* + * Public constructor + */ + Empty_typeEmptyType({}) { + } + + /* + * Private constructor + */ + Empty_typeEmptyType._proxy(_jsObject) : super._proxy(_jsObject); +} + +/** + * Functions + */ + +class API_empty_type { + /* + * API connection + */ + Object _jsObject; + API_empty_type(this._jsObject) { + } +} diff --git a/tools/json_schema_compiler/dart_test/empty_type.idl b/tools/json_schema_compiler/dart_test/empty_type.idl new file mode 100644 index 0000000..af5de84 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/empty_type.idl @@ -0,0 +1,9 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +namespace empty_type { + // Documentation for EmptyType. + dictionary EmptyType { + }; +}; diff --git a/tools/json_schema_compiler/dart_test/operatable_type.dart b/tools/json_schema_compiler/dart_test/operatable_type.dart new file mode 100644 index 0000000..9e3d708 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/operatable_type.dart @@ -0,0 +1,49 @@ +// 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. + +// Generated from namespace: operatable_type + +part of chrome; + +/** + * Types + */ + +class Operatable_typeOperatableType extends ChromeObject { + /* + * Private constructor + */ + Operatable_typeOperatableType._proxy(_jsObject) : super._proxy(_jsObject); + + /* + * Public accessors + */ + /// Documentation for the String t. + String get t => JS('String', '#.t', this._jsObject); + + void set t(String t) { + JS('void', '#.t = #', this._jsObject, t); + } + + + /* + * Methods + */ + /// Documentation for staticFoo. + void staticFoo() => JS('void', '#.staticFoo()', this._jsObject); + +} + +/** + * Functions + */ + +class API_operatable_type { + /* + * API connection + */ + Object _jsObject; + API_operatable_type(this._jsObject) { + } +} diff --git a/tools/json_schema_compiler/dart_test/operatable_type.idl b/tools/json_schema_compiler/dart_test/operatable_type.idl new file mode 100644 index 0000000..64dd382 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/operatable_type.idl @@ -0,0 +1,14 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +namespace operatable_type { + // Documentation for OperatableType. + dictionary OperatableType { + // Documentation for the String t. + DOMString t; + + // Documentation for staticFoo. + static void staticFoo(); + }; +}; diff --git a/tools/json_schema_compiler/dart_test/tags.dart b/tools/json_schema_compiler/dart_test/tags.dart new file mode 100644 index 0000000..78da51a --- /dev/null +++ b/tools/json_schema_compiler/dart_test/tags.dart @@ -0,0 +1,116 @@ +// 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. + +// Generated from namespace: tags + +part of chrome; + +/** + * Types + */ + +class TagsInlineDoc extends ChromeObject { + /* + * Public constructor + */ + TagsInlineDoc({}) { + } + + /* + * Private constructor + */ + TagsInlineDoc._proxy(_jsObject) : super._proxy(_jsObject); +} + +class TagsNodoc extends ChromeObject { + /* + * Public constructor + */ + TagsNodoc({}) { + } + + /* + * Private constructor + */ + TagsNodoc._proxy(_jsObject) : super._proxy(_jsObject); +} + +class TagsNocompile extends ChromeObject { + /* + * Public constructor + */ + TagsNocompile({}) { + } + + /* + * Private constructor + */ + TagsNocompile._proxy(_jsObject) : super._proxy(_jsObject); +} + +class TagsPlainDict extends ChromeObject { + /* + * Public constructor + */ + TagsPlainDict({int inline_doc, String nodoc, double nocompile, fileEntry instance_of_tag}) { + if (?inline_doc) + this.inline_doc = inline_doc; + if (?nodoc) + this.nodoc = nodoc; + if (?nocompile) + this.nocompile = nocompile; + if (?instance_of_tag) + this.instance_of_tag = instance_of_tag; + } + + /* + * Private constructor + */ + TagsPlainDict._proxy(_jsObject) : super._proxy(_jsObject); + + /* + * Public accessors + */ + /// This int has the property [inline_doc]. + int get inline_doc => JS('int', '#.inline_doc', this._jsObject); + + void set inline_doc(int inline_doc) { + JS('void', '#.inline_doc = #', this._jsObject, inline_doc); + } + + /// This String has the property [nodoc]. + String get nodoc => JS('String', '#.nodoc', this._jsObject); + + void set nodoc(String nodoc) { + JS('void', '#.nodoc = #', this._jsObject, nodoc); + } + + /// This double has the property [nocompile]. + double get nocompile => JS('double', '#.nocompile', this._jsObject); + + void set nocompile(double nocompile) { + JS('void', '#.nocompile = #', this._jsObject, nocompile); + } + + /// This object has the property [instanceOf=fileEntry]. + fileEntry get instance_of_tag => JS('fileEntry', '#.instance_of_tag', this._jsObject); + + void set instance_of_tag(fileEntry instance_of_tag) { + JS('void', '#.instance_of_tag = #', this._jsObject, convertArgument(instance_of_tag)); + } + +} + +/** + * Functions + */ + +class API_tags { + /* + * API connection + */ + Object _jsObject; + API_tags(this._jsObject) { + } +} diff --git a/tools/json_schema_compiler/dart_test/tags.idl b/tools/json_schema_compiler/dart_test/tags.idl new file mode 100644 index 0000000..f4ddff4 --- /dev/null +++ b/tools/json_schema_compiler/dart_test/tags.idl @@ -0,0 +1,32 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +namespace tags { + // This dictionary has the property [inline_doc]. + [inline_doc] dictionary InlineDoc { + }; + + // This dictionary has the property [nodoc]. + [nodoc] dictionary Nodoc { + }; + + // This dictionary has the property [nocompile]. + [nocompile] dictionary Nocompile { + }; + + // This dictionary has no tags on the dictionary itself. + dictionary PlainDict { + // This int has the property [inline_doc]. + [inline_doc] int inline_doc; + + // This String has the property [nodoc]. + [nodoc] String nodoc; + + // This double has the property [nocompile]. + [nocompile] double nocompile; + + // This object has the property [instanceOf=fileEntry]. + [instanceOf=fileEntry] object instance_of_tag; + }; +}; |