-
Notifications
You must be signed in to change notification settings - Fork 63
Add tests for Conferences script #404
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
Merged
kjaymiller
merged 12 commits into
BlackPythonDevs:gh-pages
from
dragid10:add-conf-parsing-test
Sep 1, 2024
Merged
Changes from 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
56c95fc
Add tests for parsing Conference Issues
dragid10 5c3f9c1
Refactor top-level logic into testable functions
dragid10 3fd5236
Run pre-commit linters
dragid10 29bde6f
Only add to conference list if the conference details could actually …
dragid10 46bc982
Move gh token env var to function
dragid10 464f589
Add sleep command to playwright tests
dragid10 2ff406d
Add delay between each test to make CI tests more consistent
dragid10 6183797
Linter fixes
dragid10 f27a373
Reduce startup time so tests don't take as long to run
dragid10 657b2fd
Reduce delay between tests to 1 second
dragid10 bb95b02
Update _conferences/__main__.py
dragid10 cd33ed6
Fix linter issues
dragid10 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 hidden or 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 hidden or 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 hidden or 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,6 +1,10 @@ | ||
import time | ||
|
||
import pytest | ||
from playwright.sync_api import Page, expect | ||
|
||
from _conferences.__main__ import parse_conference_details | ||
|
||
live_server_url = "http://127.0.0.1:4000" | ||
|
||
routes = [ | ||
|
@@ -11,6 +15,13 @@ | |
] | ||
|
||
|
||
# Add a delay to each test to help with playwright race conditions | ||
@pytest.fixture(autouse=True) | ||
def slow_down_tests(): | ||
yield | ||
time.sleep(1) | ||
|
||
|
||
@pytest.mark.parametrize("url", routes) | ||
def test_destination( | ||
page: Page, | ||
|
@@ -101,3 +112,113 @@ def test_mailto_bpdevs(page: Page) -> None: | |
page.goto(f"{live_server_url}") | ||
mailto = page.get_by_role("link", name="email") | ||
expect(mailto).to_have_attribute("href", "mailto:[email protected]") | ||
|
||
|
||
def test_conference_parsing_valid_url(): | ||
example_conf_issue = """### Conference Name | ||
|
||
Test Conference Title | ||
|
||
### URL | ||
|
||
https://microsoft.com | ||
|
||
### Conference Dates | ||
|
||
10 - 15 Sep 2050 | ||
|
||
### Conference Type | ||
|
||
both | ||
|
||
### Conference Location | ||
|
||
Redmond, WA, USA | ||
|
||
### Summary | ||
|
||
Test Conference Summary | ||
|
||
### Speaking | ||
|
||
* [Satya Nadella](https://www.linkedin.com/in/satyanadella/) | ||
""" | ||
expected_name = "Test Conference Title" | ||
expected_url = "https://microsoft.com" | ||
parsed_conf = parse_conference_details(issue_body=example_conf_issue) | ||
|
||
assert parsed_conf["name"] == expected_name | ||
assert parsed_conf["url"] == expected_url | ||
|
||
|
||
def test_conference_parsing_logic_no_url_scheme(): | ||
example_conf_issue = """### Conference Name | ||
|
||
Test Conference Title | ||
|
||
### URL | ||
|
||
microsoft.com | ||
|
||
### Conference Dates | ||
|
||
10 - 15 Sep 2050 | ||
|
||
### Conference Type | ||
|
||
both | ||
|
||
### Conference Location | ||
|
||
Redmond, WA, USA | ||
|
||
### Summary | ||
|
||
Test Conference Summary | ||
|
||
### Speaking | ||
|
||
* [Satya Nadella](https://www.linkedin.com/in/satyanadella/) | ||
""" | ||
expected_name = "Test Conference Title" | ||
expected_url = "https://microsoft.com" | ||
parsed_conf = parse_conference_details(issue_body=example_conf_issue) | ||
|
||
assert parsed_conf["name"] == expected_name | ||
assert parsed_conf["url"] == expected_url | ||
|
||
|
||
def test_conference_parsing_logic_no_url(): | ||
example_conf_issue = """### Conference Name | ||
|
||
Test Conference Title | ||
|
||
### URL | ||
|
||
|
||
### Conference Dates | ||
|
||
10 - 15 Sep 2050 | ||
|
||
### Conference Type | ||
|
||
both | ||
|
||
### Conference Location | ||
|
||
Redmond, WA, USA | ||
|
||
### Summary | ||
|
||
Test Conference Summary | ||
|
||
### Speaking | ||
|
||
* [Satya Nadella](https://www.linkedin.com/in/satyanadella/) | ||
""" | ||
expected_name = "Test Conference Title" | ||
expected_url = None | ||
parsed_conf = parse_conference_details(issue_body=example_conf_issue) | ||
|
||
assert parsed_conf["name"] == expected_name | ||
assert parsed_conf["url"] == expected_url |
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.
How is the service started. I wonder if a fixture that starts the service and tears it down would be more reliable.