Class: Assert::Context

Inherits:
Object
  • Object
show all
Includes:
Assertions, Macros::Methods
Defined in:
lib/assert/context.rb

Constant Summary

Constants included from Assertions

Assertions::IGNORED_ASSERTION_HELPERS

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Macros::Methods

included

Methods included from Assertions

#assert_block, #assert_empty, #assert_equal, #assert_includes, #assert_instance_of, #assert_kind_of, #assert_match, #assert_nil, #assert_not_block, #assert_not_empty, #assert_not_equal, #assert_not_includes, #assert_not_instance_of, #assert_not_kind_of, #assert_not_match, #assert_not_nil, #assert_not_respond_to, #assert_not_same, #assert_nothing_raised, #assert_raises, #assert_respond_to, #assert_same, #method_missing

Constructor Details

#initialize(running_test = nil) ⇒ Context

Returns a new instance of Context.



169
170
171
# File 'lib/assert/context.rb', line 169

def initialize(running_test = nil)
  @__running_test__ = running_test
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Assert::Assertions

Class Method Details

.description(text = nil) ⇒ Object Also known as: desc, describe

Add a piece of description text or return the full description for the context



91
92
93
94
95
96
97
98
99
100
101
# File 'lib/assert/context.rb', line 91

def description(text=nil)
  if text
    self.descriptions << text.to_s
  else
    parent = self.superclass.desc if self.superclass.respond_to?(:desc)
    own = self.descriptions
    [parent, *own].compact.reject do |p|
      p.to_s.empty?
    end.join(" ")
  end
end

.method_added(method_name) ⇒ Object

if a test method is added to a context manually (not using a context helper): capture any context info, build a test obj, and add it to the suite



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/assert/context.rb', line 19

def self.method_added(method_name)
  if method_name.to_s =~ Suite::TEST_METHOD_REGEX
    klass_method_name = "#{self}##{method_name}"

    if Assert.suite.test_methods.include?(klass_method_name)
      puts "WARNING: redefining '#{klass_method_name}'"
      puts "  from: #{called_from}"
    else
      Assert.suite.test_methods << klass_method_name
    end

    ci = Suite::ContextInfo.new(self, nil, caller.first)
    Assert.suite.tests << Test.new(method_name.to_s, ci, method_name)
  end
end

.setup(scope_or_method_name = nil, &block) ⇒ Object Also known as: before

Add a setup block to run before each test or run the list of teardown blocks in given scope



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/assert/context.rb', line 51

def setup(scope_or_method_name = nil, &block)
  is_method = scope_or_method_name.kind_of?(String) || scope_or_method_name.kind_of?(Symbol)
  if block_given? || is_method
    # arg is a block or method that needs to be stored as a setup
    self.setups << (block || scope_or_method_name)
  elsif !is_method
    # arg is an instance of this class (the scope for a test),
    # run the setups for this context in the scope
    scope = scope_or_method_name
    # setup parent...
    self.superclass.setup(scope) if self.superclass.respond_to?(:setup)
    # ... before child
    self.setups.each do |setup|
      setup.kind_of?(::Proc) ? scope.instance_eval(&setup) : scope.send(setup)
    end
  end
end

.setup_once(&block) ⇒ Object Also known as: before_once, startup



38
39
40
# File 'lib/assert/context.rb', line 38

def setup_once(&block)
  Assert.suite.setup(&block)
end

.should(desc_or_macro, called_from = nil, first_caller = nil, &block) ⇒ Object



138
139
140
141
142
143
# File 'lib/assert/context.rb', line 138

def should(desc_or_macro, called_from=nil, first_caller=nil, &block)
  if !desc_or_macro.kind_of?(Macro)
    desc_or_macro = "should #{desc_or_macro}"
  end
  test(desc_or_macro, called_from, first_caller || caller.first, &block)
end

.should_eventually(desc_or_macro, called_from = nil, first_caller = nil, &block) ⇒ Object Also known as: should_skip



145
146
147
148
149
150
# File 'lib/assert/context.rb', line 145

def should_eventually(desc_or_macro, called_from=nil, first_caller=nil, &block)
  if !desc_or_macro.kind_of?(Macro)
    desc_or_macro = "should #{desc_or_macro}"
  end
  test_eventually(desc_or_macro, called_from, first_caller || caller.first)
end

.subject(&block) ⇒ Object



105
106
107
108
109
110
111
112
113
# File 'lib/assert/context.rb', line 105

def subject(&block)
  if block_given?
    @subject = block
  else
    @subject || if superclass.respond_to?(:subject)
      superclass.subject
    end
  end
end

.teardown(scope_or_method_name = nil, &block) ⇒ Object Also known as: after

Add a teardown block to run after each test or run the list of teardown blocks in given scope



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/assert/context.rb', line 71

