blob: 9af633472e562ea16e2122b29aa6162a35ad5a52 (
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
require_relative '../../spec_helper'
require_relative 'fixtures/classes'
describe "StringIO#readline when passed [separator]" do
before :each do
@io = StringIO.new("this>is>an>example")
end
it "returns the data read till the next occurrence of the passed separator" do
@io.readline(">").should == "this>"
@io.readline(">").should == "is>"
@io.readline(">").should == "an>"
@io.readline(">").should == "example"
end
it "sets $_ to the read content" do
@io.readline(">")
$_.should == "this>"
@io.readline(">")
$_.should == "is>"
@io.readline(">")
$_.should == "an>"
@io.readline(">")
$_.should == "example"
end
it "updates self's lineno by one" do
@io.readline(">")
@io.lineno.should eql(1)
@io.readline(">")
@io.lineno.should eql(2)
@io.readline(">")
@io.lineno.should eql(3)
end
it "returns the next paragraph when the passed separator is an empty String" do
io = StringIO.new("this is\n\nan example")
io.readline("").should == "this is\n\n"
io.readline("").should == "an example"
end
it "returns the remaining content starting at the current position when passed nil" do
io = StringIO.new("this is\n\nan example")
io.pos = 5
io.readline(nil).should == "is\n\nan example"
end
it "tries to convert the passed separator to a String using #to_str" do
obj = mock('to_str')
obj.should_receive(:to_str).and_return(">")
@io.readline(obj).should == "this>"
end
end
describe "StringIO#readline when passed no argument" do
before :each do
@io = StringIO.new("this is\nan example\nfor StringIO#readline")
end
it "returns the data read till the next occurrence of $/ or till eof" do
@io.readline.should == "this is\n"
begin
old_sep, $/ = $/, " "
@io.readline.should == "an "
@io.readline.should == "example\nfor "
@io.readline.should == "StringIO#readline"
ensure
$/ = old_sep
end
end
it "sets $_ to the read content" do
@io.readline
$_.should == "this is\n"
@io.readline
$_.should == "an example\n"
@io.readline
$_.should == "for StringIO#readline"
end
it "updates self's position" do
@io.readline
@io.pos.should eql(8)
@io.readline
@io.pos.should eql(19)
@io.readline
@io.pos.should eql(40)
end
it "updates self's lineno" do
@io.readline
@io.lineno.should eql(1)
@io.readline
@io.lineno.should eql(2)
@io.readline
@io.lineno.should eql(3)
end
it "raises an IOError if self is at the end" do
@io.pos = 40
-> { @io.readline }.should raise_error(IOError)
end
end
describe "StringIO#readline when in write-only mode" do
it "raises an IOError" do
io = StringIO.new("xyz", "w")
-> { io.readline }.should raise_error(IOError)
io = StringIO.new("xyz")
io.close_read
-> { io.readline }.should raise_error(IOError)
end
end
describe "StringIO#readline when passed [chomp]" do
it "returns the data read without a trailing newline character" do
io = StringIO.new("this>is>an>example\n")
io.readline(chomp: true).should == "this>is>an>example"
end
end
|