swig/Examples/test-suite/csharp/li_std_wstring_runme.cs
William S Fulton eb6efdb60b C# wstring testing
Test code from issue #1530
2019-07-23 19:10:35 +01:00

90 lines
2.6 KiB
C#

using System;
using li_std_wstringNamespace;
public class runme
{
static private void check_equal(char a, char b)
{
if (a != b)
throw new Exception("failed " + a + " " + b);
}
static private void check_equal(string a, string b)
{
if (a != b)
throw new Exception("failed " + a + " " + b);
}
static void Main()
{
char h = 'h';
check_equal(li_std_wstring.test_wcvalue(h), h);
string x = "abc";
check_equal(li_std_wstring.test_ccvalue(x), x);
check_equal(li_std_wstring.test_cvalue(x), x);
check_equal(li_std_wstring.test_wchar_overload(x), x);
check_equal(li_std_wstring.test_wchar_overload(), null);
li_std_wstring.test_pointer(null);
li_std_wstring.test_const_pointer(null);
try {
li_std_wstring.test_value(null);
throw new Exception("NULL check failed");
} catch (ArgumentNullException) {
}
try {
li_std_wstring.test_reference(null);
throw new Exception("NULL check failed");
} catch (ArgumentNullException e) {
if (!e.Message.Contains("type is null"))
throw new Exception("Missing text " + e);
}
try {
li_std_wstring.test_const_reference(null);
throw new Exception("NULL check failed");
} catch (ArgumentNullException e) {
if (!e.Message.Contains("null wstring"))
throw new Exception("Missing text " + e);
}
x = "hello";
check_equal(li_std_wstring.test_const_reference(x), x);
/* TODO
string s = "abc";
if (!li_std_wstring.test_equal_abc(s))
throw new Exception("Not equal " + s);
try {
li_std_wstring.test_throw();
} catch (Exception e) {
check_equal(e.Message, "throwing test_throw");
}
x = "abc\0def";
check_equal(li_std_wstring.test_value(x), x);
check_equal(li_std_wstring.test_ccvalue(x), "abc");
check_equal(li_std_wstring.test_wchar_overload(x), "abc");
*/
{
// Unicode strings
string[] test_strings = {
"JP: 日本語", "DE: Kröpeliner Straße" , "RU: Война и мир", "EN: War and Peace"
};
foreach (string expected in test_strings)
{
string result = li_std_wstring.test_value(expected);
if (result != expected)
throw new Exception("test_string failure '" + result + "' != '" + expected + "'");
}
}
}
}