Skip to content

Commit bbdab6b

Browse files
96358 Fix for out of order attachment ids - IVC CHAMPVA forms (#19647)
* fix for out of order attachment ids * removed debugger * removed debugger * add unit test * updated unit test with missing mock and added conditional chain * added tests to verify loud failure on missing uploads in BE --------- Co-authored-by: Don Shin <[email protected]>
1 parent 2dfa7f7 commit bbdab6b

File tree

2 files changed

+76
-2
lines changed

2 files changed

+76
-2
lines changed

modules/ivc_champva/app/controllers/ivc_champva/v1/uploads_controller.rb

+16-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,22 @@ def get_attachment_ids_and_form(parsed_form_data)
8989
end
9090

9191
def supporting_document_ids(parsed_form_data)
92-
parsed_form_data['supporting_docs']&.pluck('attachment_id')&.compact.presence ||
93-
parsed_form_data['supporting_docs']&.pluck('claim_id')&.compact.presence || []
92+
cached_uploads = []
93+
parsed_form_data['supporting_docs']&.each do |d|
94+
# Get the database record that corresponds to this file upload:
95+
record = PersistentAttachments::MilitaryRecords.find_by(guid: d['confirmation_code'])
96+
# Push to our array with some extra information so we can sort by date uploaded:
97+
cached_uploads.push({ attachment_id: d['attachment_id'],
98+
created_at: record.created_at,
99+
file_name: record.file.id })
100+
end
101+
102+
# Sort by date created so we have the file's upload order and
103+
# reduce down to just the attachment id strings:
104+
attachment_ids = cached_uploads.sort_by { |h| h[:created_at] }.pluck(:attachment_id)&.compact.presence
105+
106+
# Return either the attachment IDs or `claim_id`s (in the case of form 10-7959a):
107+
attachment_ids || parsed_form_data['supporting_docs']&.pluck('claim_id')&.compact.presence || []
94108
end
95109

96110
# rubocop:disable Metrics/MethodLength

modules/ivc_champva/spec/requests/ivc_champva/v1/forms/uploads_spec.rb

+60
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636

3737
it 'uploads a PDF file to S3' do
3838
mock_form = double(first_name: 'Veteran', last_name: 'Surname', form_uuid: 'some_uuid')
39+
allow(PersistentAttachments::MilitaryRecords).to receive(:find_by)
40+
.and_return(double('Record1', created_at: 1.day.ago, id: 'some_uuid', file: double(id: 'file0')))
3941
allow(IvcChampvaForm).to receive(:first).and_return(mock_form)
4042
allow_any_instance_of(Aws::S3::Client).to receive(:put_object).and_return(true)
4143

@@ -49,6 +51,17 @@
4951

5052
expect(response).to have_http_status(:ok)
5153
end
54+
55+
it 'returns a 500 error when supporting documents are submitted, but are missing from the database' do
56+
allow_any_instance_of(Aws::S3::Client).to receive(:put_object).and_return(true)
57+
58+
# Actual supporting_docs should exist as records in the DB. This test
59+
# ensures that if they aren't present we won't have a silent failure
60+
data_with_docs = data.merge({ supporting_docs: [{ confirmation_code: 'NOT_IN_DATABASE' }] })
61+
post '/ivc_champva/v1/forms', params: data_with_docs
62+
63+
expect(response).to have_http_status(:internal_server_error)
64+
end
5265
end
5366
end
5467

@@ -123,6 +136,53 @@
123136
result = controller.supporting_document_ids
124137
expect(result).to eq([1, 2])
125138
end
139+
140+
it 'orders supporting document ids by date created' do
141+
clamscan = double(safe?: true)
142+
allow(Common::VirusScan).to receive(:scan).and_return(clamscan)
143+
144+
# Mocking PersistentAttachments::MilitaryRecords to return controlled data
145+
record1 = double('Record1', created_at: 1.day.ago, id: 'doc0', file: double(id: 'file0'))
146+
record2 = double('Record2', created_at: Time.zone.now, id: 'doc1', file: double(id: 'file1'))
147+
148+
allow(PersistentAttachments::MilitaryRecords).to receive(:find_by).with(guid: 'code1').and_return(record1)
149+
allow(PersistentAttachments::MilitaryRecords).to receive(:find_by).with(guid: 'code2').and_return(record2)
150+
151+
parsed_form_data = {
152+
'form_number' => '10-10D',
153+
'supporting_docs' => [
154+
{ 'attachment_id' => 'doc1', 'confirmation_code' => 'code2' },
155+
{ 'attachment_id' => 'doc0', 'confirmation_code' => 'code1' }
156+
]
157+
}
158+
159+
# Create an instance of the controller
160+
controller = IvcChampva::V1::UploadsController.new
161+
162+
# Call the private method using `send`
163+
attachment_ids = controller.send(:supporting_document_ids, parsed_form_data)
164+
165+
# Mock metadata generation to align with the sorted order
166+
metadata = { 'metadata' => {}, 'attachment_ids' => attachment_ids }
167+
168+
expect(metadata).to eq({
169+
'metadata' => {},
170+
'attachment_ids' => %w[doc0 doc1] # Ensure this matches the sorted order
171+
})
172+
end
173+
174+
it 'throws an error when no matching supporting doc is present in the database' do
175+
controller = IvcChampva::V1::UploadsController.new
176+
parsed_form_data = {
177+
'form_number' => '10-10D',
178+
'supporting_docs' => [
179+
{ 'attachment_id' => 'doc0', 'confirmation_code' => 'NOT_IN_DATABASE' }
180+
]
181+
}
182+
expect do
183+
controller.send(:supporting_document_ids, parsed_form_data)
184+
end.to raise_error(NoMethodError)
185+
end
126186
end
127187

128188
describe '#get_file_paths_and_metadata' do

0 commit comments

Comments
 (0)