def teardown(scope_or_method_name = nil, &block)
  is_method = scope_or_method_name.kind_of?(String) || scope_or_method_name.kind_of?(Symbol)
  if block_given? || is_method
    # arg is a block or method that needs to be stored as a teardown
    self.teardowns << (block || scope_or_method_name)
  elsif !is_method
    # arg is an instance of this class (the scope for a test),
    # run the setups for this context in the scope
    scope = scope_or_method_name
    # teardown child...
    self.teardowns.each do |teardown|
      teardown.kind_of?(::Proc) ? scope.instance_eval(&teardown) : scope.send(teardown)
    end
    # ... before parent
    self.superclass.teardown(scope) if self.superclass.respond_to?(:teardown)
  end
end

.teardown_once(&block) ⇒ Object Also known as: after_once, shutdown



44
45
46
# File 'lib/assert/context.rb', line 44

def teardown_once(&block)
  Assert.suite.teardown(&block)
end

.test(desc_or_macro, called_from = nil, first_caller = nil, &block) ⇒ Object



115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/assert/context.rb', line 115

def test(desc_or_macro, called_from=nil, first_caller=nil, &block)
  if desc_or_macro.kind_of?(Macro)
    instance_eval(&desc_or_macro)
  elsif block_given?
    ci = Suite::ContextInfo.new(self, called_from, first_caller || caller.first)
    test_name = desc_or_macro

    # create a test from the given code block
    Assert.suite.tests << Test.new(test_name, ci, &block)
  else
    test_eventually(desc_or_macro, called_from, first_caller, &block)
  end
end

.test_eventually(desc_or_macro, called_from = nil, first_caller = nil, &block) ⇒ Object Also known as: test_skip



129
130
131
132
133
134
135
# File 'lib/assert/context.rb', line 129

def test_eventually(desc_or_macro, called_from=nil, first_caller=nil, &block)
  ci = Suite::ContextInfo.new(self, called_from, first_caller || caller.first)
  test_name = desc_or_macro.kind_of?(Macro) ? desc_or_macro.name : desc_or_macro

  # create a test from a proc that just skips
  Assert.suite.tests << Test.new(test_name, ci, &(Proc.new { skip }))
end

Instance Method Details

#assert(assertion, fail_desc = nil, what_failed_msg = nil) ⇒ Object

check if the assertion is a truthy value, if so create a new pass result, otherwise create a new fail result with the desc and what failed msg. all other assertion helpers use this one in the end



176
177
178
179
180
# File 'lib/assert/context.rb', line 176

def assert(assertion, fail_desc=nil, what_failed_msg=nil)
  what_failed_msg ||= "Failed assert: assertion was <#{assertion.inspect}>."
  msg = fail_message(fail_desc) { what_failed_msg }
  assertion ? pass : fail(msg)
end

#assert_not(assertion, fail_desc = nil) ⇒ Object Also known as: refute

the opposite of assert, check if the assertion is a false value, if so create a new pass result, otherwise create a new fail result with the desc and it’s what failed msg



184
185
186
187
# File 'lib/assert/context.rb', line 184

def assert_not(assertion, fail_desc=nil)
  what_failed_msg = "Failed assert_not: assertion was <#{assertion.inspect}>."
  assert(!assertion, fail_desc, what_failed_msg)
end

#fail(fail_msg = nil) ⇒ Object Also known as: flunk

adds a Fail result to the end of the test’s results does not break test execution



208
209
210
211
212
213
214
215
216
217
# File 'lib/assert/context.rb', line 208

def fail(fail_msg=nil)
  message = (fail_message(fail_msg) { }).call
  if Assert::Test.halt_on_fail?
    raise(Result::TestFailure, message)
  else
    capture_result do |test, backtrace|
      Assert::Result::Fail.new(test, message, backtrace)
    end
  end
end

#ignore(ignore_msg = nil) ⇒ Object

adds an Ignore result to the end of the test’s results does not break test execution



200
201
202
203
204
# File 'lib/assert/context.rb', line 200

def ignore(ignore_msg=nil)
  capture_result do |test, backtrace|
    Assert::Result::Ignore.new(test, ignore_msg, backtrace)
  end
end

#inspectObject



231
232
233
# File 'lib/assert/context.rb', line 231

def inspect
  "#<#{self.class}>"
end

#pass(pass_msg = nil) ⇒ Object

adds a Pass result to the end of the test’s results does not break test execution



192
193
194
195
196
# File 'lib/assert/context.rb', line 192

def pass(pass_msg=nil)
  capture_result do |test, backtrace|
    Assert::Result::Pass.new(test, pass_msg, backtrace)
  end
end

#skip(skip_msg = nil) ⇒ Object

adds a Skip result to the end of the test’s results and breaks test execution



221
222
223
# File 'lib/assert/context.rb', line 221

def skip(skip_msg=nil)
  raise(Result::TestSkipped, skip_msg || "")
end

#subjectObject



225
226
227
228
229
# File 'lib/assert/context.rb', line 225

def subject
  if subj = self.class.subject
    instance_eval(&subj)
  end
end