summaryrefslogtreecommitdiff
path: root/spec/ffi/errno_spec.rb
blob: 6baeaab182e4c3283ec3d3b411d0dd07d8cc9fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# This file is part of ruby-ffi.
# For licensing, see LICENSE.SPECS
#

require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))

describe "FFI.errno" do
  module LibTest
    extend FFI::Library
    ffi_lib TestLibrary::PATH
    attach_function :setLastError, [ :int ], :void
    attach_function :setErrno, [ :int ], :void
  end

  it "FFI.errno contains errno from last function, FFI::LastError.winapi_error works differently per OS" do
    # setup
    LibTest.setErrno(0)
    LibTest.setLastError(0)
    LibTest.setLastError(0x12345678)
    # cases
    case FFI::Platform::OS
      when "cygwin"
        expect(FFI::LastError.winapi_error).to eq(0x12345678)
        LibTest.setErrno(0x2A)
        expect(FFI.errno).to eq(0x2A)
      when "windows"
        skip "not yet supported on JRuby on Windows (https://github.com/jruby/jruby/issues/7521)" if RUBY_ENGINE == "jruby"
        expect(FFI::LastError.winapi_error).to eq(0x12345678)
        expect(FFI.errno).to eq(0x12345678)
      else
        # Linux, and else
        expect {FFI::LastError.winapi_error}.to raise_exception(NoMethodError)
        expect {FFI::LastError.winapi_error = 0}.to raise_exception(NoMethodError)
        expect(FFI.errno).to eq(0x12345678)
    end
  end
end