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
|
require 'test_helper'
class ContextTest < Test::Unit::TestCase # :nodoc:
def self.context_macro(&blk)
context "with a subcontext made by a macro" do
setup { @context_macro = :foo }
merge_block &blk
end
end
# def self.context_macro(&blk)
# context "with a subcontext made by a macro" do
# setup { @context_macro = :foo }
# yield # <- this doesn't work.
# end
# end
context "context with setup block" do
setup do
@blah = "blah"
end
should "run the setup block" do
assert_equal "blah", @blah
end
should "have name set right" do
assert_match(/^test: context with setup block/, self.to_s)
end
context "and a subcontext" do
setup do
@blah = "#{@blah} twice"
end
should "be named correctly" do
assert_match(/^test: context with setup block and a subcontext should be named correctly/, self.to_s)
end
should "run the setup blocks in order" do
assert_equal @blah, "blah twice"
end
end
context_macro do
should "have name set right" do
assert_match(/^test: context with setup block with a subcontext made by a macro should have name set right/, self.to_s)
end
should "run the setup block of that context macro" do
assert_equal :foo, @context_macro
end
should "run the setup block of the main context" do
assert_equal "blah", @blah
end
end
end
context "another context with setup block" do
setup do
@blah = "foo"
end
should "have @blah == 'foo'" do
assert_equal "foo", @blah
end
should "have name set right" do
assert_match(/^test: another context with setup block/, self.to_s)
end
end
context "context with method definition" do
setup do
def hello; "hi"; end
end
should "be able to read that method" do
assert_equal "hi", hello
end
should "have name set right" do
assert_match(/^test: context with method definition/, self.to_s)
end
end
context "another context" do
should "not define @blah" do
assert_nil @blah
end
end
context "context with multiple setups and/or teardowns" do
cleanup_count = 0
2.times do |i|
setup { cleanup_count += 1 }
teardown { cleanup_count -= 1 }
end
2.times do |i|
should "call all setups and all teardowns (check ##{i + 1})" do
assert_equal 2, cleanup_count
end
end
context "subcontexts" do
2.times do |i|
setup { cleanup_count += 1 }
teardown { cleanup_count -= 1 }
end
2.times do |i|
should "also call all setups and all teardowns in parent and subcontext (check ##{i + 1})" do
assert_equal 4, cleanup_count
end
end
end
end
should_eventually "pass, since it's unimplemented" do
flunk "what?"
end
should_eventually "not require a block when using should_eventually"
should "pass without a block, as that causes it to piggyback to should_eventually"
context "context for testing should piggybacking" do
should "call should_eventually as we are not passing a block"
end
context "context" do
context "with nested subcontexts" do
should_eventually "only print this statement once for a should_eventually"
end
end
class ::SomeModel; end
context "given a test named after a class" do
setup do
self.class.stubs(:name).returns("SomeModelTest")
end
should "determine the described type" do
assert_equal SomeModel, self.class.described_type
end
should "return a new instance of the described type as the subject if none exists" do
assert_kind_of SomeModel, subject
end
context "with an explicit subject block" do
setup { @expected = SomeModel.new }
subject { @expected }
should "return the result of the block as the subject" do
assert_equal @expected, subject
end
context "nested context block without a subject block" do
should "return the result of the parent context's subject block" do
assert_equal @expected, subject
end
end
end
end
end
class ::Some
class NestedModel; end
end
class Some::NestedModelTest < Test::Unit::TestCase
should "determine the described type for a nested model" do
assert_equal Some::NestedModel, self.class.described_type
end
end
class ShouldMatcherTest < Test::Unit::TestCase
class FakeMatcher
attr_reader :subject
attr_accessor :fail
def description
"do something"
end
def matches?(subject)
@subject = subject
!@fail
end
def failure_message
"a failure message"
end
def negative_failure_message
"not a failure message"
end
end
def run_test
@test_suite.run(@test_result) { |event, name |}
end
def setup
@matcher = FakeMatcher.new
@test_result = Test::Unit::TestResult.new
class << @test_result
def failure_messages
@failures.map { |failure| failure.message }
end
end
end
def create_test_suite(&definition)
test_class = Class.new(Test::Unit::TestCase, &definition)
test_class.suite
end
def assert_failed_with(message, test_result)
assert_equal 1, test_result.failure_count
assert_equal [message], test_result.failure_messages
end
def assert_passed(test_result)
assert_equal 0, test_result.failure_count
end
def assert_test_named(expected_name, test_suite)
name = test_suite.tests.map { |test| test.method_name }.first
assert name.include?(expected_name), "Expected #{name} to include #{expected_name}"
end
def self.should_use_positive_matcher
should "generate a test using the matcher's description" do
assert_test_named "should #{@matcher.description}", @test_suite
end
should "pass with a passing matcher" do
@matcher.fail = false
run_test
assert_passed @test_result
end
should "fail with a failing matcher" do
@matcher.fail = true
run_test
assert_failed_with @matcher.failure_message, @test_result
end
should "provide the subject" do
@matcher.fail = false
run_test
assert_equal 'a subject', @matcher.subject
end
end
def self.should_use_negative_matcher
should "generate a test using the matcher's description" do
assert_test_named "should not #{@matcher.description}", @test_suite
end
should "pass with a failing matcher" do
@matcher.fail = true
run_test
assert_passed @test_result
end
should "fail with a passing matcher" do
@matcher.fail = false
run_test
assert_failed_with @matcher.negative_failure_message, @test_result
end
should "provide the subject" do
@matcher.fail = false
run_test
assert_equal 'a subject', @matcher.subject
end
end
context "a should block with a matcher" do
setup do
matcher = @matcher
@test_suite = create_test_suite do
subject { 'a subject' }
should matcher
end
end
should_use_positive_matcher
end
context "a should block with a matcher within a context" do
setup do
matcher = @matcher
@test_suite = create_test_suite do
context "in context" do
subject { 'a subject' }
should matcher
end
end
end
should_use_positive_matcher
end
context "a should_not block with a matcher" do
setup do
matcher = @matcher
@test_suite = create_test_suite do
subject { 'a subject' }
should_not matcher
end
end
should_use_negative_matcher
end
context "a should_not block with a matcher within a context" do
setup do
matcher = @matcher
@test_suite = create_test_suite do
context "in context" do
subject { 'a subject' }
should_not matcher
end
end
end
should_use_negative_matcher
end
end
class Subject; end
class SubjectTest < Test::Unit::TestCase
def setup
@expected = Subject.new
end
subject { @expected }
should "return a specified subject" do
assert_equal @expected, subject
end
end
class SubjectLazinessTest < Test::Unit::TestCase
subject { Subject.new }
should "only build the subject once" do
assert_equal subject, subject
end
end
|