-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎨 expose
service_run_id
as an env var for both comp and new style d…
…ynamic services (#6942) Co-authored-by: Andrei Neagu <[email protected]>
- Loading branch information
Showing
59 changed files
with
396 additions
and
270 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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import pytest | ||
from models_library.projects import ProjectID | ||
from models_library.projects_nodes import NodeID | ||
from models_library.services_types import ServiceRunID | ||
from models_library.users import UserID | ||
from pydantic import PositiveInt | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"user_id, project_id, node_id, iteration, expected_result", | ||
[ | ||
( | ||
2, | ||
ProjectID("e08356e4-eb74-49e9-b769-2c26e34c61d9"), | ||
NodeID("a08356e4-eb74-49e9-b769-2c26e34c61d1"), | ||
5, | ||
"comp_2_e08356e4-eb74-49e9-b769-2c26e34c61d9_a08356e4-eb74-49e9-b769-2c26e34c61d1_5", | ||
) | ||
], | ||
) | ||
def test_run_id_get_resource_tracking_run_id( | ||
user_id: UserID, | ||
project_id: ProjectID, | ||
node_id: NodeID, | ||
iteration: PositiveInt, | ||
expected_result: str, | ||
): | ||
resource_tracking_service_run_id = ( | ||
ServiceRunID.get_resource_tracking_run_id_for_computational( | ||
user_id, project_id, node_id, iteration | ||
) | ||
) | ||
assert isinstance(resource_tracking_service_run_id, ServiceRunID) | ||
assert resource_tracking_service_run_id == expected_result | ||
|
||
|
||
def test_get_resource_tracking_run_id_for_dynamic(): | ||
assert isinstance( | ||
ServiceRunID.get_resource_tracking_run_id_for_dynamic(), ServiceRunID | ||
) |
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
Oops, something went wrong.