shard-spectator/spec/matchers/case_matcher_spec.cr

198 lines
6.4 KiB
Crystal
Raw Normal View History

2019-01-19 20:50:57 +00:00
require "../spec_helper"
describe Spectator::Matchers::CaseMatcher do
2019-03-04 02:05:20 +00:00
describe "#match" do
2019-01-19 20:50:57 +00:00
it "compares using #===" do
spy = SpySUT.new
partial = new_partial(42)
2019-01-19 20:50:57 +00:00
matcher = Spectator::Matchers::CaseMatcher.new(spy)
2019-03-04 02:05:20 +00:00
matcher.match(partial)
2019-01-19 20:50:57 +00:00
spy.case_eq_call_count.should be > 0
end
2019-03-04 02:05:20 +00:00
context "returned MatchData" do
describe "#matched?" do
context "with identical values" do
it "is true" do
value = 42
partial = new_partial(value)
matcher = Spectator::Matchers::CaseMatcher.new(value)
match_data = matcher.match(partial)
match_data.matched?.should be_true
end
2019-01-19 20:50:57 +00:00
end
2019-03-04 02:05:20 +00:00
context "with different values" do
it "is false" do
value1 = 42
value2 = 777
partial = new_partial(value1)
matcher = Spectator::Matchers::CaseMatcher.new(value2)
match_data = matcher.match(partial)
match_data.matched?.should be_false
end
2019-01-19 20:50:57 +00:00
end
2019-03-04 02:05:20 +00:00
context "with the same instance" do
it "is true" do
# Box is used because it is a reference type and doesn't override the == method.
ref = Box.new([] of Int32)
partial = new_partial(ref)
matcher = Spectator::Matchers::CaseMatcher.new(ref)
match_data = matcher.match(partial)
match_data.matched?.should be_true
end
2019-01-19 20:50:57 +00:00
end
2019-03-04 02:05:20 +00:00
context "with different instances" do
context "with same contents" do
it "is true" do
array1 = [1, 2, 3]
array2 = [1, 2, 3]
partial = new_partial(array1)
matcher = Spectator::Matchers::CaseMatcher.new(array2)
match_data = matcher.match(partial)
match_data.matched?.should be_true
end
end
context "with different contents" do
it "is false" do
array1 = [1, 2, 3]
array2 = [4, 5, 6]
partial = new_partial(array1)
matcher = Spectator::Matchers::CaseMatcher.new(array2)
match_data = matcher.match(partial)
match_data.matched?.should be_false
end
end
context "with the same type" do
it "is true" do
value1 = "foobar"
value2 = String
partial = new_partial(value1)
matcher = Spectator::Matchers::CaseMatcher.new(value2)
match_data = matcher.match(partial)
match_data.matched?.should be_true
end
end
context "with a different type" do
it "is false" do
value1 = "foobar"
value2 = Array
partial = new_partial(value1)
matcher = Spectator::Matchers::CaseMatcher.new(value2)
match_data = matcher.match(partial)
match_data.matched?.should be_false
end
end
2019-01-19 20:50:57 +00:00
end
end
2019-03-04 02:31:39 +00:00
describe "#values" do
context "expected" do
it "is the expected value" do
actual = "foobar"
expected = /foo/
partial = new_partial(actual)
matcher = Spectator::Matchers::CaseMatcher.new(expected)
match_data = matcher.match(partial)
match_data.values[:expected].value.should eq(expected)
2019-03-04 02:31:39 +00:00
end
end
context "actual" do
it "is the actual value" do
actual = "foobar"
expected = /foo/
partial = new_partial(actual)
matcher = Spectator::Matchers::CaseMatcher.new(expected)
match_data = matcher.match(partial)
match_data.values[:actual].should eq(actual)
end
end
end
2019-03-04 02:05:20 +00:00
describe "#message" do
it "mentions ===" do
value = 42
partial = new_partial(value)
matcher = Spectator::Matchers::CaseMatcher.new(value)
match_data = matcher.match(partial)
match_data.message.should contain("===")
end
2019-01-19 20:50:57 +00:00
2019-03-04 02:05:20 +00:00
it "contains the actual label" do
value = 42
label = "everything"
partial = new_partial(value, label)
matcher = Spectator::Matchers::CaseMatcher.new(value)
match_data = matcher.match(partial)
match_data.message.should contain(label)
end
2019-01-19 20:50:57 +00:00
2019-03-04 02:05:20 +00:00
it "contains the expected label" do
value = 42
label = "everything"
partial = new_partial(value)
matcher = Spectator::Matchers::CaseMatcher.new(value, label)
match_data = matcher.match(partial)
match_data.message.should contain(label)
end
2019-01-19 20:50:57 +00:00
2019-03-04 02:05:20 +00:00
context "when expected label is omitted" do
it "contains stringified form of expected value" do
value1 = 42
value2 = 777
partial = new_partial(value1)
matcher = Spectator::Matchers::CaseMatcher.new(value2)
match_data = matcher.match(partial)
match_data.message.should contain(value2.to_s)
end
end
2019-01-19 20:50:57 +00:00
end
2019-03-04 02:05:20 +00:00
describe "#negated_message" do
it "mentions ===" do
value = 42
partial = new_partial(value)
matcher = Spectator::Matchers::CaseMatcher.new(value)
match_data = matcher.match(partial)
match_data.negated_message.should contain("===")
end
2019-01-19 20:50:57 +00:00
2019-03-04 02:05:20 +00:00
it "contains the actual label" do
value = 42
label = "everything"
partial = new_partial(value, label)
matcher = Spectator::Matchers::CaseMatcher.new(value)
match_data = matcher.match(partial)
match_data.negated_message.should contain(label)
end
2019-01-19 20:50:57 +00:00
2019-03-04 02:05:20 +00:00
it "contains the expected label" do
value = 42
label = "everything"
partial = new_partial(value)
matcher = Spectator::Matchers::CaseMatcher.new(value, label)
match_data = matcher.match(partial)
match_data.negated_message.should contain(label)
end
2019-01-19 20:50:57 +00:00
2019-03-04 02:05:20 +00:00
context "when expected label is omitted" do
it "contains stringified form of expected value" do
value1 = 42
value2 = 777
partial = new_partial(value1)
matcher = Spectator::Matchers::CaseMatcher.new(value2)
match_data = matcher.match(partial)
match_data.negated_message.should contain(value2.to_s)
end
end
2019-01-19 20:50:57 +00:00
end
end
end
end