Welcome to mirror list, hosted at ThFree Co, Russian Federation.

buffered_io_spec.rb « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8896abd46ef37496780fcb0e3dca499ed10b215 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# rubocop:disable Style/FrozenStringLiteralComment
require 'spec_helper'

RSpec.describe Gitlab::BufferedIo do
  describe '#readuntil' do
    let(:never_ending_tcp_socket) do
      Class.new do
        def initialize(*_)
          @read_counter = 0
        end

        def setsockopt(*_); end

        def closed?
          false
        end

        def close
          true
        end

        def to_io
          StringIO.new('Hello World!')
        end

        def write_nonblock(data, *_)
          data.size
        end

        def read_nonblock(buffer_size, *_)
          sleep 0.01
          @read_counter += 1

          raise 'Test did not raise HeaderReadTimeout' if @read_counter > 10

          'H' * buffer_size
        end
      end
    end

    before do
      stub_const('Gitlab::BufferedIo::HEADER_READ_TIMEOUT', 0.1)
    end

    subject(:readuntil) do
      Gitlab::BufferedIo.new(never_ending_tcp_socket.new).readuntil('a')
    end

    it 'raises a timeout error' do
      expect { readuntil }.to raise_error(Gitlab::HTTP::HeaderReadTimeout, /Request timed out after reading headers for 0\.[0-9]+ seconds/)
    end
  end
end
# rubocop:enable Style/FrozenStringLiteralComment