mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
267 lines
6.9 KiB
Crystal
267 lines
6.9 KiB
Crystal
require "../spec_helper"
|
|
|
|
Spectator.describe Spectator::Matchers::ReceiveMatcher do
|
|
let(stub) { Spectator::NullStub.new(:test_method) }
|
|
subject(matcher) { described_class.new(stub) }
|
|
|
|
let(args) { Spectator::Arguments.capture(1, "test", Symbol, foo: /bar/) }
|
|
let(args_stub) { Spectator::NullStub.new(:test_method, args) }
|
|
let(args_matcher) { described_class.new(args_stub) }
|
|
|
|
let(no_args_stub) { Spectator::NullStub.new(:test_method, Spectator::Arguments.empty) }
|
|
let(no_args_matcher) { described_class.new(no_args_stub) }
|
|
|
|
double(:dbl, test_method: nil, irrelevant: nil)
|
|
let(dbl) { double(:dbl) }
|
|
let(actual) { Spectator::Value.new(dbl, "dbl") }
|
|
|
|
def successful_match
|
|
Spectator::Matchers::SuccessfulMatchData
|
|
end
|
|
|
|
def failed_match
|
|
Spectator::Matchers::FailedMatchData
|
|
end
|
|
|
|
describe "#description" do
|
|
subject { matcher.description }
|
|
|
|
it "includes the method name" do
|
|
is_expected.to contain("test_method")
|
|
end
|
|
|
|
context "with no arguments" do
|
|
let(matcher) { no_args_matcher }
|
|
|
|
it "mentions there are none" do
|
|
is_expected.to contain("no args")
|
|
end
|
|
end
|
|
|
|
context "with arguments" do
|
|
let(matcher) { args_matcher }
|
|
|
|
it "lists the arguments" do
|
|
is_expected.to contain("1, \"test\", Symbol, foo: #{/bar/}")
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "#with" do
|
|
subject { matcher.with(1, 2, 3, bar: /baz/) }
|
|
|
|
it "applies a constraint on arguments" do
|
|
dbl.test_method
|
|
expect(&.match(actual)).to be_a(failed_match)
|
|
dbl.test_method(1, 2, 3, bar: "foobarbaz")
|
|
expect(&.match(actual)).to be_a(successful_match)
|
|
end
|
|
end
|
|
|
|
describe "#match" do
|
|
subject(match_data) { matcher.match(actual) }
|
|
|
|
context "with no argument constraint" do
|
|
it "matches with no arguments" do
|
|
dbl.test_method
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "matches with any arguments" do
|
|
dbl.test_method("foo")
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "doesn't match with no calls" do
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "doesn't match with different calls" do
|
|
dbl.irrelevant("foo")
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
end
|
|
|
|
context "with a \"no arguments\" constraint" do
|
|
let(matcher) { no_args_matcher }
|
|
|
|
it "matches with no arguments" do
|
|
dbl.test_method
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "doesn't match with arguments" do
|
|
dbl.test_method("foo")
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "doesn't match with no calls" do
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "doesn't match with different calls" do
|
|
dbl.irrelevant("foo")
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
end
|
|
|
|
context "with an arguments constraint" do
|
|
let(matcher) { args_matcher }
|
|
|
|
it "doesn't match with no arguments" do
|
|
dbl.test_method
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "matches with matching arguments" do
|
|
dbl.test_method(1, "test", :xyz, foo: "foobarbaz")
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "doesn't match with differing arguments" do
|
|
dbl.test_method(1, "wrong", 42, foo: "wrong")
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "doesn't match with no calls" do
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "doesn't match with different calls" do
|
|
dbl.irrelevant("foo")
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
end
|
|
|
|
describe "the match data values" do
|
|
let(matcher) { args_matcher }
|
|
subject(values) { match_data.as(Spectator::Matchers::FailedMatchData).values }
|
|
|
|
pre_condition { expect(match_data).to be_a(failed_match) }
|
|
|
|
before_each do
|
|
dbl.test_method
|
|
dbl.test_method(1, "wrong", :xyz, foo: "foobarbaz")
|
|
dbl.irrelevant("foo")
|
|
end
|
|
|
|
it "has the expected call listed" do
|
|
is_expected.to contain({:expected, stub.to_s})
|
|
end
|
|
|
|
it "has the list of called methods" do
|
|
is_expected.to contain({
|
|
:actual,
|
|
[
|
|
"test_method(no args)",
|
|
"test_method(1, \"test\", :xyz, foo: \"foobarbaz\"",
|
|
"irrelevant(\"foo\")",
|
|
],
|
|
})
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "#negated_match" do
|
|
subject(match_data) { matcher.negated_match(actual) }
|
|
|
|
context "with no argument constraint" do
|
|
it "doesn't match with no arguments" do
|
|
dbl.test_method
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "doesn't match with any arguments" do
|
|
dbl.test_method("foo")
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "matches with no calls" do
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "matches with different calls" do
|
|
dbl.irrelevant("foo")
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
end
|
|
|
|
context "with a \"no arguments\" constraint" do
|
|
let(matcher) { no_args_matcher }
|
|
|
|
it "doesn't match with no arguments" do
|
|
dbl.test_method
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "matches with arguments" do
|
|
dbl.test_method("foo")
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "matches with no calls" do
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "matches with different calls" do
|
|
dbl.irrelevant("foo")
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
end
|
|
|
|
context "with an arguments constraint" do
|
|
let(matcher) { args_matcher }
|
|
|
|
it "matches with no arguments" do
|
|
dbl.test_method
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "doesn't match with matching arguments" do
|
|
dbl.test_method(1, "test", :xyz, foo: "foobarbaz")
|
|
is_expected.to be_a(failed_match)
|
|
end
|
|
|
|
it "matches with differing arguments" do
|
|
dbl.test_method(1, "wrong", 42, foo: "wrong")
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "matches with no calls" do
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
|
|
it "matches with different calls" do
|
|
dbl.irrelevant("foo")
|
|
is_expected.to be_a(successful_match)
|
|
end
|
|
end
|
|
|
|
describe "the match data values" do
|
|
subject(values) { match_data.as(Spectator::Matchers::FailedMatchData).values }
|
|
|
|
pre_condition { expect(match_data).to be_a(failed_match) }
|
|
|
|
before_each do
|
|
dbl.test_method
|
|
dbl.test_method(1, "test", :xyz, foo: "foobarbaz")
|
|
dbl.irrelevant("foo")
|
|
end
|
|
|
|
it "has the expected call listed" do
|
|
is_expected.to contain({:expected, stub.to_s})
|
|
end
|
|
|
|
it "has the list of called methods" do
|
|
is_expected.to contain({
|
|
:actual,
|
|
[
|
|
"test_method(no args)",
|
|
"test_method(1, \"test\", :xyz, foo: \"foobarbaz\"",
|
|
"irrelevant(\"foo\")",
|
|
],
|
|
})
|
|
end
|
|
end
|
|
end
|
|
end
|