aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/encoding/invalid_byte_sequence_error/readagain_bytes_spec.rb
blob: 31408a4320308222d40ca0db694ad29ca9cf671a (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
# -*- encoding: binary -*-
require File.expand_path('../../fixtures/classes', __FILE__)

with_feature :encoding do
  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
end