HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.3.8/test/test_win32api.rb
# frozen_string_literal: false
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)