2011-09-25 18:38:00 +04:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is XPConnect Test Code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is The Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Bobby Holley <bobbyholley@gmail.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
|
|
|
|
function run_test() {
|
|
|
|
|
|
|
|
// Load the component manifests.
|
|
|
|
Components.manager.autoRegister(do_get_file('../components/native/xpctest.manifest'));
|
|
|
|
Components.manager.autoRegister(do_get_file('../components/js/xpctest.manifest'));
|
|
|
|
|
|
|
|
// Test for each component.
|
|
|
|
test_component("@mozilla.org/js/xpc/test/native/Params;1");
|
|
|
|
test_component("@mozilla.org/js/xpc/test/js/Params;1");
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_component(contractid) {
|
|
|
|
|
|
|
|
// Instantiate the object.
|
|
|
|
var o = Cc[contractid].createInstance(Ci["nsIXPCTestParams"]);
|
|
|
|
|
2011-10-27 23:43:38 +04:00
|
|
|
// Possible comparator functions.
|
|
|
|
var standardComparator = function(a,b) {return a == b;};
|
|
|
|
var fuzzComparator = function(a,b) {return Math.abs(a - b) < 0.1;};
|
2011-10-27 23:43:38 +04:00
|
|
|
var arrayComparator = function(a,b) {
|
|
|
|
if (a.length != b.length)
|
|
|
|
return false;
|
|
|
|
for (var i = 0; i < a.length; ++i)
|
|
|
|
if (a[i] != b[i])
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
};
|
2011-10-27 23:43:38 +04:00
|
|
|
|
2011-09-25 18:38:00 +04:00
|
|
|
// Helper test function - takes the name of test method and two values of
|
|
|
|
// the given type.
|
|
|
|
//
|
|
|
|
// The optional comparator argument can be used for alternative notions of
|
|
|
|
// equality. The comparator should return true on equality.
|
|
|
|
function doTest(name, val1, val2, comparator) {
|
2011-10-27 23:43:38 +04:00
|
|
|
if (!comparator)
|
|
|
|
comparator = standardComparator;
|
2011-09-25 18:38:00 +04:00
|
|
|
var a = val1;
|
|
|
|
var b = {value: val2};
|
|
|
|
var rv = o[name].call(o, a, b);
|
2011-10-27 23:43:38 +04:00
|
|
|
do_check_true(comparator(rv, val2));
|
|
|
|
do_check_true(comparator(val1, b.value));
|
2011-09-25 18:38:00 +04:00
|
|
|
};
|
|
|
|
|
2011-10-27 23:43:38 +04:00
|
|
|
function doIsTest(name, val1, val1Is, val2, val2Is, comparator) {
|
|
|
|
var a = val1;
|
|
|
|
var aIs = val1Is;
|
|
|
|
var b = {value: val2};
|
|
|
|
var bIs = {value: val2Is};
|
|
|
|
var rvIs = {};
|
|
|
|
var rv = o[name].call(o, aIs, a, bIs, b, rvIs);
|
|
|
|
do_check_true(comparator(rv, val2));
|
|
|
|
do_check_eq(rvIs.value, val2Is);
|
|
|
|
do_check_true(comparator(val1, b.value));
|
|
|
|
do_check_eq(val1Is, bIs.value);
|
|
|
|
}
|
|
|
|
|
2011-09-25 18:38:00 +04:00
|
|
|
// Workaround for bug 687612 (inout parameters broken for dipper types).
|
|
|
|
// We do a simple test of copying a into b, and ignore the rv.
|
|
|
|
function doTestWorkaround(name, val1) {
|
|
|
|
var a = val1;
|
|
|
|
var b = {value: ""};
|
|
|
|
o[name].call(o, a, b);
|
|
|
|
do_check_eq(val1, b.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test all the different types
|
|
|
|
doTest("testBoolean", true, false);
|
|
|
|
doTest("testOctet", 4, 156);
|
|
|
|
doTest("testShort", -456, 1299);
|
|
|
|
doTest("testLong", 50060, -12121212);
|
|
|
|
doTest("testLongLong", 12345, -10000000000);
|
|
|
|
doTest("testUnsignedShort", 1532, 65000);
|
|
|
|
doTest("testUnsignedLong", 0, 4000000000);
|
|
|
|
doTest("testUnsignedLongLong", 215435, 3453492580348535809);
|
|
|
|
doTest("testFloat", 4.9, -11.2, fuzzComparator);
|
|
|
|
doTest("testDouble", -80.5, 15000.2, fuzzComparator);
|
|
|
|
doTest("testChar", "a", "2");
|
|
|
|
doTest("testString", "someString", "another string");
|
|
|
|
// TODO: Fix bug 687679 and use the second argument listed below
|
|
|
|
doTest("testWchar", "z", "q");// "ア");
|
|
|
|
// TODO - Test nsIID in bug 687662
|
|
|
|
doTestWorkaround("testDOMString", "Beware: ☠ s");
|
|
|
|
doTestWorkaround("testAString", "Frosty the ☃ ;-)");
|
|
|
|
doTestWorkaround("testAUTF8String", "We deliver 〠!");
|
|
|
|
doTestWorkaround("testACString", "Just a regular C string.");
|
2011-09-25 18:38:00 +04:00
|
|
|
doTest("testJsval", {aprop: 12, bprop: "str"}, 4.22);
|
2011-10-27 23:43:38 +04:00
|
|
|
|
|
|
|
// Test arrays.
|
|
|
|
doIsTest("testShortArray", [2, 4, 6], 3, [1, 3, 5, 7], 4, arrayComparator);
|
|
|
|
doIsTest("testLongLongArray", [-10000000000], 1, [1, 3, 1234511234551], 3, arrayComparator);
|
2011-09-25 18:38:00 +04:00
|
|
|
}
|