File: times.rb

package info (click to toggle)
ruby3.4 3.4.5-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 154,784 kB
  • sloc: ruby: 1,259,653; ansic: 829,955; yacc: 28,233; pascal: 7,359; sh: 3,864; python: 1,799; cpp: 1,158; asm: 808; makefile: 801; javascript: 414; lisp: 109; perl: 62; awk: 36; sed: 4; xml: 4
file content (58 lines) | stat: -rw-r--r-- 2,140 bytes parent folder | download | duplicates (2)
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
describe :string_times, shared: true do
  class MyString < String; end

  it "returns a new string containing count copies of self" do
    @object.call("cool", 0).should == ""
    @object.call("cool", 1).should == "cool"
    @object.call("cool", 3).should == "coolcoolcool"
  end

  it "tries to convert the given argument to an integer using to_int" do
    @object.call("cool", 3.1).should == "coolcoolcool"
    @object.call("a", 3.999).should == "aaa"

    a = mock('4')
    a.should_receive(:to_int).and_return(4)

    @object.call("a", a).should == "aaaa"
  end

  it "raises an ArgumentError when given integer is negative" do
    -> { @object.call("cool", -3)    }.should raise_error(ArgumentError)
    -> { @object.call("cool", -3.14) }.should raise_error(ArgumentError)
    -> { @object.call("cool", min_long) }.should raise_error(ArgumentError)
  end

  it "raises a RangeError when given integer is a Bignum" do
    -> { @object.call("cool", 999999999999999999999) }.should raise_error(RangeError)
    -> { @object.call("", 999999999999999999999) }.should raise_error(RangeError)
  end

  it "works with huge long values when string is empty" do
    @object.call("", max_long).should == ""
  end

  it "returns String instances" do
    @object.call(MyString.new("cool"), 0).should be_an_instance_of(String)
    @object.call(MyString.new("cool"), 1).should be_an_instance_of(String)
    @object.call(MyString.new("cool"), 2).should be_an_instance_of(String)
  end

  it "returns a String in the same encoding as self" do
    str = "\xE3\x81\x82".dup.force_encoding Encoding::UTF_8
    result = @object.call(str, 2)
    result.encoding.should equal(Encoding::UTF_8)
  end

  platform_is c_long_size: 32 do
    it "raises an ArgumentError if the length of the resulting string doesn't fit into a long" do
      -> { @object.call("abc", (2 ** 31) - 1) }.should raise_error(ArgumentError)
    end
  end

  platform_is c_long_size: 64 do
    it "raises an ArgumentError if the length of the resulting string doesn't fit into a long" do
      -> { @object.call("abc", (2 ** 63) - 1) }.should raise_error(ArgumentError)
    end
  end
end