@rtinternal/java
Version:
[Fork of joeferner/node-java] Bridge API to connect with existing Java APIs.
117 lines (100 loc) • 3.89 kB
JavaScript
// testNoAsync.js
// Just Sync and Promise, both with a non-empty suffix.
var java = require("../");
var assert = require("assert");
var _ = require('lodash');
var when = require('when');
module.exports = {
launch: function(test) {
test.expect(7);
var api = _.functions(java);
test.ok(_.includes(api, 'isJvmCreated'), 'Expected `isJvmCreated` to be present, but it is NOT.');
test.ok(!java.isJvmCreated());
java.asyncOptions = {
syncSuffix: "Sync",
promiseSuffix: 'Promise',
promisify: require('when/node').lift
};
function before() {
var promise = when.promise(function(resolve, reject) {
test.ok(!java.isJvmCreated());
resolve();
});
return promise;
}
function after() {
var promise = when.promise(function(resolve, reject) {
test.ok(java.isJvmCreated());
resolve();
});
return promise;
}
java.registerClientP(before, after);
java.registerClientP(null, after);
java.registerClientP(before);
java.ensureJvm().done(function() {
test.ok(java.isJvmCreated());
test.done();
});
},
testAPI: function(test) {
test.expect(6);
var arrayList = java.newInstanceSync("java.util.ArrayList");
test.ok(arrayList);
test.ok(java.instanceOf(arrayList, "java.util.ArrayList"));
test.ok(!_.isUndefined(arrayList.addSync), 'Expected `addSync` to be present, but it is NOT.');
test.ok(!_.isUndefined(arrayList.addPromise), 'Expected `addPromise` to be present, but it is NOT.');
test.ok(_.isUndefined(arrayList.add), 'Expected `add` to NOT be present, but it is.');
test.ok(_.isUndefined(arrayList.addAsync), 'Expected `addAsync` to NOT be present, but it is.');
test.done();
},
testImportClass: function(test) {
test.expect(3);
// Note: java.import executes javascript code in lib/nodeJavaBridge that makes sync calls to java classes.
var ArrayList = java.import("java.util.ArrayList");
test.ok(ArrayList);
var arrayList = new ArrayList();
test.ok(arrayList);
test.strictEqual(arrayList.sizeSync(), 0);
test.done();
},
testStaticAPI: function(test) {
test.expect(6);
var String = java.import("java.lang.String");
test.ok(String);
var api = _.functions(String);
test.ok(_.includes(api, 'formatSync'), 'Expected `formatSync` to be present, but it is NOT.');
test.ok(_.includes(api, 'formatPromise'), 'Expected `formatPromise` to be present, but it is NOT.');
test.ok(!_.includes(api, 'format'), 'Expected `format` to NOT be present, but it is.');
test.ok(!_.includes(api, 'formatAsync'), 'Expected `formatAsync` to NOT be present, but it is.');
test.ok(!_.includes(api, 'formatundefined'), 'Expected `formatundefined` to NOT be present, but it is.');
test.done();
},
testSyncCalls: function(test) {
test.expect(1);
var arrayList = java.newInstanceSync("java.util.ArrayList");
arrayList.addSync("hello");
arrayList.addSync("world");
test.strictEqual(arrayList.sizeSync(), 2);
test.done();
},
testStaticSyncCalls: function(test) {
test.expect(1);
// Note: java.import executes javascript code in lib/nodeJavaBridge that makes sync calls to java classes.
// Among other things, java.import creates Sync functions for static methods.
var String = java.import("java.lang.String");
test.strictEqual(String.formatSync('%s--%s', "hello", "world"), "hello--world");
test.done();
},
testPromiseCalls: function(test) {
test.expect(1);
var arrayList = java.newInstanceSync("java.util.ArrayList");
arrayList.addPromise("hello")
.then(function () { return arrayList.addPromise("world"); })
.then(function () { return arrayList.sizePromise(); })
.then(function (size) {
test.strictEqual(size, 2);
test.done();
});
}
}