2019-02-06 02:37:41 +00:00
|
|
|
require "../spec_helper"
|
|
|
|
|
2019-03-06 09:19:12 +00:00
|
|
|
private struct FakeValueSet
|
|
|
|
def has_value?(value)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-06 02:37:41 +00:00
|
|
|
describe Spectator::Matchers::HaveValueMatcher do
|
2019-03-06 09:19:12 +00:00
|
|
|
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
|
2019-02-06 02:37:41 +00:00
|
|
|
end
|
|
|
|
|
2019-03-06 09:19:12 +00:00
|
|
|
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)
|
2019-03-22 17:53:20 +00:00
|
|
|
match_data_value_sans_prefix(match_data.values, :value)[:value].should eq(value)
|
2019-03-06 09:19:12 +00:00
|
|
|
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)
|
2019-03-22 17:53:20 +00:00
|
|
|
match_data_value_sans_prefix(match_data.values, :actual)[:value].should eq(hash.values)
|
2019-03-06 09:19:12 +00:00
|
|
|
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)
|
2019-03-22 17:53:20 +00:00
|
|
|
match_data_value_sans_prefix(match_data.values, :actual)[:value].should eq(actual)
|
2019-03-06 09:19:12 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-02-06 02:37:41 +00:00
|
|
|
end
|
|
|
|
|
2019-03-06 09:19:12 +00:00
|
|
|
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
|
2019-02-06 02:37:41 +00:00
|
|
|
|
2019-03-06 09:19:12 +00:00
|
|
|
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
|
2019-02-06 02:37:41 +00:00
|
|
|
|
2019-03-06 09:19:12 +00:00
|
|
|
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
|
2019-02-06 02:37:41 +00:00
|
|
|
end
|
|
|
|
|
2019-03-06 09:19:12 +00:00
|
|
|
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
|
2019-02-06 02:37:41 +00:00
|
|
|
|
2019-03-06 09:19:12 +00:00
|
|
|
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
|
2019-02-06 02:37:41 +00:00
|
|
|
|
2019-03-06 09:19:12 +00:00
|
|
|
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
|
2019-02-06 02:37:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|