mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Update HaveValueMatcher to use MatchData
This commit is contained in:
parent
3f1d8751fe
commit
76d09a22ff
2 changed files with 154 additions and 82 deletions
|
@ -1,84 +1,139 @@
|
|||
require "../spec_helper"
|
||||
|
||||
private struct FakeValueSet
|
||||
def has_value?(value)
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
describe Spectator::Matchers::HaveValueMatcher do
|
||||
describe "#match?" do
|
||||
context "with an existing value" do
|
||||
it "is true" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
matcher.match?(partial).should be_true
|
||||
describe "#match" do
|
||||
context "returned MatchData" do
|
||||
describe "#matched?" do
|
||||
context "with an existing value" do
|
||||
it "is true" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.matched?.should be_true
|
||||
end
|
||||
end
|
||||
|
||||
context "with a non-existent value" do
|
||||
it "is false" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "baz"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.matched?.should be_false
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context "with a non-existent value" do
|
||||
it "is false" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "baz"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
matcher.match?(partial).should be_false
|
||||
describe "#values" do
|
||||
context "value" do
|
||||
it "is the expected value" do
|
||||
hash = {"foo" => "bar"}
|
||||
value = "baz"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.values[:value].should eq(value)
|
||||
end
|
||||
end
|
||||
|
||||
context "actual" do
|
||||
context "when #values is available" do
|
||||
it "is the list of values" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "baz"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.values[:actual].should eq(hash.values)
|
||||
end
|
||||
end
|
||||
|
||||
context "when #values isn't available" do
|
||||
it "is the actual value" do
|
||||
actual = FakeValueSet.new
|
||||
value = "baz"
|
||||
partial = new_partial(actual)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.values[:actual].should eq(actual)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe "#message" do
|
||||
it "contains the actual label" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
label = "blah"
|
||||
partial = new_partial(hash, label)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
matcher.message(partial).should contain(label)
|
||||
end
|
||||
describe "#message" do
|
||||
it "contains the actual label" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
label = "blah"
|
||||
partial = new_partial(hash, label)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.message.should contain(label)
|
||||
end
|
||||
|
||||
it "contains the expected label" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
label = "blah"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value, label)
|
||||
matcher.message(partial).should contain(label)
|
||||
end
|
||||
it "contains the expected label" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
label = "blah"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value, label)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.message.should contain(label)
|
||||
end
|
||||
|
||||
context "when the expected label is omitted" do
|
||||
it "contains the stringified key" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
matcher.message(partial).should contain(value.to_s)
|
||||
context "when the expected label is omitted" do
|
||||
it "contains the stringified key" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.message.should contain(value.to_s)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe "#negated_message" do
|
||||
it "contains the actual label" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
label = "blah"
|
||||
partial = new_partial(hash, label)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
matcher.negated_message(partial).should contain(label)
|
||||
end
|
||||
describe "#negated_message" do
|
||||
it "contains the actual label" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
label = "blah"
|
||||
partial = new_partial(hash, label)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.negated_message.should contain(label)
|
||||
end
|
||||
|
||||
it "contains the expected label" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
label = "blah"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value, label)
|
||||
matcher.negated_message(partial).should contain(label)
|
||||
end
|
||||
it "contains the expected label" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
label = "blah"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value, label)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.negated_message.should contain(label)
|
||||
end
|
||||
|
||||
context "when the expected label is omitted" do
|
||||
it "contains the stringified key" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
matcher.negated_message(partial).should contain(value.to_s)
|
||||
context "when the expected label is omitted" do
|
||||
it "contains the stringified key" do
|
||||
hash = Hash{"foo" => "bar"}
|
||||
value = "bar"
|
||||
partial = new_partial(hash)
|
||||
matcher = Spectator::Matchers::HaveValueMatcher.new(value)
|
||||
match_data = matcher.match(partial)
|
||||
match_data.negated_message.should contain(value.to_s)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue