summaryrefslogtreecommitdiff
path: root/js/test/Ice/operationsBidir/AMDMyDerivedClassI.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/test/Ice/operationsBidir/AMDMyDerivedClassI.js')
-rw-r--r--js/test/Ice/operationsBidir/AMDMyDerivedClassI.js73
1 files changed, 2 insertions, 71 deletions
diff --git a/js/test/Ice/operationsBidir/AMDMyDerivedClassI.js b/js/test/Ice/operationsBidir/AMDMyDerivedClassI.js
index a8864118671..578749cc2ee 100644
--- a/js/test/Ice/operationsBidir/AMDMyDerivedClassI.js
+++ b/js/test/Ice/operationsBidir/AMDMyDerivedClassI.js
@@ -30,37 +30,31 @@
{
this._opByteSOnewayCount = 0;
},
-
ice_isA: function(id, current)
{
test(current.mode === Ice.OperationMode.Nonmutating);
return Ice.Object.prototype.ice_isA.call(this, id, current);
},
-
ice_ping: function(current)
{
test(current.mode === Ice.OperationMode.Nonmutating);
Ice.Object.prototype.ice_ping.call(this, current);
},
-
ice_ids: function(current)
{
test(current.mode === Ice.OperationMode.Nonmutating);
return Ice.Object.prototype.ice_ids.call(this, current);
},
-
ice_id: function(current)
{
test(current.mode === Ice.OperationMode.Nonmutating);
return Ice.Object.prototype.ice_id.call(this, current);
},
-
shutdown_async: function(cb, current)
{
current.adapter.getCommunicator().shutdown();
cb.ice_response();
},
-
delay_async: function(cb, ms, current)
{
Ice.Timer.setTimeout(
@@ -69,42 +63,35 @@
cb.ice_response();
}, ms);
},
-
opVoid_async: function(cb, current)
{
test(current.mode === Ice.OperationMode.Normal);
cb.ice_response();
},
-
opBool_async: function(cb, p1, p2, current)
{
cb.ice_response(p2, p1);
},
-
opBoolS_async: function(cb, p1, p2, current)
{
var p3 = p1.concat(p2);
cb.ice_response(p1.reverse(), p3);
},
-
opBoolSS_async: function(cb, p1, p2, current)
{
var p3 = p1.concat(p2);
cb.ice_response(p1.reverse(), p3);
},
-
opByte_async: function(cb, p1, p2, current)
{
cb.ice_response(p1, (p1 ^ p2) & 0xff);
},
-
opByteBoolD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
r.merge(p2);
cb.ice_response(r, p1);
},
-
opByteS_async: function(cb, p1, p2, current)
{
var i;
@@ -125,39 +112,33 @@
}
cb.ice_response(r, p3);
},
-
opByteSS_async: function(cb, p1, p2, current)
{
var r = p1.concat(p2);
cb.ice_response(r, p1.reverse());
},
-
opFloatDouble_async: function(cb, p1, p2, current)
{
cb.ice_response(p2, p1, p2);
},
-
opFloatDoubleS_async: function(cb, p1, p2, current)
{
var r = p2.concat(p1);
var p4 = p2.reverse();
cb.ice_response(r, p1, p4);
},
-
opFloatDoubleSS_async: function(cb, p1, p2, current)
{
var r = p2.concat(p2);
var p4 = p2.reverse();
cb.ice_response(r, p1, p4);
},
-
opLongFloatD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
r.merge(p2);
cb.ice_response(r, p1);
},
-
opMyClass_async: function(cb, p1, current)
{
var p2 = p1;
@@ -166,67 +147,56 @@
var r = TestAMD.MyClassPrx.uncheckedCast(current.adapter.createProxy(current.id));
cb.ice_response(r, p2, p3);
},
-
opMyEnum_async: function(cb, p1, current)
{
cb.ice_response(TestAMD.MyEnum.enum3, p1);
},
-
opShortIntD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
r.merge(p2);
cb.ice_response(r, p1);
},
-
opShortIntLong_async: function(cb, p1, p2, p3, current)
{
cb.ice_response(p3, p1, p2, p3);
},
-
opShortIntLongS_async: function(cb, p1, p2, p3, current)
{
cb.ice_response(p3, p1, p2.reverse(), p3.concat(p3));
},
-
opShortIntLongSS_async: function(cb, p1, p2, p3, current)
{
cb.ice_response(p3, p1, p2.reverse(), p3.concat(p3));
},
-
opString_async: function(cb, p1, p2, current)
{
cb.ice_response(p1 + " " + p2, p2 + " " + p1);
},
-
opStringMyEnumD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
r.merge(p2);
cb.ice_response(r, p1);
},
-
opMyEnumStringD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
r.merge(p2);
cb.ice_response(r, p1);
},
-
opMyStructMyEnumD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
r.merge(p2);
cb.ice_response(r, p1);
},
-
opByteBoolDS_async: function(cb, p1, p2, current)
{
var p3 = p2.concat(p1);
var r = p1.reverse();
cb.ice_response(r, p3);
},
-
opShortIntDS_async: function(cb, p1, p2, current)
{
var p3 = p2.concat(p1);
@@ -240,35 +210,30 @@
var r = p1.reverse();
cb.ice_response(r, p3);
},
-
opStringStringDS_async: function(cb, p1, p2, current)
{
var p3 = p2.concat(p1);
var r = p1.reverse();
cb.ice_response(r, p3);
},
-
opStringMyEnumDS_async: function(cb, p1, p2, current)
{
var p3 = p2.concat(p1);
var r = p1.reverse();
cb.ice_response(r, p3);
},
-
opMyEnumStringDS_async: function(cb, p1, p2, current)
{
var p3 = p2.concat(p1);
var r = p1.reverse();
cb.ice_response(r, p3);
},
-
opMyStructMyEnumDS_async: function(cb, p1, p2, current)
{
var p3 = p2.concat(p1);
var r = p1.reverse();
cb.ice_response(r, p3);
},
-
opByteByteSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -276,7 +241,6 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opBoolBoolSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -284,7 +248,6 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opShortShortSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -292,7 +255,6 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opIntIntSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -300,7 +262,6 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opLongLongSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -308,7 +269,6 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opStringFloatSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -316,7 +276,6 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opStringDoubleSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -324,7 +283,6 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opStringStringSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -332,7 +290,6 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opMyEnumMyEnumSD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
@@ -340,30 +297,25 @@
var p3 = p2.clone();
cb.ice_response(r, p3);
},
-
opIntS_async: function(cb, s, current)
{
cb.ice_response(s.map(function(v, i, arr) { return -v; }));
},
-
opByteSOneway_async: function(cb, s, current)
{
this._opByteSOnewayCount += 1;
cb.ice_response();
},
-
opByteSOnewayCallCount_async: function(cb, current)
{
var count = this._opByteSOnewayCount;
this._opByteSOnewayCount = 0;
cb.ice_response(count);
},
-
opContext_async: function(cb, current)
{
cb.ice_response(current.ctx);
},
-
opDoubleMarshaling_async: function(cb, p1, p2, current)
{
var d = 1278312346.0 / 13.0;
@@ -374,118 +326,97 @@
}
cb.ice_response();
},
-
opStringS_async: function(cb, p1, p2, current)
{
var p3 = p1.concat(p2);
var r = p1.reverse();
cb.ice_response(r, p3);
},
-
opStringSS_async: function(cb, p1, p2, current)
{
var p3 = p1.concat(p2);
var r = p2.reverse();
cb.ice_response(r, p3);
},
-
opStringSSS_async: function(cb, p1, p2, current)
{
var p3 = p1.concat(p2);
var r = p2.reverse();
cb.ice_response(r, p3);
},
-
opStringStringD_async: function(cb, p1, p2, current)
{
var r = p1.clone();
r.merge(p2);
cb.ice_response(r, p1);
},
-
opStruct_async: function(cb, p1, p2, current)
{
p1.s.s = "a new string";
cb.ice_response(p2, p1);
},
-
opIdempotent_async: function(cb, current)
{
test(current.mode === Ice.OperationMode.Idempotent);
cb.ice_response();
},
-
opNonmutating_async: function(cb, current)
{
test(current.mode === Ice.OperationMode.Nonmutating);
cb.ice_response();
},
-
opDerived_async: function(cb, current)
{
cb.ice_response();
},
-
opByte1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opShort1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opInt1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opLong1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opFloat1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opDouble1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opString1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opStringS1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opByteBoolD1_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opStringS2_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opByteBoolD2_async: function(cb, value, current)
{
cb.ice_response(value);
},
-
opMyClass1_async: function(cb, value, current)
{
return cb.ice_response(value);
},
-
opMyStruct1_async: function(cb, value, current)
{
return cb.ice_response(value);
@@ -495,5 +426,5 @@
exports.AMDMyDerivedClassI = AMDMyDerivedClassI;
}
(typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? module : undefined,
- typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? require : window.Ice.__require,
- typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? exports : window));
+ typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? require : this.Ice.__require,
+ typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? exports : this));