summaryrefslogtreecommitdiff
path: root/spec/ruby/core/encoding/invalid_byte_sequence_error/error_bytes_spec.rb
blob: 79b381a370d8cf60814e707d8d35f087e34d6bb5 (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_relative '../fixtures/classes'

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

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

    it "returns the bytes that caused the exception" do
      @exception.error_bytes.size.should == 1
      @exception.error_bytes.should == "\xF1"
      @exception.error_bytes.should == @errinfo[-2]

      @exception2.error_bytes.size.should == 1
      @exception2.error_bytes.should == "\xA1"
      @exception2.error_bytes.should == @errinfo2[-2]
    end

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

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