chain experiment

This commit is contained in:
Ivan Kuchin
2026-05-29 21:49:28 +02:00
parent e0617c097a
commit 91c4566c55
3 changed files with 37 additions and 12 deletions
@@ -79,7 +79,7 @@ RSpec.describe WorkPackage, "positions" do # rubocop:disable RSpec/SpecFilePathF
end
def have_positions(**) # rubocop:disable Naming/PredicatePrefix
have_attr(:position, identified_by: :subject, **)
pluck(:position, identified_by: :subject).eq(**)
end
context "when creating a work_package in a sprint" do
@@ -76,7 +76,7 @@ RSpec.describe Backlogs::WorkPackages::RebuildPositionsService, "integration", t
shared_let(:bucket2_wp3) { create_work_package(subject: "Bucket 2 WorkPackage 3", backlog_bucket: bucket2, position: nil) }
def have_positions(**) # rubocop:disable Naming/PredicatePrefix
have_attr(:position, identified_by: :subject, **)
pluck(:position).eq(**)
end
context "with the project provided" do
@@ -30,23 +30,48 @@
# When you need to check an attribute for multiple records:
#
# expect(WorkPackage.where(sprint:)).to have_attr(:position,
# wp1 => 1,
# wp2 => 2,
# wp3 => nil
# expect(WorkPackage.where(sprint:)).to pluck(:position).eq(
# sprint1_wp2 => 1,
# sprint1_wp3 => 2,
# sprint1_wp4 => 3,
# sprint1_wp1 => 4,
# sprint1_wp5 => 6
# )
#
# Fails with:
#
# 582 => 1,
# 583 => 2,
# 584 => 3,
# -585 => 6,
# +585 => 5,
#
# Specify `identified_by` attribute to be used instead of `id` to differentiate
# records in failurediff, it must be unique:
#
# expect(WorkPackage.where(sprint:)).to have_attr(:position, identified_by: :subject,
# wp1 => 1,
# wp2 => 2
# expect(WorkPackage.where(sprint:)).to pluck(:position, identified_by: :subject).eq(
# sprint1_wp2 => 1,
# sprint1_wp3 => 2,
# sprint1_wp4 => 3,
# sprint1_wp1 => 4,
# sprint1_wp5 => 6
# )
RSpec::Matchers.define :have_attr do |attribute, identified_by: :id, **expected|
match do |actual|
@actual = actual.pluck(identified_by, attribute).to_h
#
# Fails with:
#
# "Sprint 1 WorkPackage 2" => 1,
# "Sprint 1 WorkPackage 3" => 2,
# "Sprint 1 WorkPackage 4" => 3,
# -"Sprint 1 WorkPackage 5" => 6,
# +"Sprint 1 WorkPackage 5" => 5,
RSpec::Matchers.define :pluck do |attribute, identified_by: :id|
chain :eq do |expected|
@expected = expected.transform_keys { it.public_send(identified_by) }
end
match do |actual|
@actual = actual.pluck(identified_by, attribute).to_h
@actual == @expected
end