-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #293 from hathitrust/DEV-573-bugfix-2
Fix broken fix of PhaseUpdater in Shared Print
- Loading branch information
Showing
3 changed files
with
82 additions
and
38 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 |
---|---|---|
@@ -1,50 +1,52 @@ | ||
# frozen_string_literal: true | ||
|
||
require "date" | ||
require "mongo_updater" | ||
|
||
# This is an outer wrapper for a MongoUpdater call. | ||
# Objective: based on commitments.committed_date, set commitments.phase. | ||
# Usage: bundle exec ruby get_by_date.rb <date_str> <phase> | ||
# E.g. : bundle exec ruby get_by_date.rb "2023-01-31 00:00:00 UTC" 3 | ||
|
||
class PhaseUpdater | ||
def initialize(date, phase) | ||
# Get input | ||
@date = date | ||
@phase = phase | ||
|
||
validate! | ||
puts "Get commitments with committed_date #{@date}." | ||
puts "Set phase to #{@phase}." | ||
end | ||
|
||
# Make sure date and phase look like they should. | ||
def validate! | ||
date_rx = /^\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2}\s[A-Z]{3}$/ | ||
raise ArgumentError, "bad date: #{@date}" unless date_rx.match?(@date) | ||
|
||
@phase = @phase.to_i | ||
raise ArgumentError, "bad phase: #{@phase}" unless [0, 1, 2, 3].include?(@phase) | ||
rescue ArgumentError => e | ||
puts "ERROR: Failed validation: #{e.message}" | ||
exit | ||
end | ||
|
||
# Pass on call to MongoUpdater which does all the lifting. | ||
def run | ||
puts "Started: #{Time.now.utc}" | ||
res = MongoUpdater.update_embedded( | ||
clusterable: "commitments", | ||
matcher: {committed_date: @date}, | ||
updater: {phase: @phase} | ||
) | ||
puts res.inspect | ||
puts "Finished: #{Time.now.utc}" | ||
module SharedPrint | ||
class PhaseUpdater | ||
def initialize(date, phase) | ||
# Get input | ||
@date = date | ||
@phase = phase | ||
|
||
validate! | ||
puts "Get commitments with committed_date #{@date}." | ||
puts "Set phase to #{@phase}." | ||
end | ||
|
||
# Make sure date and phase look like they should. | ||
def validate! | ||
date_rx = /^\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2}\s[A-Z]{3}$/ | ||
raise ArgumentError, "bad date: #{@date}" unless date_rx.match?(@date) | ||
|
||
@phase = @phase.to_i | ||
raise ArgumentError, "bad phase: #{@phase}" unless [0, 1, 2, 3].include?(@phase) | ||
rescue ArgumentError => e | ||
puts "ERROR: Failed validation: #{e.message}" | ||
exit | ||
end | ||
|
||
# Pass on call to MongoUpdater which does all the lifting. | ||
def run | ||
puts "Started: #{Time.now.utc}" | ||
res = MongoUpdater.update_embedded( | ||
clusterable: "commitments", | ||
matcher: {committed_date: DateTime.parse(@date)}, | ||
updater: {phase: @phase} | ||
) | ||
puts res.inspect | ||
puts "Finished: #{Time.now.utc}" | ||
end | ||
end | ||
end | ||
|
||
if $0 == __FILE__ | ||
date = ARGV.shift | ||
phase = ARGV.shift | ||
PhaseUpdater.new(date, phase).run | ||
SharedPrint::PhaseUpdater.new(date, phase).run | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
require "cluster" | ||
require "shared_print/finder" | ||
require "shared_print/phase_updater" | ||
require "shared_print/phases" | ||
|
||
RSpec.describe SharedPrint::PhaseUpdater do | ||
before(:each) do | ||
Cluster.collection.find.delete_many | ||
end | ||
it "updates `phase` on commitments based on `committed_date`" do | ||
# Make 5 commitments with a known committed_date | ||
# and a phase that needs updating. | ||
clusterables = [] | ||
1.upto(5) do |i| | ||
clusterables << build( | ||
:commitment, | ||
ocn: i, | ||
phase: SharedPrint::Phases::PHASE_0, | ||
committed_date: SharedPrint::Phases::PHASE_1_DATE | ||
) | ||
end | ||
cluster_tap_save(*clusterables) | ||
# Verify that we loaded what we think we loaded: | ||
# 5 commitments with the same phase and the same date. | ||
original_commitments = SharedPrint::Finder.new(phase: [0]).commitments.to_a | ||
expect(original_commitments.count).to eq 5 | ||
expect(original_commitments.map(&:phase).uniq).to eq [SharedPrint::Phases::PHASE_0] | ||
expect(original_commitments.map(&:committed_date).uniq).to eq [SharedPrint::Phases::PHASE_1_DATE] | ||
|
||
# Here we want to update to phase 1, to match the phase 1 date. | ||
phase_updater = described_class.new( | ||
SharedPrint::Phases::PHASE_1_DATE, | ||
SharedPrint::Phases::PHASE_1 | ||
) | ||
phase_updater.run | ||
# Verify that the commitments now have phase 1. | ||
updated_commitments = SharedPrint::Finder.new(phase: [1]).commitments.to_a | ||
expect(updated_commitments.count).to eq 5 | ||
expect(updated_commitments.map(&:phase).uniq).to eq [SharedPrint::Phases::PHASE_1] | ||
expect(updated_commitments.map(&:committed_date).uniq).to eq [SharedPrint::Phases::PHASE_1_DATE] | ||
end | ||
end |