File: to_s_spec.rb

package info (click to toggle)
ruby3.3 3.3.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 153,620 kB
  • sloc: ruby: 1,244,308; ansic: 836,474; yacc: 28,074; pascal: 6,748; sh: 3,913; python: 1,719; cpp: 1,158; makefile: 742; asm: 712; javascript: 394; lisp: 97; perl: 62; awk: 36; sed: 23; xml: 4
file content (95 lines) | stat: -rw-r--r-- 3,217 bytes parent folder | download | duplicates (4)
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
require_relative '../../spec_helper'

describe "Integer#to_s" do
  context "fixnum" do
    context "when given a base" do
      it "returns self converted to a String in the given base" do
        12345.to_s(2).should == "11000000111001"
        12345.to_s(8).should == "30071"
        12345.to_s(10).should == "12345"
        12345.to_s(16).should == "3039"
        95.to_s(16).should == "5f"
        12345.to_s(36).should == "9ix"
      end

      it "raises an ArgumentError if the base is less than 2 or higher than 36" do
        -> { 123.to_s(-1) }.should raise_error(ArgumentError)
        -> { 123.to_s(0)  }.should raise_error(ArgumentError)
        -> { 123.to_s(1)  }.should raise_error(ArgumentError)
        -> { 123.to_s(37) }.should raise_error(ArgumentError)
      end
    end

    context "when no base given" do
      it "returns self converted to a String using base 10" do
        255.to_s.should == '255'
        3.to_s.should == '3'
        0.to_s.should == '0'
        -9002.to_s.should == '-9002'
      end
    end

    before :each do
      @internal = Encoding.default_internal
    end

    after :each do
      Encoding.default_internal = @internal
    end

    it "returns a String in US-ASCII encoding when Encoding.default_internal is nil" do
      Encoding.default_internal = nil
      1.to_s.encoding.should equal(Encoding::US_ASCII)
    end

    it "returns a String in US-ASCII encoding when Encoding.default_internal is not nil" do
      Encoding.default_internal = Encoding::IBM437
      1.to_s.encoding.should equal(Encoding::US_ASCII)
    end
  end

  context "bignum" do
    describe "when given a base" do
      it "returns self converted to a String using the given base" do
        a = 2**64
        a.to_s(2).should == "10000000000000000000000000000000000000000000000000000000000000000"
        a.to_s(8).should == "2000000000000000000000"
        a.to_s(16).should == "10000000000000000"
        a.to_s(32).should == "g000000000000"
      end

      it "raises an ArgumentError if the base is less than 2 or higher than 36" do
        -> { 123.to_s(-1) }.should raise_error(ArgumentError)
        -> { 123.to_s(0) }.should raise_error(ArgumentError)
        -> { 123.to_s(1) }.should raise_error(ArgumentError)
        -> { 123.to_s(37) }.should raise_error(ArgumentError)
      end
    end

    describe "when given no base" do
      it "returns self converted to a String using base 10" do
        bignum_value(9).to_s.should == "18446744073709551625"
        bignum_value.to_s.should == "18446744073709551616"
        (-bignum_value(675)).to_s.should == "-18446744073709552291"
      end
    end

    before :each do
      @internal = Encoding.default_internal
    end

    after :each do
      Encoding.default_internal = @internal
    end

    it "returns a String in US-ASCII encoding when Encoding.default_internal is nil" do
      Encoding.default_internal = nil
      bignum_value.to_s.encoding.should equal(Encoding::US_ASCII)
    end

    it "returns a String in US-ASCII encoding when Encoding.default_internal is not nil" do
      Encoding.default_internal = Encoding::IBM437
      bignum_value.to_s.encoding.should equal(Encoding::US_ASCII)
    end
  end
end