summaryrefslogtreecommitdiff
path: root/spec/pager_spec.rb
blob: 5e64b2cc8887d838765f837ee35b87cbd3490a6a (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
require_relative "helper"
describe "Pry::Pager" do
  describe "PageTracker" do
    before do
      @pt = Pry::Pager::PageTracker.new(10, 10)
    end

    def record_short_line
      @pt.record "012345678\n"
    end

    def record_long_line
      @pt.record "0123456789012\n"
    end

    def record_multiline
      @pt.record "0123456789012\n01\n"
    end

    def record_string_without_newline
      @pt.record "0123456789"
    end

    def record_string_with_color_codes
      @pt.record(CodeRay.scan("0123456789", :ruby).term + "\n")
    end

    it "records short lines that don't add up to a page" do
      9.times { record_short_line }
      @pt.page?.should.be.false
    end

    it "records short lines that do add up to a page" do
      10.times { record_short_line }
      @pt.page?.should.be.true
    end

    it "treats a long line as taking up more than one row" do
      4.times { record_long_line }
      @pt.page?.should.be.false
      record_long_line
      @pt.page?.should.be.true
    end

    it "records a string with an embedded newline" do
      3.times { record_multiline }
      @pt.page?.should.be.false
      record_short_line
      @pt.page?.should.be.true
    end

    it "doesn't count a line until it ends" do
      12.times { record_string_without_newline }
      @pt.page?.should.be.false
      record_short_line
      @pt.page?.should.be.true
    end

    it "doesn't count ansi color codes towards length" do
      9.times { record_string_with_color_codes }
      @pt.page?.should.be.false
      record_string_with_color_codes
      @pt.page?.should.be.true
    end
  end
end