summaryrefslogtreecommitdiff
path: root/js/test/Ice/defaultValue/Client.js
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-04-30 21:10:23 +0200
committerJose <jose@zeroc.com>2018-04-30 21:10:23 +0200
commit530608e4ce63dd36d1659b58d1a3fb7fdcf56bea (patch)
treeb5195405b16dd31ac1c486daf7f3ff2572ce6499 /js/test/Ice/defaultValue/Client.js
parentAllow FileParser.Endpoints to be set via Ice::Properties (#58) (diff)
downloadice-530608e4ce63dd36d1659b58d1a3fb7fdcf56bea.tar.bz2
ice-530608e4ce63dd36d1659b58d1a3fb7fdcf56bea.tar.xz
ice-530608e4ce63dd36d1659b58d1a3fb7fdcf56bea.zip
Fix JavaScript errors and warnings report by ESLINT
Close #28
Diffstat (limited to 'js/test/Ice/defaultValue/Client.js')
-rw-r--r--js/test/Ice/defaultValue/Client.js343
1 files changed, 175 insertions, 168 deletions
diff --git a/js/test/Ice/defaultValue/Client.js b/js/test/Ice/defaultValue/Client.js
index e15f5080f2c..6182af97b43 100644
--- a/js/test/Ice/defaultValue/Client.js
+++ b/js/test/Ice/defaultValue/Client.js
@@ -12,7 +12,7 @@
const Ice = require("ice").Ice;
const Test = require("Test").Test;
- async function run(out, initData)
+ function run(out, initData)
{
function test(value)
{
@@ -22,183 +22,190 @@
}
}
- out.write("testing default values... ");
+ try
{
- const v = new Test.Struct1();
- test(!v.boolFalse);
- test(v.boolTrue);
- test(v.b === 254);
- test(v.s === 16000);
- test(v.i === 3);
- test(v.l.equals(new Ice.Long(0, 4)));
- test(v.f === 5.1);
- test(v.d === 6.2);
- test(v.str === "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
- test(v.c1 === Test.Color.red);
- test(v.c2 === Test.Color.green);
- test(v.c3 === Test.Color.blue);
- test(v.nc1 === Test.Nested.Color.red);
- test(v.nc2 === Test.Nested.Color.green);
- test(v.nc3 === Test.Nested.Color.blue);
- test(v.noDefault === "");
- test(v.zeroI === 0);
- test(v.zeroL.equals(new Ice.Long(0, 0)));
- test(v.zeroF === 0);
- test(v.zeroDotF === 0);
- test(v.zeroD === 0);
- test(v.zeroDotD === 0);
- }
+ out.write("testing default values... ");
+ {
+ const v = new Test.Struct1();
+ test(!v.boolFalse);
+ test(v.boolTrue);
+ test(v.b === 254);
+ test(v.s === 16000);
+ test(v.i === 3);
+ test(v.l.equals(new Ice.Long(0, 4)));
+ test(v.f === 5.1);
+ test(v.d === 6.2);
+ test(v.str === "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
+ test(v.c1 === Test.Color.red);
+ test(v.c2 === Test.Color.green);
+ test(v.c3 === Test.Color.blue);
+ test(v.nc1 === Test.Nested.Color.red);
+ test(v.nc2 === Test.Nested.Color.green);
+ test(v.nc3 === Test.Nested.Color.blue);
+ test(v.noDefault === "");
+ test(v.zeroI === 0);
+ test(v.zeroL.equals(new Ice.Long(0, 0)));
+ test(v.zeroF === 0);
+ test(v.zeroDotF === 0);
+ test(v.zeroD === 0);
+ test(v.zeroDotD === 0);
+ }
- {
- const v = new Test.Struct2();
- test(v.boolTrue === Test.ConstBool);
- test(v.b === Test.ConstByte);
- test(v.s === Test.ConstShort);
- test(v.i === Test.ConstInt);
- test(v.l.equals(Test.ConstLong));
- test(v.f === Test.ConstFloat);
- test(v.d === Test.ConstDouble);
- test(v.str == Test.ConstString);
- test(v.c1 === Test.ConstColor1);
- test(v.c2 === Test.ConstColor2);
- test(v.c3 === Test.ConstColor3);
- test(v.nc1 === Test.ConstNestedColor1);
- test(v.nc2 === Test.ConstNestedColor2);
- test(v.nc3 === Test.ConstNestedColor3);
- }
+ {
+ const v = new Test.Struct2();
+ test(v.boolTrue === Test.ConstBool);
+ test(v.b === Test.ConstByte);
+ test(v.s === Test.ConstShort);
+ test(v.i === Test.ConstInt);
+ test(v.l.equals(Test.ConstLong));
+ test(v.f === Test.ConstFloat);
+ test(v.d === Test.ConstDouble);
+ test(v.str === Test.ConstString);
+ test(v.c1 === Test.ConstColor1);
+ test(v.c2 === Test.ConstColor2);
+ test(v.c3 === Test.ConstColor3);
+ test(v.nc1 === Test.ConstNestedColor1);
+ test(v.nc2 === Test.ConstNestedColor2);
+ test(v.nc3 === Test.ConstNestedColor3);
+ }
- {
- const v = new Test.Base();
- test(!v.boolFalse);
- test(v.boolTrue);
- test(v.b === 1);
- test(v.s === 2);
- test(v.i === 3);
- test(v.l.equals(new Ice.Long(0, 4)));
- test(v.f === 5.1);
- test(v.d === 6.2);
- test(v.str == "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
- test(v.noDefault === "");
- test(v.zeroI === 0);
- test(v.zeroL.equals(new Ice.Long(0, 0)));
- test(v.zeroF === 0);
- test(v.zeroDotF === 0);
- test(v.zeroD === 0);
- test(v.zeroDotD === 0);
- }
+ {
+ const v = new Test.Base();
+ test(!v.boolFalse);
+ test(v.boolTrue);
+ test(v.b === 1);
+ test(v.s === 2);
+ test(v.i === 3);
+ test(v.l.equals(new Ice.Long(0, 4)));
+ test(v.f === 5.1);
+ test(v.d === 6.2);
+ test(v.str == "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
+ test(v.noDefault === "");
+ test(v.zeroI === 0);
+ test(v.zeroL.equals(new Ice.Long(0, 0)));
+ test(v.zeroF === 0);
+ test(v.zeroDotF === 0);
+ test(v.zeroD === 0);
+ test(v.zeroDotD === 0);
+ }
- {
- const v = new Test.Derived();
- test(!v.boolFalse);
- test(v.boolTrue);
- test(v.b === 1);
- test(v.s === 2);
- test(v.i === 3);
- test(v.l.equals(new Ice.Long(0, 4)));
- test(v.f === 5.1);
- test(v.d === 6.2);
- test(v.str == "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
- test(v.c1 === Test.Color.red);
- test(v.c2 === Test.Color.green);
- test(v.c3 === Test.Color.blue);
- test(v.nc1 === Test.Nested.Color.red);
- test(v.nc2 === Test.Nested.Color.green);
- test(v.nc3 === Test.Nested.Color.blue);
- test(v.noDefault === "");
- test(v.zeroI === 0);
- test(v.zeroL.equals(new Ice.Long(0, 0)));
- test(v.zeroF === 0);
- test(v.zeroDotF === 0);
- test(v.zeroD === 0);
- test(v.zeroDotD === 0);
- }
+ {
+ const v = new Test.Derived();
+ test(!v.boolFalse);
+ test(v.boolTrue);
+ test(v.b === 1);
+ test(v.s === 2);
+ test(v.i === 3);
+ test(v.l.equals(new Ice.Long(0, 4)));
+ test(v.f === 5.1);
+ test(v.d === 6.2);
+ test(v.str == "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
+ test(v.c1 === Test.Color.red);
+ test(v.c2 === Test.Color.green);
+ test(v.c3 === Test.Color.blue);
+ test(v.nc1 === Test.Nested.Color.red);
+ test(v.nc2 === Test.Nested.Color.green);
+ test(v.nc3 === Test.Nested.Color.blue);
+ test(v.noDefault === "");
+ test(v.zeroI === 0);
+ test(v.zeroL.equals(new Ice.Long(0, 0)));
+ test(v.zeroF === 0);
+ test(v.zeroDotF === 0);
+ test(v.zeroD === 0);
+ test(v.zeroDotD === 0);
+ }
- {
- const v = new Test.BaseEx();
- test(!v.boolFalse);
- test(v.boolTrue);
- test(v.b === 1);
- test(v.s === 2);
- test(v.i === 3);
- test(v.l.equals(new Ice.Long(0, 4)));
- test(v.f === 5.1);
- test(v.d === 6.2);
- test(v.str == "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
- test(v.noDefault === "");
- test(v.zeroI === 0);
- test(v.zeroL.equals(new Ice.Long(0, 0)));
- test(v.zeroF === 0);
- test(v.zeroDotF === 0);
- test(v.zeroD === 0);
- test(v.zeroDotD === 0);
- }
+ {
+ const v = new Test.BaseEx();
+ test(!v.boolFalse);
+ test(v.boolTrue);
+ test(v.b === 1);
+ test(v.s === 2);
+ test(v.i === 3);
+ test(v.l.equals(new Ice.Long(0, 4)));
+ test(v.f === 5.1);
+ test(v.d === 6.2);
+ test(v.str == "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
+ test(v.noDefault === "");
+ test(v.zeroI === 0);
+ test(v.zeroL.equals(new Ice.Long(0, 0)));
+ test(v.zeroF === 0);
+ test(v.zeroDotF === 0);
+ test(v.zeroD === 0);
+ test(v.zeroDotD === 0);
+ }
- {
- const v = new Test.DerivedEx();
- test(!v.boolFalse);
- test(v.boolTrue);
- test(v.b === 1);
- test(v.s === 2);
- test(v.i === 3);
- test(v.l.equals(new Ice.Long(0, 4)));
- test(v.f === 5.1);
- test(v.d === 6.2);
- test(v.str == "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
- test(v.noDefault === "");
- test(v.c1 === Test.Color.red);
- test(v.c2 === Test.Color.green);
- test(v.c3 === Test.Color.blue);
- test(v.nc1 === Test.Nested.Color.red);
- test(v.nc2 === Test.Nested.Color.green);
- test(v.nc3 === Test.Nested.Color.blue);
- test(v.zeroI === 0);
- test(v.zeroL.equals(new Ice.Long(0, 0)));
- test(v.zeroF === 0);
- test(v.zeroDotF === 0);
- test(v.zeroD === 0);
- test(v.zeroDotD === 0);
- }
- out.writeLine("ok");
+ {
+ const v = new Test.DerivedEx();
+ test(!v.boolFalse);
+ test(v.boolTrue);
+ test(v.b === 1);
+ test(v.s === 2);
+ test(v.i === 3);
+ test(v.l.equals(new Ice.Long(0, 4)));
+ test(v.f === 5.1);
+ test(v.d === 6.2);
+ test(v.str == "foo \\ \"bar\n \r\n\t\u000b\f\u0007\b?");
+ test(v.noDefault === "");
+ test(v.c1 === Test.Color.red);
+ test(v.c2 === Test.Color.green);
+ test(v.c3 === Test.Color.blue);
+ test(v.nc1 === Test.Nested.Color.red);
+ test(v.nc2 === Test.Nested.Color.green);
+ test(v.nc3 === Test.Nested.Color.blue);
+ test(v.zeroI === 0);
+ test(v.zeroL.equals(new Ice.Long(0, 0)));
+ test(v.zeroF === 0);
+ test(v.zeroDotF === 0);
+ test(v.zeroD === 0);
+ test(v.zeroDotD === 0);
+ }
+ out.writeLine("ok");
- out.write("testing default constructor... ");
- {
- const v2 = new Test.StructNoDefaults();
- test(v2.bo === false);
- test(v2.b === 0);
- test(v2.s === 0);
- test(v2.i === 0);
- test(v2.l.equals(new Ice.Long(0, 0)));
- test(v2.f === 0.0);
- test(v2.d === 0.0);
- test(v2.str === "");
- test(v2.c1 == Test.Color.red);
- test(v2.bs === null);
- test(v2.is === null);
- test(v2.st !== null && v2.st instanceof Test.InnerStruct);
- test(v2.dict === null);
- }
+ out.write("testing default constructor... ");
+ {
+ const v2 = new Test.StructNoDefaults();
+ test(v2.bo === false);
+ test(v2.b === 0);
+ test(v2.s === 0);
+ test(v2.i === 0);
+ test(v2.l.equals(new Ice.Long(0, 0)));
+ test(v2.f === 0.0);
+ test(v2.d === 0.0);
+ test(v2.str === "");
+ test(v2.c1 == Test.Color.red);
+ test(v2.bs === null);
+ test(v2.is === null);
+ test(v2.st !== null && v2.st instanceof Test.InnerStruct);
+ test(v2.dict === null);
+ }
- {
- const e = new Test.ExceptionNoDefaults();
- test(e.str === "");
- test(e.c1 == Test.Color.red);
- test(e.bs === null);
- test(e.st !== null && e.st instanceof Test.InnerStruct);
- test(e.dict === null);
- }
+ {
+ const e = new Test.ExceptionNoDefaults();
+ test(e.str === "");
+ test(e.c1 == Test.Color.red);
+ test(e.bs === null);
+ test(e.st !== null && e.st instanceof Test.InnerStruct);
+ test(e.dict === null);
+ }
+ {
+ const cl = new Test.ClassNoDefaults();
+ test(cl.str === "");
+ test(cl.c1 == Test.Color.red);
+ test(cl.bs === null);
+ test(cl.st !== null && cl.st instanceof Test.InnerStruct);
+ test(cl.dict === null);
+ }
+ out.writeLine("ok");
+ return Promise.resolve();
+ }
+ catch(ex)
{
- const cl = new Test.ClassNoDefaults();
- test(cl.str === "");
- test(cl.c1 == Test.Color.red);
- test(cl.bs === null);
- test(cl.st !== null && cl.st instanceof Test.InnerStruct);
- test(cl.dict === null);
+ return Promise.reject(ex);
}
- out.writeLine("ok");
}
exports._test = run;
-}
-(typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? module : undefined,
- typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? require : this.Ice._require,
- typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? exports : this));
+}(typeof global !== "undefined" && typeof global.process !== "undefined" ? module : undefined,
+ typeof global !== "undefined" && typeof global.process !== "undefined" ? require : this.Ice._require,
+ typeof global !== "undefined" && typeof global.process !== "undefined" ? exports : this));