From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/test_win32api.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 jni/ruby/test/test_win32api.rb (limited to 'jni/ruby/test/test_win32api.rb') diff --git a/jni/ruby/test/test_win32api.rb b/jni/ruby/test/test_win32api.rb new file mode 100644 index 0000000..b1856a3 --- /dev/null +++ b/jni/ruby/test/test_win32api.rb @@ -0,0 +1,23 @@ +require "test/unit" +begin + require "Win32API" +rescue LoadError +end + +class TestWin32API < Test::Unit::TestCase + def test_params_string + m2w = Win32API.new("kernel32", "MultiByteToWideChar", "ilpipi", "i") + str = "utf-8 string".encode("utf-8") + buf = "\0" * (str.size * 2) + assert_equal str.size, m2w.call(65001, 0, str, str.bytesize, buf, str.size) + assert_equal str.encode("utf-16le"), buf.force_encoding("utf-16le") + end + + def test_params_array + m2w = Win32API.new("kernel32", "MultiByteToWideChar", ["i", "l", "p", "i", "p", "i"], "i") + str = "utf-8 string".encode("utf-8") + buf = "\0" * (str.size * 2) + assert_equal str.size, m2w.call(65001, 0, str, str.bytesize, buf, str.size) + assert_equal str.encode("utf-16le"), buf.force_encoding("utf-16le") + end +end if defined?(Win32API) -- cgit v1.2.3