-
-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(matrix): ensure matrix for latest consumer version/provider versi…
…on shows correct results when a pact is published, published again for the same version with different content, then published again for the same version with the original content.
- Loading branch information
Showing
7 changed files
with
113 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
Sequel.migration do | ||
up do | ||
# Removes 'overwritten' pacts and verifications from the matrix | ||
# (ie. only show latest pact revision for each consumer version and | ||
# latest verification for each provider version) | ||
# Must include lines where verification_id is null so that we don't | ||
# lose the unverified pacts. | ||
# In this view there will be one row for each consumer version/provider version | ||
# This view used to be (stupidly) called latest_matrix | ||
create_or_replace_view(:latest_matrix_for_consumer_version_and_provider_version, | ||
" | ||
SELECT matrix.* FROM matrix | ||
inner join latest_pact_publication_revision_numbers lr | ||
on matrix.consumer_id = lr.consumer_id | ||
and matrix.provider_id = lr.provider_id | ||
and matrix.consumer_version_order = lr.consumer_version_order | ||
and matrix.pact_revision_number = lr.latest_revision_number | ||
INNER JOIN latest_verification_id_for_consumer_version_and_provider_version AS lv | ||
ON ((matrix.consumer_version_id = lv.consumer_version_id) | ||
AND (matrix.provider_version_id = lv.provider_version_id) | ||
AND ((matrix.verification_id = lv.latest_verification_id))) | ||
UNION | ||
select matrix.* from matrix | ||
inner join latest_pact_publication_revision_numbers lr | ||
on matrix.consumer_id = lr.consumer_id | ||
and matrix.provider_id = lr.provider_id | ||
and matrix.consumer_version_order = lr.consumer_version_order | ||
and matrix.pact_revision_number = lr.latest_revision_number | ||
where verification_id is null | ||
" | ||
) | ||
from(:materialized_head_matrix).delete | ||
from(:materialized_head_matrix).insert(from(:head_matrix).select_all) | ||
end | ||
|
||
down do | ||
# revert to dodgey definition | ||
create_or_replace_view(:latest_matrix_for_consumer_version_and_provider_version, | ||
"SELECT matrix.* FROM matrix | ||
INNER JOIN latest_verification_id_for_consumer_version_and_provider_version AS lv | ||
ON ((matrix.consumer_version_id = lv.consumer_version_id) | ||
AND (matrix.provider_version_id = lv.provider_version_id) | ||
AND ((matrix.verification_id = lv.latest_verification_id))) | ||
UNION | ||
select matrix.* from matrix | ||
inner join latest_pact_publication_revision_numbers lr | ||
on matrix.consumer_id = lr.consumer_id | ||
and matrix.provider_id = lr.provider_id | ||
and matrix.consumer_version_order = lr.consumer_version_order | ||
and matrix.pact_revision_number = lr.latest_revision_number | ||
where verification_id is null | ||
" | ||
) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters