2019-02-05 17:36:59 +00:00
|
|
|
require "../spec_helper"
|
|
|
|
|
|
|
|
describe Spectator::Matchers::PredicateMatcher do
|
2019-03-06 18:05:13 +00:00
|
|
|
describe "#match" do
|
|
|
|
context "returned MatchData" do
|
|
|
|
describe "#match?" do
|
|
|
|
context "with a true predicate" do
|
|
|
|
it "is true" do
|
|
|
|
value = "foobar"
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::PredicateMatcher(NamedTuple(ascii_only: Nil)).new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.matched?.should be_true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a false predicate" do
|
|
|
|
it "is false" do
|
|
|
|
value = "foobar"
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::PredicateMatcher(NamedTuple(empty: Nil)).new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.matched?.should be_false
|
|
|
|
end
|
|
|
|
end
|
2019-02-05 17:36:59 +00:00
|
|
|
end
|
|
|
|
|
2019-03-06 18:05:13 +00:00
|
|
|
describe "#values" do
|
|
|
|
it "contains a key for each expected attribute" do
|
|
|
|
value = "foobar"
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::PredicateMatcher(NamedTuple(empty: Nil, ascii_only: Nil)).new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
values = match_data.values
|
|
|
|
values.has_key?(:empty).should be_true
|
|
|
|
values.has_key?(:ascii_only).should be_true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has the actual values" do
|
|
|
|
value = "foobar"
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::PredicateMatcher(NamedTuple(empty: Nil, ascii_only: Nil)).new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
values = match_data.values
|
|
|
|
values.[:empty].should eq(value.empty?)
|
|
|
|
values.[:ascii_only].should eq(value.ascii_only?)
|
|
|
|
end
|
2019-02-05 17:36:59 +00:00
|
|
|
end
|
|
|
|
|
2019-03-06 18:05:13 +00:00
|
|
|
describe "#message" do
|
|
|
|
it "contains the actual label" do
|
|
|
|
value = "foobar"
|
|
|
|
label = "blah"
|
|
|
|
partial = new_partial(value, label)
|
|
|
|
matcher = Spectator::Matchers::PredicateMatcher(NamedTuple(ascii_only: Nil)).new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.message.should contain(label)
|
|
|
|
end
|
2019-02-05 17:36:59 +00:00
|
|
|
|
2019-03-06 18:05:13 +00:00
|
|
|
it "contains stringified form of predicate" do
|
|
|
|
value = "foobar"
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::PredicateMatcher(NamedTuple(ascii_only: Nil)).new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.message.should contain("ascii_only")
|
|
|
|
end
|
|
|
|
end
|
2019-02-05 17:36:59 +00:00
|
|
|
|
2019-03-06 18:05:13 +00:00
|
|
|
describe "#negated_message" do
|
|
|
|
it "contains the actual label" do
|
|
|
|
value = "foobar"
|
|
|
|
label = "blah"
|
|
|
|
partial = new_partial(value, label)
|
|
|
|
matcher = Spectator::Matchers::PredicateMatcher(NamedTuple(ascii_only: Nil)).new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.negated_message.should contain(label)
|
|
|
|
end
|
2019-02-05 17:36:59 +00:00
|
|
|
|
2019-03-06 18:05:13 +00:00
|
|
|
it "contains stringified form of predicate" do
|
|
|
|
value = "foobar"
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::PredicateMatcher(NamedTuple(ascii_only: Nil)).new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.negated_message.should contain("ascii_only")
|
|
|
|
end
|
|
|
|
end
|
2019-02-05 17:36:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|