File: objects_spec.rb

package info (click to toggle)
ruby-awesome-print 1.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 652 kB
  • sloc: ruby: 3,827; makefile: 6
file content (220 lines) | stat: -rw-r--r-- 4,866 bytes parent folder | download
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
require 'spec_helper'

RSpec.describe 'Objects' do
  after do
    Object.instance_eval { remove_const :Hello } if defined?(Hello)
  end

  describe 'Formatting an object' do
    it 'attributes' do
      class Hello
        attr_reader   :abra
        attr_writer   :ca
        attr_accessor :dabra

        def initialize
          @abra = 1
          @ca = 2
          @dabra = 3
        end
      end

      hello = Hello.new
      out = hello.ai(plain: true, raw: true)
      str = <<-EOS.strip
#<Hello:placeholder_id
    attr_accessor :dabra = 3,
    attr_reader :abra = 1,
    attr_writer :ca = 2
>
EOS
      expect(out).to be_similar_to(str)
      expect(hello.ai(plain: true, raw: false)).to eq(hello.inspect)
    end

    it 'instance variables' do
      class Hello
        def initialize
          @abra = 1
          @ca = 2
          @dabra = 3
        end
      end

      hello = Hello.new
      out = hello.ai(plain: true, raw: true)
      str = <<-EOS.strip
#<Hello:placeholder_id
    @abra = 1,
    @ca = 2,
    @dabra = 3
>
EOS
      expect(out).to be_similar_to(str)
      expect(hello.ai(plain: true, raw: false)).to eq(hello.inspect)
    end

    it 'attributes and instance variables' do
      class Hello
        attr_reader   :abra
        attr_writer   :ca
        attr_accessor :dabra

        def initialize
          @abra = 1
          @ca = 2
          @dabra = 3
          @scooby = 3
          @dooby = 2
          @doo = 1
        end
      end

      hello = Hello.new
      out = hello.ai(plain: true, raw: true)
      str = <<-EOS.strip
#<Hello:placeholder_id
    @doo = 1,
    @dooby = 2,
    @scooby = 3,
    attr_accessor :dabra = 3,
    attr_reader :abra = 1,
    attr_writer :ca = 2
>
EOS
      expect(out).to be_similar_to(str)
      expect(hello.ai(plain: true, raw: false)).to eq(hello.inspect)
    end

    it 'without the plain options print the colorized values' do
      class Hello
        attr_reader   :abra
        attr_writer   :ca

        def initialize
          @abra = 1
          @ca = 2
          @dabra = 3
        end
      end

      hello = Hello.new
      out = hello.ai(raw: true)
      str = <<-EOS.strip
#<Hello:placeholder_id
    \e[0;36m@dabra\e[0m\e[0;37m = \e[0m\e[1;34m3\e[0m,
    \e[1;36mattr_reader\e[0m \e[0;35m:abra\e[0m\e[0;37m = \e[0m\e[1;34m1\e[0m,
    \e[1;36mattr_writer\e[0m \e[0;35m:ca\e[0m\e[0;37m = \e[0m\e[1;34m2\e[0m
>
EOS
      expect(out).to be_similar_to(str)
      expect(hello.ai(plain: true, raw: false)).to eq(hello.inspect)
    end

    it 'with multine as false show inline values' do
      class Hello
        attr_reader   :abra
        attr_writer   :ca

        def initialize
          @abra = 1
          @ca = 2
          @dabra = 3
        end
      end

      hello = Hello.new
      out = hello.ai(multiline: false, plain: true, raw: true)
      str = <<-EOS.strip
#<Hello:placeholder_id @dabra = 3, attr_reader :abra = 1, attr_writer :ca = 2>
EOS
      expect(out).to be_similar_to(str)
      expect(hello.ai(plain: true, raw: false)).to eq(hello.inspect)
    end

    it 'without the sort_vars option does not sort instance variables' do
      class Hello
        attr_reader   :abra
        attr_writer   :ca
        attr_accessor :dabra

        def initialize
          @abra = 1
          @ca = 2
          @dabra = 3
          @scooby = 3
          @dooby = 2
          @doo = 1
        end

        def instance_variables
          [:@scooby, :@dooby, :@doo, :@abra, :@ca, :@dabra]
        end
      end

      hello = Hello.new
      out = hello.ai(plain: true, raw: true, sort_vars: false)
      str = <<-EOS.strip
#<Hello:placeholder_id
    @scooby = 3,
    @dooby = 2,
    @doo = 1,
    attr_reader :abra = 1,
    attr_writer :ca = 2,
    attr_accessor :dabra = 3
>
EOS
      expect(out).to be_similar_to(str)
      expect(hello.ai(plain: true, raw: false)).to eq(hello.inspect)
    end

    it 'object_id' do
      class Hello
        def initialize
          @abra = 1
          @ca = 2
          @dabra = 3
        end
      end

      hello = Hello.new
      out = hello.ai(plain: true, raw: true, object_id: false)
      str = <<-EOS.strip
#<Hello
    @abra = 1,
    @ca = 2,
    @dabra = 3
>
EOS
      expect(out).to be_similar_to(str)
      expect(hello.ai(plain: true, raw: false)).to eq(hello.inspect)
    end

    it 'class_name' do
      class Hello
        def initialize
          @abra = 1
          @ca = 2
          @dabra = 3
        end

        def to_s
          "CustomizedHello"
        end
      end

      hello = Hello.new
      out = hello.ai(plain: true, raw: true, class_name: :to_s)
      str = <<-EOS.strip
#<CustomizedHello:placeholder_id
    @abra = 1,
    @ca = 2,
    @dabra = 3
>
EOS
      expect(out).to be_similar_to(str)
      expect(hello.ai(plain: true, raw: false)).to eq(hello.inspect)
    end

  end
end