-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests: add a text identifier to each caldav server entry
Probably not relevant for many, but I do have a tests/conf_private.py filled up with various servers, so it would be nice to add "friendly" names to identify them
- Loading branch information
Showing
5 changed files
with
41 additions
and
18 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
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 |
---|---|---|
|
@@ -2836,23 +2836,26 @@ def testObjects(self): | |
# (maybe a custom nose test loader really would be the better option?) | ||
# -- Tobias Brox <[email protected]>, 2013-10-10 | ||
|
||
## TODO: can we use @pytest.mark.parametrize to run the collection of tests | ||
## above on each of the servers defined in caldav_servers? | ||
## TODO: The better way is probably to use @pytest.mark.parametrize | ||
## -- Tobias Brox <[email protected]>, 2024-11-15 | ||
|
||
_servernames = set() | ||
for _caldav_server in caldav_servers: | ||
# create a unique identifier out of the server domain name | ||
_parsed_url = urlparse(_caldav_server["url"]) | ||
_servername = _parsed_url.hostname.replace(".", "_").replace("-", "_") + str( | ||
_parsed_url.port or "" | ||
) | ||
while _servername in _servernames: | ||
_servername = _servername + "_" | ||
_servernames.add(_servername) | ||
if "name" in _caldav_server: | ||
_servername = _caldav_server["name"] | ||
else: | ||
# create a unique identifier out of the server domain name | ||
_parsed_url = urlparse(_caldav_server["url"]) | ||
_servername = _parsed_url.hostname.replace(".", "_").replace("-", "_") + str( | ||
_parsed_url.port or "" | ||
) | ||
while _servername in _servernames: | ||
_servername = _servername + "_" | ||
_servername = _servername.capitalize() | ||
_servernames.add(_servername) | ||
|
||
# create a classname and a class | ||
_classname = "TestForServer_" + _servername | ||
_classname = "TestForServer" + _servername | ||
|
||
# inject the new class into this namespace | ||
vars()[_classname] = type( | ||
|