File: tc_dsl_methods.rb

package info (click to toggle)
ruby-blockenspiel 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 344 kB
  • ctags: 202
  • sloc: ruby: 1,482; makefile: 7
file content (324 lines) | stat: -rw-r--r-- 8,839 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
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
# -----------------------------------------------------------------------------
#
# Blockenspiel dsl method tests
#
# This file contains tests for the dsl method directives.
#
# -----------------------------------------------------------------------------
# Copyright 2008-2011 Daniel Azuma
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
#   this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
#   this list of conditions and the following disclaimer in the documentation
#   and/or other materials provided with the distribution.
# * Neither the name of the copyright holder, nor the names of any other
#   contributors to this software, may be used to endorse or promote products
#   derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------
;


require 'minitest/autorun'
require 'blockenspiel'


module Blockenspiel
  module Tests  # :nodoc:

    class TestDSLMethods < ::Minitest::Test  # :nodoc:


      class Target1 < ::Blockenspiel::Base

        def initialize(hash_)
          @hash = hash_
        end

        def set_value1(key_, value_)
          @hash["#{key_}1"] = value_
        end

        def set_value2(key_)
          @hash["#{key_}2"] = yield
        end

        def _set_value3(key_, value_)
          @hash["#{key_}3"] = value_
        end

      end


      class Target2 < ::Blockenspiel::Base

        def initialize(hash_)
          @hash = hash_
        end

        dsl_methods false

        def set_value1(key_, value_)
          @hash["#{key_}1"] = value_
        end

        dsl_methods true

        def set_value2(key_)
          @hash["#{key_}2"] = yield
        end

        def _set_value3(key_, value_)
          @hash["#{key_}3"] = value_
        end

      end


      class Target3 < ::Blockenspiel::Base

        def initialize(hash_)
          @hash = hash_
        end

        dsl_methods false

        def set_value1(key_, value_)
          @hash["#{key_}1"] = value_
        end
        dsl_method :set_value1

        def set_value2(key_)
          @hash["#{key_}2"] = yield
        end
        dsl_method :renamed_set_value2, :set_value2
        dsl_method :another_set_value2, :set_value2

      end


      class Target4 < ::Blockenspiel::Base

        def initialize(hash_)
          @hash = hash_
        end

        def set_value1(key_, value_)
          @hash["#{key_}1"] = value_
        end
        dsl_method :set_value1, false

        def set_value2(key_)
          @hash["#{key_}2"] = yield
        end
        dsl_method :set_value2, false
        dsl_method :renamed_set_value2, :set_value2

      end


      class Target5a < ::Blockenspiel::Base

        def initialize(hash_)
          @hash = hash_
        end

        def set_value1(key_, value_)
          @hash["#{key_}1"] = value_
        end

        def set_value2(key_)
          @hash["#{key_}2"] = yield
        end

        def set_value3(key_, value_)
          @hash["#{key_}3"] = value_
        end

        def set_value4(key_, value_)
          @hash["#{key_}4"] = value_
        end
        dsl_method :set_value4, false
        dsl_method :renamed_set_value4, :set_value4

      end


      class Target5b < Target5a

        def set_value1(key_, value_)
          @hash["#{key_}1sub"] = value_
        end

        dsl_method :set_value3, false

        def set_value5(key_, value_)
          @hash["#{key_}5"] = value_
        end

      end


      class Target6 < ::Blockenspiel::Base

        def initialize(hash_)
          @hash = hash_
        end

        dsl_methods false

        def set_value1(key_, value_)
          @hash["#{key_}1"] = value_
        end

        def set_value2(key_)
          @hash["#{key_}2"] = yield
        end

        dsl_methods :set_value1, :renamed_set_value2 => :set_value2

      end


      # Test default dsl method setting.
      #
      # * Asserts the right dsl methods are added for the default setting.

      def test_default_setting
        hash_ = ::Hash.new
        block_ = ::Proc.new do
          set_value1('a', 1)
          set_value2('b'){ 2 }
          assert_raises(::NoMethodError){ _set_value3('c', 3) }
        end
        ::Blockenspiel.invoke(block_, Target1.new(hash_))
        assert_equal(1, hash_['a1'])
        assert_equal(2, hash_['b2'])
        assert_nil(hash_['c3'])
      end


      # Test dsl_methods true and false switching.
      #
      # * Asserts that dsl_methods false turns off automatic method creation.
      # * Asserts that dsl_methods true turns on automatic method creation.
      # * Asserts that underscore methods are added in dsl_methods true mode.

      def test_onoff_switching
        hash_ = ::Hash.new
        block_ = ::Proc.new do
          assert_raises(::NoMethodError){ _set_value1('a', 1) }
          set_value2('b'){ 2 }
          _set_value3('c', 3)
        end
        ::Blockenspiel.invoke(block_, Target2.new(hash_))
        assert_nil(hash_['a1'])
        assert_equal(2, hash_['b2'])
        assert_equal(3, hash_['c3'])
      end


      # Test dsl_methods explicit adding.
      #
      # * Asserts that adding an explicit dsl method works.
      # * Asserts that adding an explicit dsl method with a different name works.

      def test_explicit_add
        hash_ = ::Hash.new
        block_ = ::Proc.new do
          set_value1('a', 1)
          assert_raises(::NoMethodError){ set_value2('b'){ 2 } }
          renamed_set_value2('c'){ 3 }
          another_set_value2('d'){ 4 }
        end
        ::Blockenspiel.invoke(block_, Target3.new(hash_))
        assert_equal(1, hash_['a1'])
        assert_nil(hash_['b2'])
        assert_equal(3, hash_['c2'])
        assert_equal(4, hash_['d2'])
      end


      # Test dsl_methods explicit removing.
      #
      # * Asserts that removing a dsl method works.
      # * Asserts that re-adding a removed method with a different name works.

      def test_explicit_removing
        hash_ = ::Hash.new
        block_ = ::Proc.new do
          assert_raises(::NoMethodError){ set_value1('a', 1) }
          assert_raises(::NoMethodError){ set_value2('b'){ 2 } }
          renamed_set_value2('c'){ 3 }
        end
        ::Blockenspiel.invoke(block_, Target4.new(hash_))
        assert_nil(hash_['a1'])
        assert_nil(hash_['b2'])
        assert_equal(3, hash_['c2'])
      end


      # Test dsl method setting with subclasses
      #
      # * Asserts that modules are properly inherited.
      # * Asserts that method overriding is done correctly.

      def test_subclassing
        hash_ = ::Hash.new
        block_ = ::Proc.new do
          set_value1('a', 1)
          set_value2('b'){ 2 }
          assert_raises(::NoMethodError){ set_value3('c', 3) }
          assert_raises(::NoMethodError){ set_value4('d', 4) }
          renamed_set_value4('e', 5)
          set_value5('f', 6)
        end
        ::Blockenspiel.invoke(block_, Target5b.new(hash_))
        assert_equal(1, hash_['a1sub'])
        assert_equal(2, hash_['b2'])
        assert_nil(hash_['c3'])
        assert_nil(hash_['d4'])
        assert_equal(5, hash_['e4'])
        assert_equal(6, hash_['f5'])
      end


      # Test dsl_methods with multiple parameters.
      #
      # * Asserts that hash syntax for dsl_methods works.
      # * Asserts that combined array and hash parameters works.

      def test_multiple_dsl_methods
        hash_ = ::Hash.new
        block_ = ::Proc.new do
          set_value1('a', 1)
          renamed_set_value2('b'){ 2 }
          assert_raises(::NoMethodError){ set_value2('c', 3) }
        end
        ::Blockenspiel.invoke(block_, Target6.new(hash_))
        assert_equal(1, hash_['a1'])
        assert_equal(2, hash_['b2'])
      end


    end

  end
end