-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
integrate TED-API v3 and add eForms sample data #518
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
5636c54
integrate TED-API v3 and add eForms sample data
CaptainOfHacks 2b0f0d8
fix tests
CaptainOfHacks 9f028d2
fix tests
CaptainOfHacks 0d5939a
fix tests
CaptainOfHacks 800f480
fix tests
CaptainOfHacks f5ca3d0
Update ted_api.py
CaptainOfHacks 7d8774d
fix tests
CaptainOfHacks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
|
||
@pytest.fixture | ||
def notice_id(): | ||
return "067623-2022" | ||
return "67623-2022" | ||
|
||
|
||
@pytest.fixture | ||
|
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
40 changes: 40 additions & 0 deletions
40
tests/e2e/notice_fetcher/_test_generate_eforms_sample_dataset.py
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,40 @@ | ||
import pathlib | ||
|
||
TED_API_EFORMS_QUERY = """ | ||
TD NOT IN (C E G I D P M Q O R 0 1 2 3 4 5 6 7 8 9 B S Y V F A H J K) AND | ||
notice-subtype IN ({eforms_subtype}) AND | ||
FT~"eforms-sdk-{eforms_sdk_version}" | ||
""" | ||
|
||
EFORMS_SUBTYPES = [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] | ||
EFORMS_SDK_VERSIONS = [f"1.{version}" for version in range(3, 11)] | ||
|
||
|
||
def _test_generate_eforms_sample_dataset(ted_document_search): | ||
results_path = pathlib.Path(__file__).parent / "eforms_samples" | ||
|
||
for eforms_sdk_version in EFORMS_SDK_VERSIONS: | ||
for eforms_subtype in EFORMS_SUBTYPES: | ||
results_dir_path = results_path / f"eforms_sdk_v{eforms_sdk_version}" / f"eform_subtype_{eforms_subtype}" | ||
|
||
print(f"Load for {results_dir_path}") | ||
query = {"query": TED_API_EFORMS_QUERY.format(eforms_sdk_version=eforms_sdk_version, | ||
eforms_subtype=eforms_subtype)} | ||
print(query) | ||
notices = ted_document_search.get_generator_by_query(query=query) | ||
for sample_id in range(1, 2): | ||
notice = next(notices, None) | ||
if notice is None: | ||
break | ||
results_dir_path.mkdir(parents=True, exist_ok=True) | ||
result_notice_xml_path = results_dir_path / f"{notice['ND']}.xml" | ||
result_notice_xml_path.write_text(notice["content"], encoding="utf-8") | ||
|
||
|
||
def test_fetch_notice_by_id(ted_document_search): | ||
notice_id = "067623-2022" | ||
import json | ||
notice_content = ted_document_search.get_by_id(document_id=notice_id) | ||
result_notice_path = pathlib.Path(__file__).parent / "epo_notice.xml" | ||
result_notice_path.write_text(json.dumps(notice_content), encoding="utf-8") | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a test for this function?