|
36 | 36 |
|
37 | 37 | it 'uploads a PDF file to S3' do
|
38 | 38 | 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'))) |
39 | 41 | allow(IvcChampvaForm).to receive(:first).and_return(mock_form)
|
40 | 42 | allow_any_instance_of(Aws::S3::Client).to receive(:put_object).and_return(true)
|
41 | 43 |
|
|
49 | 51 |
|
50 | 52 | expect(response).to have_http_status(:ok)
|
51 | 53 | 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 |
52 | 65 | end
|
53 | 66 | end
|
54 | 67 |
|
|
123 | 136 | result = controller.supporting_document_ids
|
124 | 137 | expect(result).to eq([1, 2])
|
125 | 138 | 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 |
126 | 186 | end
|
127 | 187 |
|
128 | 188 | describe '#get_file_paths_and_metadata' do
|
|
0 commit comments