summaryrefslogtreecommitdiff
path: root/spec/ruby/core/encoding/invalid_byte_sequence_error/readagain_bytes_spec.rb
blob: 6f0ff524f5c025777822fe9db45e627957b8286f (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
# -*- encoding: binary -*-
require_relative '../fixtures/classes'

describe "Encoding::InvalidByteSequenceError#readagain_bytes" do
  before :each do
    @exception, @errinfo = EncodingSpecs::InvalidByteSequenceError.exception
    @exception2, @errinfo2 = EncodingSpecs::InvalidByteSequenceErrorIndirect.exception
  end

  it "returns a String" do
    @exception.readagain_bytes.should be_an_instance_of(String)
    @exception2.readagain_bytes.should be_an_instance_of(String)
  end

  it "returns the bytes to be read again" do
    @exception.readagain_bytes.size.should == 1
    @exception.readagain_bytes.should == "a".force_encoding('binary')
    @exception.readagain_bytes.should == @errinfo[-1]

    @exception2.readagain_bytes.size.should == 1
    @exception2.readagain_bytes.should == "\xFF".force_encoding('binary')
    @exception2.readagain_bytes.should == @errinfo2[-1]
  end

  it "uses ASCII-8BIT as the encoding" do
    @exception.readagain_bytes.encoding.should == Encoding::ASCII_8BIT

    @exception2.readagain_bytes.encoding.should == Encoding::ASCII_8BIT
  end
end