mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
e7e1d0e084
Working around a segfault (dunno why this fixes it).
393 lines
13 KiB
Crystal
393 lines
13 KiB
Crystal
require "../spec_helper"
|
|
|
|
describe Spectator::Matchers::EndWithMatcher do
|
|
describe "#match" do
|
|
context "returned MatchData" do
|
|
describe "#matched?" do
|
|
context "with a String" do
|
|
context "against a matching string" do
|
|
it "is true" do
|
|
value = "foobar"
|
|
last = "bar"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_true
|
|
end
|
|
|
|
context "not at end" do
|
|
it "is false" do
|
|
value = "foobar"
|
|
last = "foo"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
end
|
|
|
|
context "against a different string" do
|
|
it "is false" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
|
|
context "against a matching character" do
|
|
it "is true" do
|
|
value = "foobar"
|
|
last = 'r'
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_true
|
|
end
|
|
|
|
context "not at end" do
|
|
it "is false" do
|
|
value = "foobar"
|
|
last = 'b'
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
end
|
|
|
|
context "against a different character" do
|
|
it "is false" do
|
|
value = "foobar"
|
|
last = 'z'
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
|
|
context "against a matching regex" do
|
|
it "is true" do
|
|
value = "FOOBAR"
|
|
last = /bar/i
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_true
|
|
end
|
|
|
|
context "not at end" do
|
|
it "is false" do
|
|
value = "FOOBAR"
|
|
last = /foo/i
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
end
|
|
|
|
context "against a non-matching regex" do
|
|
it "is false" do
|
|
value = "FOOBAR"
|
|
last = /baz/i
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
end
|
|
|
|
context "with an Enumberable" do
|
|
context "against an equal value" do
|
|
it "is true" do
|
|
array = %i[a b c]
|
|
last = :c
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_true
|
|
end
|
|
|
|
context "not at end" do
|
|
it "is false" do
|
|
array = %i[a b c]
|
|
last = :b
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
end
|
|
|
|
context "against a different value" do
|
|
it "is false" do
|
|
array = %i[a b c]
|
|
last = :z
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
|
|
context "against matching element type" do
|
|
it "is true" do
|
|
array = %i[a b c]
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(Symbol)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_true
|
|
end
|
|
|
|
context "not at end" do
|
|
it "is false" do
|
|
array = [1, 2, 3, :a, :b, :c]
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(Int32)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
end
|
|
|
|
context "against different element type" do
|
|
it "is false" do
|
|
array = %i[a b c]
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(Int32)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
|
|
context "against a matching regex" do
|
|
it "is true" do
|
|
array = %w[FOO BAR BAZ]
|
|
last = /baz/i
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_true
|
|
end
|
|
|
|
context "not at end" do
|
|
it "is false" do
|
|
array = %w[FOO BAR BAZ]
|
|
last = /bar/i
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
end
|
|
|
|
context "against a non-matching regex" do
|
|
it "is false" do
|
|
array = %w[FOO BAR BAZ]
|
|
last = /qux/i
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.matched?.should be_false
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "#values" do
|
|
context "with a String" do
|
|
context "expected" do
|
|
it "is the expected value" do
|
|
value = "FOOBAR"
|
|
last = /baz/i
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data_value_sans_prefix(match_data.values, :expected)[:value].should eq(last)
|
|
end
|
|
end
|
|
|
|
context "actual" do
|
|
it "is the actual value" do
|
|
value = "FOOBAR"
|
|
last = /baz/i
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data_value_sans_prefix(match_data.values, :actual)[:value].should eq(value)
|
|
end
|
|
end
|
|
end
|
|
|
|
context "with an Indexable" do
|
|
context "expected" do
|
|
it "is the expected value" do
|
|
array = %w[FOO BAR BAZ]
|
|
last = /qux/i
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data_value_sans_prefix(match_data.values, :expected)[:value].should eq(last)
|
|
end
|
|
end
|
|
|
|
context "actual" do
|
|
it "is the last element" do
|
|
array = %w[FOO BAR BAZ]
|
|
last = /qux/i
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data_value_sans_prefix(match_data.values, :actual)[:value].should eq(array.last)
|
|
end
|
|
end
|
|
|
|
context "list" do
|
|
it "is the full actual list" do
|
|
array = %w[FOO BAR BAZ]
|
|
last = /qux/i
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data_value_sans_prefix(match_data.values, :list)[:value].should eq(array)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "#message" do
|
|
context "with a String" do
|
|
it "mentions #ends_with?" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.message.should contain("#ends_with?")
|
|
end
|
|
end
|
|
|
|
context "with an Indexable" do
|
|
it "mentions ===" do
|
|
array = %i[a b c]
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(array.last)
|
|
match_data = matcher.match(partial)
|
|
match_data.message.should contain("===")
|
|
end
|
|
|
|
it "mentions last" do
|
|
array = %i[a b c]
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(array.last)
|
|
match_data = matcher.match(partial)
|
|
match_data.message.should contain("last")
|
|
end
|
|
end
|
|
|
|
it "contains the actual label" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
label = "everything"
|
|
partial = new_partial(value, label)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.message.should contain(label)
|
|
end
|
|
|
|
it "contains the expected label" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
label = "everything"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last, label)
|
|
match_data = matcher.match(partial)
|
|
match_data.message.should contain(label)
|
|
end
|
|
|
|
context "when expected label is omitted" do
|
|
it "contains stringified form of expected value" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.message.should contain(last)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "#negated_message" do
|
|
context "with a String" do
|
|
it "mentions #starts_with?" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.negated_message.should contain("#ends_with?")
|
|
end
|
|
end
|
|
|
|
context "with an Indexable" do
|
|
it "mentions ===" do
|
|
array = %i[a b c]
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(array.last)
|
|
match_data = matcher.match(partial)
|
|
match_data.negated_message.should contain("===")
|
|
end
|
|
|
|
it "mentions last" do
|
|
array = %i[a b c]
|
|
partial = new_partial(array)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(array.last)
|
|
match_data = matcher.match(partial)
|
|
match_data.negated_message.should contain("last")
|
|
end
|
|
end
|
|
|
|
it "contains the actual label" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
label = "everything"
|
|
partial = new_partial(value, label)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.negated_message.should contain(label)
|
|
end
|
|
|
|
it "contains the expected label" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
label = "everything"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last, label)
|
|
match_data = matcher.match(partial)
|
|
match_data.negated_message.should contain(label)
|
|
end
|
|
|
|
context "when expected label is omitted" do
|
|
it "contains stringified form of expected value" do
|
|
value = "foobar"
|
|
last = "baz"
|
|
partial = new_partial(value)
|
|
matcher = Spectator::Matchers::EndWithMatcher.new(last)
|
|
match_data = matcher.match(partial)
|
|
match_data.negated_message.should contain(last)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|