Sha256: 45b35fc29633ee384f5e7b499195a091e7e27fcc12d17989baf62b2d6f0e12c3

Contents?: true

Size: 675 Bytes

Versions: 7

Compression:

Stored size: 675 Bytes

Contents

# -*- encoding: binary -*-
# Copyright (C) 2009-2016 all contributors <yahns-public@yhbt.net>
# License: GPL-3.0+ (https://www.gnu.org/licenses/gpl-2.0.txt)
# frozen_string_literal: true
require_relative 'helper'

class TestTmpIO < Testcase
  def setup
    skip 'sendfile missing' unless IO.instance_methods.include?(:sendfile)
  end

  def test_writev
    a, b = UNIXSocket.pair
    a.extend Kgio::PipeMethods
    tmpio = Yahns::TmpIO.new(Dir.tmpdir)
    ary = [ "hello\n".freeze, "world\n".freeze ].freeze
    tmpio.kgio_trywritev(ary)
    a.trysendfile(tmpio, 0, 12)
    assert_equal "hello\nworld\n", b.read(12)
  ensure
    b.close
    a.close
    tmpio.close
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
yahns-1.18.0 test/test_tmpio.rb
yahns-1.17.0 test/test_tmpio.rb
yahns-1.16.0 test/test_tmpio.rb
yahns-1.15.0 test/test_tmpio.rb
yahns-1.14.1 test/test_tmpio.rb
yahns-1.14.0 test/test_tmpio.rb
yahns-1.13.0 test/test_tmpio.rb