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 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
require 'spec_helper'
describe "expect(...).to be_predicate" do
it "passes when actual returns true for :predicate?" do
actual = double("actual", :happy? => true)
expect(actual).to be_happy
end
it "passes when actual returns true for :predicates? (present tense)" do
actual = double("actual", :exists? => true, :exist? => true)
expect(actual).to be_exist
end
it "fails when actual returns false for :predicate?" do
actual = double("actual", :happy? => false)
expect {
expect(actual).to be_happy
}.to fail_with("expected happy? to return true, got false")
end
it "fails when actual returns false for :predicate?" do
actual = double("actual", :happy? => nil)
expect {
expect(actual).to be_happy
}.to fail_with("expected happy? to return true, got nil")
end
it "fails when actual does not respond to :predicate?" do
expect {
expect(Object.new).to be_happy
}.to raise_error(NameError, /happy\?/)
end
it "fails on error other than NameError" do
actual = double("actual")
actual.should_receive(:foo?).and_raise("aaaah")
expect {
expect(actual).to be_foo
}.to raise_error(/aaaah/)
end
it "fails on error other than NameError (with the present tense predicate)" do
actual = Object.new
actual.should_receive(:foos?).and_raise("aaaah")
expect {
expect(actual).to be_foo
}.to raise_error(/aaaah/)
end
it "does not support operator chaining like a basic `be` matcher does" do
matcher = be_happy
value = double(:happy? => false)
expect(be_happy == value).to be false
end
end
describe "expect(...).not_to be_predicate" do
it "passes when actual returns false for :sym?" do
actual = double("actual", :happy? => false)
expect(actual).not_to be_happy
end
it "passes when actual returns nil for :sym?" do
actual = double("actual", :happy? => nil)
expect(actual).not_to be_happy
end
it "fails when actual returns true for :sym?" do
actual = double("actual", :happy? => true)
expect {
expect(actual).not_to be_happy
}.to fail_with("expected happy? to return false, got true")
end
it "fails when actual does not respond to :sym?" do
expect {
expect(Object.new).not_to be_happy
}.to raise_error(NameError)
end
end
describe "expect(...).to be_predicate(*args)" do
it "passes when actual returns true for :predicate?(*args)" do
actual = double("actual")
actual.should_receive(:older_than?).with(3).and_return(true)
expect(actual).to be_older_than(3)
end
it "fails when actual returns false for :predicate?(*args)" do
actual = double("actual")
actual.should_receive(:older_than?).with(3).and_return(false)
expect {
expect(actual).to be_older_than(3)
}.to fail_with("expected older_than?(3) to return true, got false")
end
it "fails when actual does not respond to :predicate?" do
expect {
expect(Object.new).to be_older_than(3)
}.to raise_error(NameError)
end
end
describe "expect(...).not_to be_predicate(*args)" do
it "passes when actual returns false for :predicate?(*args)" do
actual = double("actual")
actual.should_receive(:older_than?).with(3).and_return(false)
expect(actual).not_to be_older_than(3)
end
it "fails when actual returns true for :predicate?(*args)" do
actual = double("actual")
actual.should_receive(:older_than?).with(3).and_return(true)
expect {
expect(actual).not_to be_older_than(3)
}.to fail_with("expected older_than?(3) to return false, got true")
end
it "fails when actual does not respond to :predicate?" do
expect {
expect(Object.new).not_to be_older_than(3)
}.to raise_error(NameError)
end
end
describe "expect(...).to be_predicate(&block)" do
it "passes when actual returns true for :predicate?(&block)" do
actual = double("actual")
delegate = double("delegate")
actual.should_receive(:happy?).and_yield
delegate.should_receive(:check_happy).and_return(true)
expect(actual).to be_happy { delegate.check_happy }
end
it "fails when actual returns false for :predicate?(&block)" do
actual = double("actual")
delegate = double("delegate")
actual.should_receive(:happy?).and_yield
delegate.should_receive(:check_happy).and_return(false)
expect {
expect(actual).to be_happy { delegate.check_happy }
}.to fail_with("expected happy? to return true, got false")
end
it "fails when actual does not respond to :predicate?" do
delegate = double("delegate", :check_happy => true)
expect {
expect(Object.new).to be_happy { delegate.check_happy }
}.to raise_error(NameError)
end
end
describe "expect(...).not_to be_predicate(&block)" do
it "passes when actual returns false for :predicate?(&block)" do
actual = double("actual")
delegate = double("delegate")
actual.should_receive(:happy?).and_yield
delegate.should_receive(:check_happy).and_return(false)
expect(actual).not_to be_happy { delegate.check_happy }
end
it "fails when actual returns true for :predicate?(&block)" do
actual = double("actual")
delegate = double("delegate")
actual.should_receive(:happy?).and_yield
delegate.should_receive(:check_happy).and_return(true)
expect {
expect(actual).not_to be_happy { delegate.check_happy }
}.to fail_with("expected happy? to return false, got true")
end
it "fails when actual does not respond to :predicate?" do
delegate = double("delegate", :check_happy => true)
expect {
expect(Object.new).not_to be_happy { delegate.check_happy }
}.to raise_error(NameError)
end
end
describe "expect(...).to be_predicate(*args, &block)" do
it "passes when actual returns true for :predicate?(*args, &block)" do
actual = double("actual")
delegate = double("delegate")
actual.should_receive(:older_than?).with(3).and_yield(3)
delegate.should_receive(:check_older_than).with(3).and_return(true)
expect(actual).to be_older_than(3) { |age| delegate.check_older_than(age) }
end
it "fails when actual returns false for :predicate?(*args, &block)" do
actual = double("actual")
delegate = double("delegate")
actual.should_receive(:older_than?).with(3).and_yield(3)
delegate.should_receive(:check_older_than).with(3).and_return(false)
expect {
expect(actual).to be_older_than(3) { |age| delegate.check_older_than(age) }
}.to fail_with("expected older_than?(3) to return true, got false")
end
it "fails when actual does not respond to :predicate?" do
delegate = double("delegate", :check_older_than => true)
expect {
expect(Object.new).to be_older_than(3) { |age| delegate.check_older_than(age) }
}.to raise_error(NameError)
end
end
describe "expect(...).not_to be_predicate(*args, &block)" do
it "passes when actual returns false for :predicate?(*args, &block)" do
actual = double("actual")
delegate = double("delegate")
actual.should_receive(:older_than?).with(3).and_yield(3)
delegate.should_receive(:check_older_than).with(3).and_return(false)
expect(actual).not_to be_older_than(3) { |age| delegate.check_older_than(age) }
end
it "fails when actual returns true for :predicate?(*args, &block)" do
actual = double("actual")
delegate = double("delegate")
actual.should_receive(:older_than?).with(3).and_yield(3)
delegate.should_receive(:check_older_than).with(3).and_return(true)
expect {
expect(actual).not_to be_older_than(3) { |age| delegate.check_older_than(age) }
}.to fail_with("expected older_than?(3) to return false, got true")
end
it "fails when actual does not respond to :predicate?" do
delegate = double("delegate", :check_older_than => true)
expect {
expect(Object.new).not_to be_older_than(3) { |age| delegate.check_older_than(age) }
}.to raise_error(NameError)
end
end
describe "expect(...).to be_true" do
it "passes when actual equal?(true)" do
expect(true).to be_true
end
it "passes when actual is 1" do
expect(1).to be_true
end
it "fails when actual equal?(false)" do
expect {
expect(false).to be_true
}.to fail_with("expected: true value\n got: false")
end
end
describe "expect(...).to be_false" do
it "passes when actual equal?(false)" do
expect(false).to be_false
end
it "passes when actual equal?(nil)" do
expect(nil).to be_false
end
it "fails when actual equal?(true)" do
expect {
expect(true).to be_false
}.to fail_with("expected: false value\n got: true")
end
end
describe "expect(...).to be_nil" do
it "passes when actual is nil" do
expect(nil).to be_nil
end
it "fails when actual is not nil" do
expect {
expect(:not_nil).to be_nil
}.to fail_with(/^expected: nil/)
end
end
describe "expect(...).not_to be_nil" do
it "passes when actual is not nil" do
expect(:not_nil).not_to be_nil
end
it "fails when actual is nil" do
expect {
expect(nil).not_to be_nil
}.to fail_with(/^expected: not nil/)
end
end
describe "expect(...).to be <" do
it "passes when < operator returns true" do
expect(3).to be < 4
end
it "fails when < operator returns false" do
expect {
expect(3).to be < 3
}.to fail_with("expected: < 3\n got: 3")
end
it "describes itself" do
expect(be.<(4).description).to eq "be < 4"
end
end
describe "expect(...).to be <=" do
it "passes when <= operator returns true" do
expect(3).to be <= 4
expect(4).to be <= 4
end
it "fails when <= operator returns false" do
expect {
expect(3).to be <= 2
}.to fail_with("expected: <= 2\n got: 3")
end
end
describe "expect(...).to be >=" do
it "passes when >= operator returns true" do
expect(4).to be >= 4
expect(5).to be >= 4
end
it "fails when >= operator returns false" do
expect {
expect(3).to be >= 4
}.to fail_with("expected: >= 4\n got: 3")
end
end
describe "expect(...).to be >" do
it "passes when > operator returns true" do
expect(5).to be > 4
end
it "fails when > operator returns false" do
expect {
expect(3).to be > 4
}.to fail_with("expected: > 4\n got: 3")
end
end
describe "expect(...).to be ==" do
it "passes when == operator returns true" do
expect(5).to be == 5
end
it "fails when == operator returns false" do
expect {
expect(3).to be == 4
}.to fail_with("expected: == 4\n got: 3")
end
it 'works when the target overrides `#send`' do
klass = Struct.new(:message) do
def send
:message_sent
end
end
msg_1 = klass.new("hello")
msg_2 = klass.new("hello")
expect(msg_1).to be == msg_2
end
end
describe "expect(...).to be =~" do
it "passes when =~ operator returns true" do
expect("a string").to be =~ /str/
end
it "fails when =~ operator returns false" do
expect {
expect("a string").to be =~ /blah/
}.to fail_with(%Q|expected: =~ /blah/\n got: "a string"|)
end
end
describe "should be =~", :uses_should do
it "passes when =~ operator returns true" do
"a string".should be =~ /str/
end
it "fails when =~ operator returns false" do
expect {
"a string".should be =~ /blah/
}.to fail_with(%Q|expected: =~ /blah/\n got: "a string"|)
end
end
describe "expect(...).to be ===" do
it "passes when === operator returns true" do
expect(Hash).to be === Hash.new
end
it "fails when === operator returns false" do
expect {
expect(Hash).to be === "not a hash"
}.to fail_with(%[expected: === "not a hash"\n got: Hash])
end
end
describe "expect(...).not_to with operators" do
it "coaches user to stop using operators with expect().not_to" do
expect {
expect(5).not_to be < 6
}.to raise_error(/`expect\(actual\).not_to be < 6` not only FAILED,\nit is a bit confusing./m)
end
end
describe "should_not with operators", :uses_only_should do
it "coaches user to stop using operators with should_not" do
lambda {
5.should_not be < 6
}.should raise_error(/`actual.should_not be < 6` not only FAILED,\nit is a bit confusing./m)
end
end
describe "expect(...).to be" do
it "passes if actual is truthy" do
expect(true).to be
expect(1).to be
end
it "fails if actual is false" do
expect {
expect(false).to be
}.to fail_with("expected false to evaluate to true")
end
it "fails if actual is nil" do
expect {
expect(nil).to be
}.to fail_with("expected nil to evaluate to true")
end
it "describes itself" do
expect(be.description).to eq "be"
end
end
describe "expect(...).not_to be" do
it "passes if actual is falsy" do
expect(false).not_to be
expect(nil).not_to be
end
it "fails on true" do
expect {
expect(true).not_to be
}.to fail_with("expected true to evaluate to false")
end
end
describe "expect(...).to be(value)" do
it "delegates to equal" do
matcher = equal(5)
self.should_receive(:equal).with(5).and_return(matcher)
expect(5).to be(5)
end
end
describe "expect(...).not_to be(value)" do
it "delegates to equal" do
matcher = equal(4)
self.should_receive(:equal).with(4).and_return(matcher)
expect(5).not_to be(4)
end
end
describe "'expect(...).to be' with operator" do
it "includes 'be' in the description" do
expect((be > 6).description).to match(/be > 6/)
expect((be >= 6).description).to match(/be >= 6/)
expect((be <= 6).description).to match(/be <= 6/)
expect((be < 6).description).to match(/be < 6/)
end
end
describe "arbitrary predicate with DelegateClass" do
it "accesses methods defined in the delegating class (LH[#48])" do
require 'delegate'
class ArrayDelegate < DelegateClass(Array)
def initialize(array)
@internal_array = array
super(@internal_array)
end
def large?
@internal_array.size >= 5
end
end
delegate = ArrayDelegate.new([1,2,3,4,5,6])
expect(delegate).to be_large
end
end
describe "be_a, be_an" do
it "passes when class matches" do
expect("foobar").to be_a(String)
expect([1,2,3]).to be_an(Array)
end
it "fails when class does not match" do
expect("foobar").not_to be_a(Hash)
expect([1,2,3]).not_to be_an(Integer)
end
end
describe "be_an_instance_of" do
it "passes when direct class matches" do
expect(5).to be_an_instance_of(Fixnum)
end
it "fails when class is higher up hierarchy" do
expect(5).not_to be_an_instance_of(Numeric)
end
end
|