summaryrefslogtreecommitdiff
path: root/lib/test/unit/assertions.rb
blob: 5bc1f0dfbbb530d38c7c81c45f581cd76633a2b6 (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
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
# :nodoc:
#
# Author:: Nathaniel Talbott.
# Copyright:: Copyright (c) 2000-2003 Nathaniel Talbott. All rights reserved.
# License:: Ruby license.

require 'test/unit/assertionfailederror'
require 'test/unit/util/backtracefilter'

module Test # :nodoc:
  module Unit # :nodoc:

    # Contains all of the standard Test::Unit assertions. Mixed in
    # to Test::Unit::TestCase. To mix it in and use its
    # functionality, you simply need to rescue
    # Test::Unit::AssertionFailedError, and you can additionally
    # override add_assertion to be notified whenever an assertion
    # is made.
    #
    # Notes:
    # * The message to each assertion, if given, will be
    #   propagated with the failure.
    # * It's easy to add your own assertions based on assert_block().
    module Assertions

      # The assertion upon which all other assertions are
      # based. Passes if the block yields true.
      public
      def assert_block(message="assert_block failed") # :yields: 
        _wrap_assertion do
          if (! yield)
            raise AssertionFailedError.new(message.to_s)
          end
        end
      end

      # Passes if boolean is true.
      public
      def assert(boolean, message="assert failed")
        _wrap_assertion do
          assert_block("assert should not be called with a block.") { !block_given? }
          assert_block(message) { boolean }
        end
      end

      # Passes if expected == actual. Note that the ordering of
      # arguments is important, since a helpful error message is
      # generated when this one fails that tells you the values
      # of expected and actual.
      public
      def assert_equal(expected, actual, message=nil)
        full_message = build_message(message, expected, actual) do |arg1, arg2|
          "<#{arg1}> expected but was\n" +
          "<#{arg2}>"
        end
        assert_block(full_message) { expected == actual }
      end

      # Passes if block raises exception.
      public
      def assert_raises(expected_exception_klass, message="")
        _wrap_assertion do
          assert_instance_of(Class, expected_exception_klass, "Should expect a class of exception")
          actual_exception = nil
          full_message = build_message(message, expected_exception_klass) do |arg|
            "<#{arg}> exception expected but none was thrown"
          end
          assert_block(full_message) do
            thrown = false
            begin
              yield
            rescue Exception => thrown_exception
              actual_exception = thrown_exception
              thrown = true
            end
            thrown
          end
          full_message = build_message(message, expected_exception_klass, actual_exception) do |arg1, arg2|
            "<#{arg1}> exception expected but was\n" +
            arg2
          end
          assert_block(full_message) { expected_exception_klass == actual_exception.class }
          actual_exception
        end
      end

      # Passes if object.class == klass.
      public
      def assert_instance_of(klass, object, message="")
        _wrap_assertion do
          assert_equal(Class, klass.class, "assert_instance_of takes a Class as its first argument")
          full_message = build_message(message, object, klass, object.class) do |arg1, arg2, arg3|
            "<#{arg1}> expected to be an instance of\n" + 
            "<#{arg2}> but was\n" +
            "<#{arg3}>"
          end
          assert_block(full_message) { klass == object.class }
        end
      end

      # Passes if object.nil?.
      public
      def assert_nil(object, message="")
        assert_equal(nil, object, message)
      end

      # Passes if object.kind_of?(klass).
      public
      def assert_kind_of(klass, object, message="")
        _wrap_assertion do
          assert(klass.kind_of?(Module), "The first parameter to assert_kind_of should be a kind_of Module.")
          full_message = build_message(message, object, klass) do |arg1, arg2|
            "<#{arg1}>\n" +
            "expected to be kind_of?<#{arg2}>"
          end
          assert_block(full_message) { object.kind_of?(klass) }
        end
      end

      # Passes if object.respond_to?(method) is true.
      public
      def assert_respond_to(object, method, message="")
        _wrap_assertion do
          full_message = build_message('', method) do |arg|
            "<#{arg}>\n" +
            "given as the method name argument to #assert_respond_to must be a Symbol or #respond_to?(:to_str)."
          end
          assert(method.kind_of?(Symbol) || method.respond_to?(:to_str), full_message)
          full_message = build_message(message, object, object.class, method) do |arg1, arg2, arg3|
            "<#{arg1}>\n" +
            "of type <#{arg2}>\n" +
            "expected to respond_to?<#{arg3}>"
          end
          assert_block(full_message) { object.respond_to?(method) }
        end
      end

      # Passes if string =~ pattern.
      public
      def assert_match(pattern, string, message="")
        _wrap_assertion do
          pattern = case(pattern)
            when String
              Regexp.new(Regexp.escape(pattern))
            else
              pattern
          end
          full_message = build_message(message, string, pattern) do |arg1, arg2|
            "<#{arg1}> expected to be =~\n" +
            "<#{arg2}>"
          end
          assert_block(full_message) { string =~ pattern }
        end
      end

      # Passes if actual.equal?(expected) (i.e. they are the
      # same instance).
      public
      def assert_same(expected, actual, message="")
        full_message = build_message(message, expected, expected.__id__, actual, actual.__id__) do |arg1, arg2, arg3, arg4|
          "<#{arg1}>\n" +
          "with id <#{arg2}> expected to be equal? to\n" +
          "<#{arg3}>\n" +
          "with id <#{arg4}>"
        end
        assert_block(full_message) { actual.equal?(expected) }
      end

      # Compares the two objects based on the passed
      # operator. Passes if object1.send(operator, object2) is
      # true.
      public
      def assert_operator(object1, operator, object2, message="")
        _wrap_assertion do
          full_message = build_message('', operator) do |arg|
            "<#{arg}>\n" +
            "given as the operator for #assert_operator must be a Symbol or #respond_to?(:to_str)."
          end
          assert(operator.kind_of?(Symbol) || operator.respond_to?(:to_str), full_message)
          full_message = build_message(message, object1, AssertionMessage.literal(operator), object2) do |arg1, arg2, arg3|
            "<#{arg1}> expected to be\n" +
            "#{arg2}\n" +
            "<#{arg3}>"
          end
          assert_block(full_message) { object1.send(operator, object2) }
        end
      end

      # Passes if block does not raise an exception.
      public
      def assert_nothing_raised(*args)
        _wrap_assertion do
          message = ""
          if (!args[-1].instance_of?(Class))
            message = args.pop
          end
          begin
            yield
          rescue Exception => e
            if ((args.empty? && !e.instance_of?(AssertionFailedError)) || args.include?(e.class))
              full_message = build_message(message, e) do |arg1|
                "Exception raised:\n" +
                arg1
              end
              flunk(full_message)
            else
              raise e.class, e.message, e.backtrace
            end
          end
          nil
        end
      end

      # Always fails.
      public
      def flunk(message="Assertion flunked")
        assert(false, message)
      end

      # Passes if !actual.equal?(expected).
      public
      def assert_not_same(expected, actual, message="")
        full_message = build_message(message, expected, expected.__id__, actual, actual.__id__) do |arg1, arg2, arg3, arg4|
          "<#{arg1}>\n" +
          "with id <#{arg2}> expected to not be equal? to\n" +
          "<#{arg3}>\n" +
          "with id <#{arg4}>"
        end
        assert_block(full_message) { !actual.equal?(expected) }
      end

      # Passes if expected != actual.
      public
      def assert_not_equal(expected, actual, message="")
        full_message = build_message(message, expected, actual) do |arg1, arg2|
          "<#{arg1}> expected to be != to\n" +
          "<#{arg2}>"
        end
        assert_block(full_message) { expected != actual }
      end

      # Passes if !object.nil?.
      public
      def assert_not_nil(object, message="")
        full_message = build_message(message, object) do |arg|
          "<#{arg}> expected to not be nil"
        end
        assert_block(full_message) { !object.nil? }
      end

      # Passes if string !~ regularExpression.
      public
      def assert_no_match(regexp, string, message="")
        _wrap_assertion do
          assert_instance_of(Regexp, regexp, "The first argument to assert_does_not_match should be a Regexp.")
          full_message = build_message(message, regexp, string) do |arg1, arg2|
            "<#{arg1}> expected to not match\n" +
            "<#{arg2}>"
          end
          assert_block(full_message) { regexp !~ string }
        end
      end

      # Passes if block throws symbol.
      public
      def assert_throws(expected_symbol, message="", &proc)
        _wrap_assertion do
          assert_instance_of(Symbol, expected_symbol, "assert_throws expects the symbol that should be thrown for its first argument")
          assert(block_given?, "Should have passed a block to assert_throws")
          caught = true
          begin
            catch(expected_symbol) do
              proc.call
              caught = false
            end
            full_message = build_message(message, expected_symbol) do |arg|
              "<#{arg}> should have been thrown"
            end
            assert(caught, full_message)
          rescue NameError => name_error
            if ( name_error.message !~ /^uncaught throw `(.+)'$/ )  #`
              raise name_error
            end
            full_message = build_message(message, expected_symbol, $1.intern) do |arg1, arg2|
              "<#{arg1}> expected to be thrown but\n" +
              "<#{arg2}> was thrown"
            end
            flunk(full_message)
          end  
        end
      end

      # Passes if block does not throw anything.
      public
      def assert_nothing_thrown(message="", &proc)
        _wrap_assertion do
          assert(block_given?, "Should have passed a block to assert_nothing_thrown")
          begin
            proc.call
          rescue NameError => name_error
            if (name_error.message !~ /^uncaught throw `(.+)'$/ )  #`
              raise name_error
            end
            full_message = build_message(message, $1.intern) do |arg|
              "<#{arg}> was thrown when nothing was expected"
            end
            flunk(full_message)
          end
          full_message = build_message(message) { || "Expected nothing to be thrown" }
          assert(true, full_message)
        end
      end

      # Passes if expected_float and actual_float are equal
      # within delta tolerance.
      public
      def assert_in_delta(expected_float, actual_float, delta, message="")
        _wrap_assertion do
          {expected_float => "first float", actual_float => "second float", delta => "delta"}.each do |float, name|
            assert_respond_to(float, :to_f, "The arguments must respond to to_f; the #{name} did not")
          end
          assert_operator(delta, :>=, 0.0, "The delta should not be negative")
          full_message = build_message(message, expected_float, actual_float, delta) do |arg1, arg2, arg3|
            "<#{arg1}> and\n" +
            "<#{arg2}> expected to be within\n" +
            "<#{arg3}> of each other"
          end
          assert_block(full_message) { (expected_float.to_f - actual_float.to_f).abs <= delta.to_f }
        end
      end

      # Passes if the method sent returns a true value.
      public
      def assert_send(send_array, message="")
        _wrap_assertion do
          assert_instance_of(Array, send_array, "assert_send requires an array of send information")
          assert(send_array.size >= 2, "assert_send requires at least a receiver and a message name")
          full_message = build_message(message, send_array[0], AssertionMessage.literal(send_array[1].to_s), send_array[2..-1]) do |arg1, arg2, arg3|
            "<#{arg1}> expected to respond to\n" +
            "<#{arg2}(#{arg3})> with a true value"
          end
          assert_block(full_message) { send_array[0].__send__(send_array[1], *send_array[2..-1]) }
        end
      end

      public
      def build_message(message, *arguments, &block) # :nodoc:
        return AssertionMessage.new(message.to_s, arguments, block)
      end

      private
      def _wrap_assertion # :nodoc:
        @_assertion_wrapped ||= false
        unless (@_assertion_wrapped)
          @_assertion_wrapped = true
          begin
            add_assertion
            return yield
          ensure
            @_assertion_wrapped = false
          end
        else
          return yield
        end
      end
      
      # Called whenever an assertion is made.
      private
      def add_assertion
      end
      
      class AssertionMessage # :nodoc: all
        class Literal
          def initialize(value)
            @value = value
          end
          
          def inspect
            @value
          end
        end

        def self.literal(value)
          Literal.new(value)
        end

        include Util::BacktraceFilter

        def convert(object)
          case object
            when Exception
              return <<EOM.strip
Class: <#{object.class}>
Message: <#{object.message}>
---Backtrace---
#{filter_backtrace(object.backtrace).join("\n")}
---------------
EOM
            else
              return object.inspect
          end
        end
        
        def initialize(message, parameters, block)
          @message = message
          @parameters = parameters
          @block = block
        end
        
        def to_s
          message_parts = []
          if (@message != nil && @message != "")
            if (@message !~ /\.$/)
              @message << "."
            end
            message_parts << @message
          end
          @parameters = @parameters.collect {
            | parameter |
            convert(parameter)
          }
          message_parts << @block.call(*@parameters)
          return message_parts.join("\n")
        end
      end
    end
  end
end