sleepy_penguin.git  about / heads / tags
Linux I/O events for Ruby
blob 94354a25af99cb040957f055c6184c7a52e13c6c 6101 bytes (raw)
$ git show pu:test/test_splice.rb	# shows this blob on the CLI

  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
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
 
# -*- encoding: binary -*-
require_relative 'helper'
require 'tempfile'
require 'socket'
require 'io/nonblock'
require 'timeout'

class TestSplice < Test::Unit::TestCase

  def test_splice
    str = 'abcde'
    size = 5
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')

    assert_equal 5, tmp.syswrite(str)
    tmp.sysseek(0)

    nr = SleepyPenguin.splice(tmp.fileno, wr.fileno, size)
    assert_equal size, nr
    assert_equal str, rd.sysread(size)
  end

  def test_splice_io
    str = 'abcde'
    size = 5
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')

    assert_equal 5, tmp.syswrite(str)
    tmp.sysseek(0)

    nr = SleepyPenguin.splice(tmp, wr, size)
    assert_equal size, nr
    assert_equal str, rd.sysread(size)
  end

  def test_splice_io_noflags
    str = 'abcde'
    size = 5
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')

    assert_equal 5, tmp.syswrite(str)
    tmp.sysseek(0)

    nr = SleepyPenguin.splice(tmp, wr, size)
    assert_equal size, nr
    assert_equal str, rd.sysread(size)
  end

  def test_trysplice_io_noflags
    str = 'abcde'
    size = 5
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')

    assert_equal 5, tmp.syswrite(str)
    tmp.sysseek(0)

    nr = SleepyPenguin.splice(tmp, wr, size, :nonblock, exception: false)
    assert_equal size, nr
    assert_equal str, rd.sysread(size)
  end

  def test_splice_io_ish
    str = 'abcde'
    size = 5
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')
    io_ish = [ tmp ]
    def io_ish.to_io
      first.to_io
    end

    assert_equal 5, tmp.syswrite(str)
    tmp.sysseek(0)

    nr = SleepyPenguin.splice(io_ish, wr, size)
    assert_equal size, nr
    assert_equal str, rd.sysread(size)
  end

  def test_splice_in_offset
    str = 'abcde'
    off = 3
    len = 2
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')

    assert_equal 5, tmp.syswrite(str)
    tmp.sysseek(0)

    nr = SleepyPenguin.splice(tmp.fileno, wr.fileno, len, off_in: off)
    assert_equal len, nr
    assert_equal 'de', rd.sysread(len)
  end

  def test_splice_out_offset
    str = 'abcde'
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')

    assert_equal 5, wr.syswrite(str)
    nr = SleepyPenguin.splice(rd.fileno, tmp.fileno, str.size, off_out: 3)
    assert_equal 5, nr
    tmp.sysseek(0)
    assert_equal "\0\0\0abcde", tmp.sysread(9)
  end

  def test_splice_nonblock
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')

    assert_raises(Errno::EAGAIN) {
      SleepyPenguin.splice(rd.fileno, tmp.fileno, 5, :nonblock, off_out: 0)
    }
  end

  def test_trysplice_nonblock
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')
    assert_equal :EAGAIN, SleepyPenguin.splice(rd, tmp, 5, :nonblock,
                                               off_out: 0, exception: false)
  end

  def test_trysplice_nonblock_noargs
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')
    assert_equal :EAGAIN, SleepyPenguin.splice(rd, tmp, 5, :nonblock,
                                               off_out: 0, exception: false)
    assert_equal :EAGAIN, SleepyPenguin.splice(rd, tmp, 5, [:more,:nonblock],
                                               off_out: 0,
                                               exception: false)
  end

  def test_splice_eof
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')
    wr.syswrite 'abc'
    wr.close

    nr = SleepyPenguin.splice(rd.fileno, tmp.fileno, 5, :nonblock, off_out: 0)
    assert_equal 3, nr
    assert_raises(EOFError) {
      SleepyPenguin.splice(rd.fileno, tmp.fileno, 5, :nonblock, off_out: 0)
    }
  end

  def test_trysplice_eof
    rd, wr = IO.pipe
    tmp = Tempfile.new('ruby_splice')
    wr.syswrite 'abc'
    wr.close

    nr = SleepyPenguin.splice(rd, tmp, 5, off_out: 0, exception: false)
    assert_equal 3, nr
    assert_nil SleepyPenguin.splice(rd, tmp, 5, :nonblock,
                                    off_out: 0, exception: false)
  end

  def test_splice_nonblock_socket
    server = TCPServer.new('127.0.0.1', 0)
    port = server.addr[1]
    rp, wp = IO.pipe
    rs = TCPSocket.new('127.0.0.1', port)
    rs.nonblock = true
    assert_raises(Errno::EAGAIN) {
      SleepyPenguin.splice(rs, wp, 1024)
    }
    rs.close
    server.close
  end

  def test_tee
    str = 'abcde'
    size = 5
    rda, wra = IO.pipe
    rdb, wrb = IO.pipe

    assert_equal 5, wra.syswrite(str)
    nr = SleepyPenguin.tee(rda.fileno, wrb.fileno, size)
    assert_equal 5, nr
    assert_equal str, rdb.sysread(5)
    assert_equal str, rda.sysread(5)
  end

  def test_trytee
    str = 'abcde'
    size = 5
    rda, wra = IO.pipe
    rdb, wrb = IO.pipe

    assert_equal 5, wra.syswrite(str)
    nr = SleepyPenguin.tee(rda, wrb, size, :nonblock, exception: false)
    assert_equal 5, nr
    assert_equal str, rdb.sysread(5)
    assert_equal str, rda.sysread(5)
  end

  def test_tee_eof
    rda, wra = IO.pipe
    rdb, wrb = IO.pipe
    wra.close
    assert_raises(EOFError) {
      SleepyPenguin.tee(rda.fileno, wrb.fileno, 4096)
    }
  end

  def test_trytee_eof
    rda, wra = IO.pipe
    rdb, wrb = IO.pipe
    wra.close
    assert_nil SleepyPenguin.tee(rda, wrb, 4096, :nonblock, exception: false)
  end

  def test_tee_nonblock
    rda, wra = IO.pipe
    rdb, wrb = IO.pipe
    assert_raises(Errno::EAGAIN) {
      SleepyPenguin.tee(rda.fileno, wrb.fileno, 4096, SleepyPenguin::F_NONBLOCK)
    }
  end

  def test_trytee_nonblock
    rda, wra = IO.pipe
    rdb, wrb = IO.pipe
    assert_equal :EAGAIN, SleepyPenguin.tee(rda, wrb, 4096, :nonblock,
                                            exception: false)
  end

  def test_tee_io
    str = 'abcde'
    size = 5
    rda, wra = IO.pipe
    rdb, wrb = IO.pipe

    assert_equal 5, wra.syswrite(str)
    nr = SleepyPenguin.tee(rda, wrb, size)
    assert_equal 5, nr
    assert_equal str, rdb.sysread(5)
    assert_equal str, rda.sysread(5)
  end

  def test_constants
    %w(move nonblock more).each { |x|
      assert Integer === SleepyPenguin.const_get("F_#{x.upcase}")
    }
  end
end if SleepyPenguin.respond_to?(:splice)

git clone https://yhbt.net/sleepy_penguin.git