diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /mobile/android/tests/browser/robocop/testEventDispatcher.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | uxp-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz |
Add m-esr52 at 52.6.0
Diffstat (limited to 'mobile/android/tests/browser/robocop/testEventDispatcher.js')
-rw-r--r-- | mobile/android/tests/browser/robocop/testEventDispatcher.js | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/mobile/android/tests/browser/robocop/testEventDispatcher.js b/mobile/android/tests/browser/robocop/testEventDispatcher.js new file mode 100644 index 0000000000..f70d2fdae2 --- /dev/null +++ b/mobile/android/tests/browser/robocop/testEventDispatcher.js @@ -0,0 +1,44 @@ +Components.utils.import("resource://gre/modules/Messaging.jsm"); + +var java = new JavaBridge(this); + +do_register_cleanup(() => { + java.disconnect(); +}); +do_test_pending(); + +function send_test_message(type) { + let innerObject = { + boolean: true, + booleanArray: [false, true], + int: 1, + intArray: [2, 3], + double: 0.5, + doubleArray: [1.5, 2.5], + null: null, + emptyString: "", + string: "foo", + stringArray: ["bar", "baz"], + } + + // Make a copy + let outerObject = JSON.parse(JSON.stringify(innerObject)); + + outerObject.type = type; + outerObject.object = innerObject; + outerObject.objectArray = [null, innerObject]; + + Messaging.sendRequest(outerObject); +} + +function send_message_for_response(type, response) { + Messaging.sendRequestForResult({ + type: type, + response: response, + }).then(result => do_check_eq(result, response), + error => do_check_eq(error, response)); +} + +function finish_test() { + do_test_finished(); +} |