-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NO-REF: Setup manifest testing for MET
- Loading branch information
1 parent
06fbd3f
commit 3e8b11c
Showing
2 changed files
with
13 additions
and
5 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
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,10 +1,17 @@ | ||
from processes import LOCProcess | ||
from processes import METProcess | ||
from .assert_ingested_records import assert_ingested_records | ||
|
||
|
||
def test_met_process(): | ||
met_process = LOCProcess('complete', None, None, None, 5, None) | ||
met_process = METProcess('complete', None, None, None, 5, None) | ||
|
||
met_process.runProcess() | ||
|
||
assert_ingested_records(source_name='loc') | ||
records = assert_ingested_records(source_name='met') | ||
|
||
# assert that for each record there exists a PDF manifest in S3 | ||
|
||
# run the S3 process | ||
|
||
# assert that for each record, we have saved the PDF in S3 | ||
|