aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/csharp/cpp11_std_unique_ptr_runme.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/csharp/cpp11_std_unique_ptr_runme.cs')
-rw-r--r--Examples/test-suite/csharp/cpp11_std_unique_ptr_runme.cs131
1 files changed, 131 insertions, 0 deletions
diff --git a/Examples/test-suite/csharp/cpp11_std_unique_ptr_runme.cs b/Examples/test-suite/csharp/cpp11_std_unique_ptr_runme.cs
new file mode 100644
index 000000000..7d905e08b
--- /dev/null
+++ b/Examples/test-suite/csharp/cpp11_std_unique_ptr_runme.cs
@@ -0,0 +1,131 @@
+using System;
+using cpp11_std_unique_ptrNamespace;
+
+public class cpp11_std_unique_ptr_runme {
+ private static void WaitForGC()
+ {
+ System.GC.Collect();
+ System.GC.WaitForPendingFinalizers();
+ System.Threading.Thread.Sleep(10);
+ }
+
+ private static void checkCount(int expected_count)
+ {
+ int actual_count = Klass.getTotal_count();
+ if (actual_count != expected_count)
+ throw new ApplicationException("Counts incorrect, expected:" + expected_count + " actual:" + actual_count);
+ }
+
+ public static void Main()
+ {
+ // Test raw pointer handling involving virtual inheritance
+ using (KlassInheritance kini = new KlassInheritance("KlassInheritanceInput")) {
+ checkCount(1);
+ string s = cpp11_std_unique_ptr.useKlassRawPtr(kini);
+ if (s != "KlassInheritanceInput")
+ throw new ApplicationException("Incorrect string: " + s);
+ }
+ checkCount(0);
+
+ // unique_ptr as input
+ using (Klass kin = new Klass("KlassInput")) {
+ checkCount(1);
+ string s = cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
+ checkCount(0);
+ if (s != "KlassInput")
+ throw new ApplicationException("Incorrect string: " + s);
+ if (!cpp11_std_unique_ptr.is_nullptr(kin))
+ throw new ApplicationException("is_nullptr failed");
+ } // Dispose should not fail, even though already deleted
+ checkCount(0);
+
+ using (Klass kin = new Klass("KlassInput")) {
+ checkCount(1);
+ string s = cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
+ checkCount(0);
+ if (s != "KlassInput")
+ throw new ApplicationException("Incorrect string: " + s);
+ if (!cpp11_std_unique_ptr.is_nullptr(kin))
+ throw new ApplicationException("is_nullptr failed");
+ bool exception_thrown = false;
+ try {
+ cpp11_std_unique_ptr.takeKlassUniquePtr(kin);
+ } catch (ApplicationException e) {
+ if (!e.Message.Contains("Cannot release ownership as memory is not owned"))
+ throw new ApplicationException("incorrect exception message");
+ exception_thrown = true;
+ }
+ if (!exception_thrown)
+ throw new ApplicationException("double usage of takeKlassUniquePtr should have been an error");
+ } // Dispose should not fail, even though already deleted
+ checkCount(0);
+
+ using (Klass kin = new Klass("KlassInput")) {
+ bool exception_thrown = false;
+ Klass notowned = cpp11_std_unique_ptr.get_not_owned_ptr(kin);
+ try {
+ cpp11_std_unique_ptr.takeKlassUniquePtr(notowned);
+ } catch (ApplicationException e) {
+ if (!e.Message.Contains("Cannot release ownership as memory is not owned"))
+ throw new ApplicationException("incorrect exception message");
+ exception_thrown = true;
+ }
+ if (!exception_thrown)
+ throw new ApplicationException("Should have thrown 'Cannot release ownership as memory is not owned' error");
+ checkCount(1);
+ }
+ checkCount(0);
+
+ using (KlassInheritance kini = new KlassInheritance("KlassInheritanceInput")) {
+ checkCount(1);
+ string s = cpp11_std_unique_ptr.takeKlassUniquePtr(kini);
+ checkCount(0);
+ if (s != "KlassInheritanceInput")
+ throw new ApplicationException("Incorrect string: " + s);
+ if (!cpp11_std_unique_ptr.is_nullptr(kini))
+ throw new ApplicationException("is_nullptr failed");
+ } // Dispose 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 ApplicationException("overloadTest failed");
+ if (cpp11_std_unique_ptr.overloadTest(null) != 1)
+ throw new ApplicationException("overloadTest failed");
+ if (cpp11_std_unique_ptr.overloadTest(new Klass("over")) != 1)
+ throw new ApplicationException("overloadTest failed");
+ checkCount(0);
+
+
+ // unique_ptr as output
+ Klass k1 = cpp11_std_unique_ptr.makeKlassUniquePtr("first");
+ if (k1.getLabel() != "first")
+ throw new Exception("wrong object label");
+
+ Klass k2 = cpp11_std_unique_ptr.makeKlassUniquePtr("second");
+ checkCount(2);
+
+ using (Klass k3 = cpp11_std_unique_ptr.makeKlassUniquePtr("second")) {
+ checkCount(3);
+ }
+ checkCount(2);
+
+ k1.Dispose();
+ k1 = null;
+ checkCount(1);
+
+ if (k2.getLabel() != "second")
+ throw new Exception("wrong object label");
+
+ k2.Dispose();
+ k2 = null;
+ checkCount(0);
+
+ if (cpp11_std_unique_ptr.makeNullUniquePtr() != null)
+ throw new Exception("null failure");
+ }
+}