mirror of https://github.com/swig/swig
360 lines
12 KiB
JavaScript
360 lines
12 KiB
JavaScript
var cpp11_std_unique_ptr = require("cpp11_std_unique_ptr");
|
|
|
|
var checkCount = function(expected_count) {
|
|
actual_count = cpp11_std_unique_ptr.Klass.getTotal_count();
|
|
if (actual_count != expected_count)
|
|
throw new Error("Counts incorrect, expected:" + expected_count + " actual:" + actual_count);
|
|
}
|
|
|
|
// Test raw pointer handling involving virtual inheritance
|
|
{
|
|
kini = new cpp11_std_unique_ptr.KlassInheritance("KlassInheritanceInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.useKlassRawPtr(kini);
|
|
if (s !== "KlassInheritanceInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
// delete kini;
|
|
// Above not deleting the C++ object(node v12) - can't reliably control GC
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(kini);
|
|
checkCount(0);
|
|
}
|
|
|
|
|
|
///// INPUT BY VALUE /////
|
|
// unique_ptr as input
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
if (s !== "KlassInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kin))
|
|
throw new Error("is_nullptr failed");
|
|
delete kin; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
if (s !== "KlassInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kin))
|
|
throw new Error("is_nullptr failed");
|
|
exception_thrown = false;
|
|
try {
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
|
|
} catch (e) {
|
|
if (!e.message.includes("cannot release ownership as memory is not owned"))
|
|
throw new Error("incorrect exception message " + e.message);
|
|
exception_thrown = true;
|
|
}
|
|
if (!exception_thrown)
|
|
throw new Error("double usage of takeKlassUniquePtr should have been an error");
|
|
delete kin; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
exception_thrown = false;
|
|
notowned = cpp11_std_unique_ptr.get_not_owned_ptr(kin);
|
|
try {
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(notowned);
|
|
} catch (e) {
|
|
if (!e.message.includes("cannot release ownership as memory is not owned"))
|
|
throw new Error("incorrect exception message " + e.message);
|
|
exception_thrown = true;
|
|
}
|
|
if (!exception_thrown)
|
|
throw new Error("Should have thrown 'Cannot release ownership as memory is not owned' error");
|
|
checkCount(1);
|
|
// delete kin;
|
|
// Above not deleting the C++ object(node v12) - can't reliably control GC
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kini = new cpp11_std_unique_ptr.KlassInheritance("KlassInheritanceInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.takeKlassUniquePtr(kini);
|
|
checkCount(0);
|
|
if (s !== "KlassInheritanceInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kini))
|
|
throw new Error("is_nullptr failed");
|
|
delete kini; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(null);
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(cpp11_std_unique_ptr.make_null());
|
|
checkCount(0);
|
|
|
|
// overloaded parameters
|
|
if (cpp11_std_unique_ptr.overloadTest() != 0)
|
|
throw new RuntimeException("overloadTest failed");
|
|
if (cpp11_std_unique_ptr.overloadTest(null) != 1)
|
|
throw new RuntimeException("overloadTest failed");
|
|
if (cpp11_std_unique_ptr.overloadTest(new cpp11_std_unique_ptr.Klass("over")) != 1)
|
|
throw new RuntimeException("overloadTest failed");
|
|
checkCount(0);
|
|
|
|
|
|
///// INPUT BY RVALUE REF /////
|
|
// unique_ptr as input
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.moveKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
if (s !== "KlassInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kin))
|
|
throw new Error("is_nullptr failed");
|
|
delete kin; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.moveKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
if (s !== "KlassInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kin))
|
|
throw new Error("is_nullptr failed");
|
|
exception_thrown = false;
|
|
try {
|
|
cpp11_std_unique_ptr.moveKlassUniquePtr(kin);
|
|
} catch (e) {
|
|
if (!e.message.includes("cannot release ownership as memory is not owned"))
|
|
throw new Error("incorrect exception message " + e.message);
|
|
exception_thrown = true;
|
|
}
|
|
if (!exception_thrown)
|
|
throw new Error("double usage of moveKlassUniquePtr should have been an error");
|
|
delete kin; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
exception_thrown = false;
|
|
notowned = cpp11_std_unique_ptr.get_not_owned_ptr(kin);
|
|
try {
|
|
cpp11_std_unique_ptr.moveKlassUniquePtr(notowned);
|
|
} catch (e) {
|
|
if (!e.message.includes("cannot release ownership as memory is not owned"))
|
|
throw new Error("incorrect exception message " + e.message);
|
|
exception_thrown = true;
|
|
}
|
|
if (!exception_thrown)
|
|
throw new Error("Should have thrown 'Cannot release ownership as memory is not owned' error");
|
|
checkCount(1);
|
|
// delete kin;
|
|
// Above not deleting the C++ object(node v12) - can't reliably control GC
|
|
cpp11_std_unique_ptr.moveKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kini = new cpp11_std_unique_ptr.KlassInheritance("KlassInheritanceInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.moveKlassUniquePtr(kini);
|
|
checkCount(0);
|
|
if (s !== "KlassInheritanceInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kini))
|
|
throw new Error("is_nullptr failed");
|
|
delete kini; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
cpp11_std_unique_ptr.moveKlassUniquePtr(null);
|
|
cpp11_std_unique_ptr.moveKlassUniquePtr(cpp11_std_unique_ptr.make_null());
|
|
checkCount(0);
|
|
|
|
// overloaded parameters
|
|
if (cpp11_std_unique_ptr.moveOverloadTest() != 0)
|
|
throw new RuntimeException("moveOverloadTest failed");
|
|
if (cpp11_std_unique_ptr.moveOverloadTest(null) != 1)
|
|
throw new RuntimeException("moveOverloadTest failed");
|
|
if (cpp11_std_unique_ptr.moveOverloadTest(new cpp11_std_unique_ptr.Klass("over")) != 1)
|
|
throw new RuntimeException("moveOverloadTest failed");
|
|
checkCount(0);
|
|
|
|
|
|
///// INPUT BY NON-CONST LVALUE REF /////
|
|
// unique_ptr as input
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.moveRefKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
if (s !== "KlassInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kin))
|
|
throw new Error("is_nullptr failed");
|
|
delete kin; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.moveRefKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
if (s !== "KlassInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kin))
|
|
throw new Error("is_nullptr failed");
|
|
exception_thrown = false;
|
|
try {
|
|
cpp11_std_unique_ptr.moveRefKlassUniquePtr(kin);
|
|
} catch (e) {
|
|
if (!e.message.includes("cannot release ownership as memory is not owned"))
|
|
throw new Error("incorrect exception message " + e.message);
|
|
exception_thrown = true;
|
|
}
|
|
if (!exception_thrown)
|
|
throw new Error("double usage of moveRefKlassUniquePtr should have been an error");
|
|
delete kin; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
exception_thrown = false;
|
|
notowned = cpp11_std_unique_ptr.get_not_owned_ptr(kin);
|
|
try {
|
|
cpp11_std_unique_ptr.moveRefKlassUniquePtr(notowned);
|
|
} catch (e) {
|
|
if (!e.message.includes("cannot release ownership as memory is not owned"))
|
|
throw new Error("incorrect exception message " + e.message);
|
|
exception_thrown = true;
|
|
}
|
|
if (!exception_thrown)
|
|
throw new Error("Should have thrown 'Cannot release ownership as memory is not owned' error");
|
|
checkCount(1);
|
|
// delete kin;
|
|
// Above not deleting the C++ object(node v12) - can't reliably control GC
|
|
cpp11_std_unique_ptr.moveRefKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kini = new cpp11_std_unique_ptr.KlassInheritance("KlassInheritanceInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.moveRefKlassUniquePtr(kini);
|
|
checkCount(0);
|
|
if (s !== "KlassInheritanceInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
if (!cpp11_std_unique_ptr.is_nullptr(kini))
|
|
throw new Error("is_nullptr failed");
|
|
delete kini; // Should not fail, even though already deleted
|
|
checkCount(0);
|
|
}
|
|
|
|
cpp11_std_unique_ptr.moveRefKlassUniquePtr(null);
|
|
cpp11_std_unique_ptr.moveRefKlassUniquePtr(cpp11_std_unique_ptr.make_null());
|
|
checkCount(0);
|
|
|
|
// overloaded parameters
|
|
if (cpp11_std_unique_ptr.moveRefOverloadTest() != 0)
|
|
throw new RuntimeException("moveRefOverloadTest failed");
|
|
if (cpp11_std_unique_ptr.moveRefOverloadTest(null) != 1)
|
|
throw new RuntimeException("moveRefOverloadTest failed");
|
|
if (cpp11_std_unique_ptr.moveRefOverloadTest(new cpp11_std_unique_ptr.Klass("over")) != 1)
|
|
throw new RuntimeException("moveRefOverloadTest failed");
|
|
checkCount(0);
|
|
|
|
|
|
///// INPUT BY CONST LVALUE REF /////
|
|
// unique_ptr as input
|
|
{
|
|
kin = new cpp11_std_unique_ptr.Klass("KlassInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.useRefKlassUniquePtr(kin);
|
|
checkCount(1);
|
|
if (s !== "KlassInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
// delete kin;
|
|
// Above not deleting the C++ object(node v12) - can't reliably control GC
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
}
|
|
|
|
{
|
|
kini = new cpp11_std_unique_ptr.KlassInheritance("KlassInheritanceInput");
|
|
checkCount(1);
|
|
s = cpp11_std_unique_ptr.useRefKlassUniquePtr(kini);
|
|
checkCount(1);
|
|
if (s !== "KlassInheritanceInput")
|
|
throw new Error("Incorrect string: " + s);
|
|
// delete kini;
|
|
// Above not deleting the C++ object - can't reliably control GC
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(kini);
|
|
checkCount(0);
|
|
}
|
|
|
|
cpp11_std_unique_ptr.useRefKlassUniquePtr(null);
|
|
cpp11_std_unique_ptr.useRefKlassUniquePtr(cpp11_std_unique_ptr.make_null());
|
|
checkCount(0);
|
|
|
|
// overloaded parameters
|
|
if (cpp11_std_unique_ptr.useRefOverloadTest() != 0)
|
|
throw new RuntimeException("useRefOverloadTest failed");
|
|
if (cpp11_std_unique_ptr.useRefOverloadTest(null) != 1)
|
|
throw new RuntimeException("useRefOverloadTest failed");
|
|
kin = new cpp11_std_unique_ptr.Klass("over")
|
|
if (cpp11_std_unique_ptr.useRefOverloadTest(kin) != 1)
|
|
throw new RuntimeException("useRefOverloadTest failed");
|
|
checkCount(1);
|
|
// delete kin;
|
|
// Above not deleting the C++ object - can't reliably control GC
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
|
|
checkCount(0);
|
|
|
|
|
|
// unique_ptr as output
|
|
k1 = cpp11_std_unique_ptr.makeKlassUniquePtr("first");
|
|
if (k1.getLabel() !== "first")
|
|
throw new Error("wrong object label");
|
|
|
|
k2 = cpp11_std_unique_ptr.makeKlassUniquePtr("second");
|
|
checkCount(2);
|
|
|
|
// delete k1;
|
|
// Above not deleting the C++ object(node v12) - can't reliably control GC
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(k1);
|
|
checkCount(1);
|
|
|
|
if (k2.getLabel() !== "second")
|
|
throw new Error("wrong object label");
|
|
|
|
// delete k2;
|
|
// Above not deleting the C++ object(node v12) - can't reliably control GC
|
|
cpp11_std_unique_ptr.takeKlassUniquePtr(k2);
|
|
checkCount(0);
|
|
|
|
if (cpp11_std_unique_ptr.makeNullUniquePtr() != null)
|
|
throw new Error("null failure");
|
|
|
|
// unique_ptr as output (rvalue ref)
|
|
k1 = cpp11_std_unique_ptr.makeRVRKlassUniquePtr("first");
|
|
if (k1.getLabel() !== "first")
|
|
throw new Error("wrong object label");
|
|
k1 = cpp11_std_unique_ptr.makeRVRKlassUniquePtr(null);
|
|
|
|
// unique_ptr as output (lvalue ref)
|
|
k1 = cpp11_std_unique_ptr.makeRefKlassUniquePtr("lvalueref");
|
|
if (k1.getLabel() !== "lvalueref")
|
|
throw new Error("wrong object label");
|
|
k1 = cpp11_std_unique_ptr.makeRefKlassUniquePtr(null);
|