shard-spectator/spec/matchers/type_matcher_spec.cr

118 lines
3.7 KiB
Crystal
Raw Normal View History

2019-01-19 21:29:07 +00:00
require "../spec_helper"
describe Spectator::Matchers::TypeMatcher do
2019-03-06 18:19:57 +00:00
describe "#match" do
context "returned MatchData" do
describe "#matched?" do
context "with the same type" do
it "is true" do
value = "foobar"
partial = new_partial(value)
matcher = Spectator::Matchers::TypeMatcher(String).new
match_data = matcher.match(partial)
match_data.matched?.should be_true
end
end
2019-01-19 21:29:07 +00:00
2019-03-06 18:19:57 +00:00
context "with a different type" do
it "is false" do
value = "foobar"
partial = new_partial(value)
matcher = Spectator::Matchers::TypeMatcher(Int32).new
match_data = matcher.match(partial)
match_data.matched?.should be_false
end
end
2019-01-26 23:34:58 +00:00
2019-03-06 18:19:57 +00:00
context "with a parent type" do
it "is true" do
value = IO::Memory.new
partial = new_partial(value)
matcher = Spectator::Matchers::TypeMatcher(IO).new
match_data = matcher.match(partial)
match_data.matched?.should be_true
end
end
context "with a child type" do
it "is false" do
value = Exception.new("foobar")
partial = new_partial(value)
matcher = Spectator::Matchers::TypeMatcher(ArgumentError).new
match_data = matcher.match(partial)
match_data.matched?.should be_false
end
end
2019-01-26 23:34:58 +00:00
2019-03-06 18:19:57 +00:00
context "with a mix-in" do
it "is true" do
value = %i[a b c]
partial = new_partial(value)
matcher = Spectator::Matchers::TypeMatcher(Enumerable(Symbol)).new
match_data = matcher.match(partial)
match_data.matched?.should be_true
end
end
2019-01-26 23:44:46 +00:00
end
2019-03-06 18:19:57 +00:00
describe "#values" do
context "expected" do
it "is the expected type name" do
value = %i[a b c]
partial = new_partial(value)
matcher = Spectator::Matchers::TypeMatcher(String).new
match_data = matcher.match(partial)
match_data.values[:expected].value.should eq(String)
2019-03-06 18:19:57 +00:00
end
end
context "actual" do
it "is the actual type name" do
value = %i[a b c]
partial = new_partial(value)
matcher = Spectator::Matchers::TypeMatcher(String).new
match_data = matcher.match(partial)
match_data.values[:actual].should eq(typeof(value))
end
end
2019-01-26 23:34:58 +00:00
end
2019-01-19 21:29:07 +00:00
2019-03-06 18:19:57 +00:00
describe "#message" do
it "contains the actual label" do
value = 42
label = "everything"
partial = new_partial(value, label)
matcher = Spectator::Matchers::TypeMatcher(String).new
match_data = matcher.match(partial)
match_data.message.should contain(label)
end
2019-01-19 21:29:07 +00:00
2019-03-06 18:19:57 +00:00
it "contains the expected type" do
partial = new_partial(42)
matcher = Spectator::Matchers::TypeMatcher(String).new
match_data = matcher.match(partial)
match_data.message.should contain("String")
end
end
2019-01-19 21:29:07 +00:00
2019-03-06 18:19:57 +00:00
describe "#negated_message" do
it "contains the actual label" do
value = 42
label = "everything"
partial = new_partial(value, label)
matcher = Spectator::Matchers::TypeMatcher(String).new
match_data = matcher.match(partial)
match_data.negated_message.should contain(label)
end
2019-01-19 21:29:07 +00:00
2019-03-06 18:19:57 +00:00
it "contains the expected type" do
partial = new_partial(42)
matcher = Spectator::Matchers::TypeMatcher(String).new
match_data = matcher.match(partial)
match_data.negated_message.should contain("String")
end
end
2019-01-19 21:29:07 +00:00
end
end
end