mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add MultiValueStub
This commit is contained in:
parent
813983de4b
commit
9c705bf888
2 changed files with 126 additions and 0 deletions
96
spec/spectator/mocks/multi_value_stub_spec.cr
Normal file
96
spec/spectator/mocks/multi_value_stub_spec.cr
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
require "../../spec_helper"
|
||||||
|
|
||||||
|
Spectator.describe Spectator::MultiValueStub do
|
||||||
|
let(method_call) { Spectator::MethodCall.capture(:foo) }
|
||||||
|
let(location) { Spectator::Location.new(__FILE__, __LINE__) }
|
||||||
|
subject(stub) { described_class.new(:foo, [3, 5, 7], location: location) }
|
||||||
|
|
||||||
|
it "stores the method name" do
|
||||||
|
expect(stub.method).to eq(:foo)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "stores the location" do
|
||||||
|
expect(stub.location).to eq(location)
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#call" do
|
||||||
|
it "returns the values in order" do
|
||||||
|
values = Array.new(3) { stub.call(method_call) }
|
||||||
|
expect(values).to eq([3, 5, 7])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context Spectator::StubModifiers do
|
||||||
|
describe "#and_return(value)" do
|
||||||
|
let(arguments) { Spectator::Arguments.capture(/foo/) }
|
||||||
|
let(location) { Spectator::Location.new(__FILE__, __LINE__) }
|
||||||
|
let(original) { Spectator::ValueStub.new(:foo, 42, arguments, location) }
|
||||||
|
subject(stub) { original.and_return(123) }
|
||||||
|
|
||||||
|
it "produces a stub that returns a value" do
|
||||||
|
expect(stub.call(method_call)).to eq(123)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "retains the method name" do
|
||||||
|
expect(stub.method).to eq(:foo)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "retains the arguments constraint" do
|
||||||
|
expect(stub.constraint).to eq(arguments)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "retains the location" do
|
||||||
|
expect(stub.location).to eq(location)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#===" do
|
||||||
|
subject { stub === call }
|
||||||
|
|
||||||
|
context "with a matching method name" do
|
||||||
|
let(call) { Spectator::MethodCall.capture(:foo, "foobar") }
|
||||||
|
|
||||||
|
it "returns true" do
|
||||||
|
is_expected.to be_true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with a different method name" do
|
||||||
|
let(call) { Spectator::MethodCall.capture(:bar, "foobar") }
|
||||||
|
|
||||||
|
it "returns false" do
|
||||||
|
is_expected.to be_false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with a constraint" do
|
||||||
|
let(constraint) { Spectator::Arguments.capture(/foo/) }
|
||||||
|
let(stub) { Spectator::ValueStub.new(:foo, 42, constraint) }
|
||||||
|
|
||||||
|
context "with a matching method name" do
|
||||||
|
let(call) { Spectator::MethodCall.capture(:foo, "foobar") }
|
||||||
|
|
||||||
|
it "returns true" do
|
||||||
|
is_expected.to be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with a non-matching arguments" do
|
||||||
|
let(call) { Spectator::MethodCall.capture(:foo, "baz") }
|
||||||
|
|
||||||
|
it "returns false" do
|
||||||
|
is_expected.to be_false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with a different method name" do
|
||||||
|
let(call) { Spectator::MethodCall.capture(:bar, "foobar") }
|
||||||
|
|
||||||
|
it "returns false" do
|
||||||
|
is_expected.to be_false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
30
src/spectator/mocks/multi_value_stub.cr
Normal file
30
src/spectator/mocks/multi_value_stub.cr
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
require "../location"
|
||||||
|
require "./arguments"
|
||||||
|
require "./stub_modifiers"
|
||||||
|
require "./typed_stub"
|
||||||
|
|
||||||
|
module Spectator
|
||||||
|
# Stub that responds with a multiple values in succession.
|
||||||
|
class MultiValueStub(T) < TypedStub(T)
|
||||||
|
# Invokes the stubbed implementation.
|
||||||
|
def call(call : MethodCall) : T
|
||||||
|
if @values.size == 1
|
||||||
|
@values.first
|
||||||
|
else
|
||||||
|
@values.shift
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Creates the stub.
|
||||||
|
def initialize(method : Symbol, @values : Array(T), constraint : AbstractArguments? = nil, location : Location? = nil)
|
||||||
|
super(method, constraint, location)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
module StubModifiers
|
||||||
|
# Returns a new stub that returns multiple values in succession.
|
||||||
|
def and_return(value, *values)
|
||||||
|
MultiValueStub.new(method, [value, *values], constraint, location)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue