Sha256: 30a2a466510ace2e13f3cdddc2d00a0a73211b61cca4cd0a52cb8e6264ddf4f3

Contents?: true

Size: 1.27 KB

Versions: 6

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2012-2017, by Tony Arcieri.
# Copyright, 2012, by Logan Bowers.
# Copyright, 2017, by Gregory Longtin.
# Copyright, 2023, by Samuel Williams.

require "spec_helper"

RSpec.describe "IO.pipe" do
  let(:pair) { IO.pipe }

  let :unreadable_subject do
    pair.first
  end

  let :readable_subject do
    pipe, peer = pair
    peer << "data"
    pipe
  end

  let :writable_subject do
    pair.last
  end

  let :unwritable_subject do
    _reader, pipe = pair

    # HACK: On OS X 10.8, this str must be larger than PIPE_BUF. Otherwise,
    #      the write is atomic and select() will return writable but write()
    #      will throw EAGAIN if there is too little space to write the string
    # TODO: Use FFI to lookup the platform-specific size of PIPE_BUF
    str = "JUNK IN THE TUBES" * 10_000
    cntr = 0
    begin
      pipe.write_nonblock str
      cntr += 1
      t = select [], [pipe], [], 0
    rescue Errno::EPIPE
      break
    rescue IO::EWOULDBLOCKWaitWritable
      skip "windows - can't test due to 'select' not showing correct status"
      break
    end while t && t[1].include?(pipe) && cntr < 20

    pipe
  end

  it_behaves_like "an NIO selectable"
  it_behaves_like "an NIO selectable stream"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
nio4r-2.7.1-java spec/nio/selectables/pipe_spec.rb
nio4r-2.7.1 spec/nio/selectables/pipe_spec.rb
nio4r-2.7.0-java spec/nio/selectables/pipe_spec.rb
nio4r-2.7.0 spec/nio/selectables/pipe_spec.rb
nio4r-2.6.1-java spec/nio/selectables/pipe_spec.rb
nio4r-2.6.1 spec/nio/selectables/pipe_spec.rb