mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Update CaseMatcher to use MatchData
This commit is contained in:
parent
50a782b803
commit
e38bcd544a
2 changed files with 175 additions and 140 deletions
|
@ -1,21 +1,24 @@
|
||||||
require "../spec_helper"
|
require "../spec_helper"
|
||||||
|
|
||||||
describe Spectator::Matchers::CaseMatcher do
|
describe Spectator::Matchers::CaseMatcher do
|
||||||
describe "#match?" do
|
describe "#match" do
|
||||||
it "compares using #===" do
|
it "compares using #===" do
|
||||||
spy = SpySUT.new
|
spy = SpySUT.new
|
||||||
partial = new_partial(42)
|
partial = new_partial(42)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(spy)
|
matcher = Spectator::Matchers::CaseMatcher.new(spy)
|
||||||
matcher.match?(partial).should be_true
|
matcher.match(partial)
|
||||||
spy.case_eq_call_count.should be > 0
|
spy.case_eq_call_count.should be > 0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "returned MatchData" do
|
||||||
|
describe "#matched?" do
|
||||||
context "with identical values" do
|
context "with identical values" do
|
||||||
it "is true" do
|
it "is true" do
|
||||||
value = 42
|
value = 42
|
||||||
partial = new_partial(value)
|
partial = new_partial(value)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||||
matcher.match?(partial).should be_true
|
match_data = matcher.match(partial)
|
||||||
|
match_data.matched?.should be_true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -25,7 +28,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
value2 = 777
|
value2 = 777
|
||||||
partial = new_partial(value1)
|
partial = new_partial(value1)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||||
matcher.match?(partial).should be_false
|
match_data = matcher.match(partial)
|
||||||
|
match_data.matched?.should be_false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -35,7 +39,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
ref = Box.new([] of Int32)
|
ref = Box.new([] of Int32)
|
||||||
partial = new_partial(ref)
|
partial = new_partial(ref)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(ref)
|
matcher = Spectator::Matchers::CaseMatcher.new(ref)
|
||||||
matcher.match?(partial).should be_true
|
match_data = matcher.match(partial)
|
||||||
|
match_data.matched?.should be_true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -46,7 +51,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
array2 = [1, 2, 3]
|
array2 = [1, 2, 3]
|
||||||
partial = new_partial(array1)
|
partial = new_partial(array1)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(array2)
|
matcher = Spectator::Matchers::CaseMatcher.new(array2)
|
||||||
matcher.match?(partial).should be_true
|
match_data = matcher.match(partial)
|
||||||
|
match_data.matched?.should be_true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -56,7 +62,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
array2 = [4, 5, 6]
|
array2 = [4, 5, 6]
|
||||||
partial = new_partial(array1)
|
partial = new_partial(array1)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(array2)
|
matcher = Spectator::Matchers::CaseMatcher.new(array2)
|
||||||
matcher.match?(partial).should be_false
|
match_data = matcher.match(partial)
|
||||||
|
match_data.matched?.should be_false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -66,7 +73,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
value2 = String
|
value2 = String
|
||||||
partial = new_partial(value1)
|
partial = new_partial(value1)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||||
matcher.match?(partial).should be_true
|
match_data = matcher.match(partial)
|
||||||
|
match_data.matched?.should be_true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -76,7 +84,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
value2 = Array
|
value2 = Array
|
||||||
partial = new_partial(value1)
|
partial = new_partial(value1)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||||
matcher.match?(partial).should be_false
|
match_data = matcher.match(partial)
|
||||||
|
match_data.matched?.should be_false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -87,7 +96,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
value = 42
|
value = 42
|
||||||
partial = new_partial(value)
|
partial = new_partial(value)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||||
matcher.message(partial).should contain("===")
|
match_data = matcher.match(partial)
|
||||||
|
match_data.message.should contain("===")
|
||||||
end
|
end
|
||||||
|
|
||||||
it "contains the actual label" do
|
it "contains the actual label" do
|
||||||
|
@ -95,7 +105,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
label = "everything"
|
label = "everything"
|
||||||
partial = new_partial(value, label)
|
partial = new_partial(value, label)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||||
matcher.message(partial).should contain(label)
|
match_data = matcher.match(partial)
|
||||||
|
match_data.message.should contain(label)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "contains the expected label" do
|
it "contains the expected label" do
|
||||||
|
@ -103,7 +114,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
label = "everything"
|
label = "everything"
|
||||||
partial = new_partial(value)
|
partial = new_partial(value)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value, label)
|
matcher = Spectator::Matchers::CaseMatcher.new(value, label)
|
||||||
matcher.message(partial).should contain(label)
|
match_data = matcher.match(partial)
|
||||||
|
match_data.message.should contain(label)
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when expected label is omitted" do
|
context "when expected label is omitted" do
|
||||||
|
@ -112,7 +124,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
value2 = 777
|
value2 = 777
|
||||||
partial = new_partial(value1)
|
partial = new_partial(value1)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||||
matcher.message(partial).should contain(value2.to_s)
|
match_data = matcher.match(partial)
|
||||||
|
match_data.message.should contain(value2.to_s)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -122,7 +135,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
value = 42
|
value = 42
|
||||||
partial = new_partial(value)
|
partial = new_partial(value)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||||
matcher.negated_message(partial).should contain("===")
|
match_data = matcher.match(partial)
|
||||||
|
match_data.negated_message.should contain("===")
|
||||||
end
|
end
|
||||||
|
|
||||||
it "contains the actual label" do
|
it "contains the actual label" do
|
||||||
|
@ -130,7 +144,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
label = "everything"
|
label = "everything"
|
||||||
partial = new_partial(value, label)
|
partial = new_partial(value, label)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||||
matcher.negated_message(partial).should contain(label)
|
match_data = matcher.match(partial)
|
||||||
|
match_data.negated_message.should contain(label)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "contains the expected label" do
|
it "contains the expected label" do
|
||||||
|
@ -138,7 +153,8 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
label = "everything"
|
label = "everything"
|
||||||
partial = new_partial(value)
|
partial = new_partial(value)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value, label)
|
matcher = Spectator::Matchers::CaseMatcher.new(value, label)
|
||||||
matcher.negated_message(partial).should contain(label)
|
match_data = matcher.match(partial)
|
||||||
|
match_data.negated_message.should contain(label)
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when expected label is omitted" do
|
context "when expected label is omitted" do
|
||||||
|
@ -147,7 +163,10 @@ describe Spectator::Matchers::CaseMatcher do
|
||||||
value2 = 777
|
value2 = 777
|
||||||
partial = new_partial(value1)
|
partial = new_partial(value1)
|
||||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||||
matcher.negated_message(partial).should contain(value2.to_s)
|
match_data = matcher.match(partial)
|
||||||
|
match_data.negated_message.should contain(value2.to_s)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,27 +5,43 @@ module Spectator::Matchers
|
||||||
# The values are compared with the === operator.
|
# The values are compared with the === operator.
|
||||||
struct CaseMatcher(ExpectedType) < ValueMatcher(ExpectedType)
|
struct CaseMatcher(ExpectedType) < ValueMatcher(ExpectedType)
|
||||||
# Determines whether the matcher is satisfied with the value given to it.
|
# Determines whether the matcher is satisfied with the value given to it.
|
||||||
# True is returned if the match was successful, false otherwise.
|
private def match?(actual)
|
||||||
def match?(partial)
|
expected === actual
|
||||||
expected === partial.actual
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Determines whether the matcher is satisfied with the partial given to it.
|
# Determines whether the matcher is satisfied with the partial given to it.
|
||||||
# `MatchData` is returned that contains information about the match.
|
# `MatchData` is returned that contains information about the match.
|
||||||
def match(partial) : MatchData
|
def match(partial)
|
||||||
raise NotImplementedError.new("#match")
|
values = ExpectedActual.new(partial, self)
|
||||||
|
MatchData.new(match?(values.actual), values)
|
||||||
|
end
|
||||||
|
|
||||||
|
# Match data specific to this matcher.
|
||||||
|
private struct MatchData(ExpectedType, ActualType) < MatchData
|
||||||
|
# Creates the match data.
|
||||||
|
def initialize(matched, @values : ExpectedActual(ExpectedType, ActualType))
|
||||||
|
super(matched)
|
||||||
|
end
|
||||||
|
|
||||||
|
# Information about the match.
|
||||||
|
def values
|
||||||
|
{
|
||||||
|
expected: @values.expected,
|
||||||
|
actual: @values.actual,
|
||||||
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
# Describes the condition that satisfies the matcher.
|
# Describes the condition that satisfies the matcher.
|
||||||
# This is informational and displayed to the end-user.
|
# This is informational and displayed to the end-user.
|
||||||
def message(partial)
|
def message
|
||||||
"Expected #{partial.label} to semantically equal #{label} (using ===)"
|
"#{@values.actual_label} equals #{@values.expected_label} (using ===)"
|
||||||
end
|
end
|
||||||
|
|
||||||
# Describes the condition that won't satsify the matcher.
|
# Describes the condition that won't satsify the matcher.
|
||||||
# This is informational and displayed to the end-user.
|
# This is informational and displayed to the end-user.
|
||||||
def negated_message(partial)
|
def negated_message
|
||||||
"Expected #{partial.label} to not semantically equal #{label} (using ===)"
|
"#{@values.actual_label} does not equal #{@values.expected_label} (using ===)"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue