Merge commit '2b702661f3bd9b79de887e82e5a5925d07341eb6'

This commit is contained in:
jasquat 2022-10-21 16:46:41 -04:00
commit 0939e31d7c
2 changed files with 10 additions and 10 deletions

View File

@ -23,7 +23,7 @@ class ServiceTaskDelegate:
@staticmethod @staticmethod
def check_prefixes(value: Any) -> Any: def check_prefixes(value: Any) -> Any:
"""Check_prefixes."""
if isinstance(value, str): if isinstance(value, str):
secret_prefix = "secret:" # noqa: S105 secret_prefix = "secret:" # noqa: S105
if value.startswith(secret_prefix): if value.startswith(secret_prefix):

View File

@ -9,25 +9,25 @@ from spiffworkflow_backend.services.service_task_service import ServiceTaskDeleg
class TestServiceTaskDelegate(BaseTest): class TestServiceTaskDelegate(BaseTest):
"""TestServiceTaskDelegate.""" """TestServiceTaskDelegate."""
def test_normalize_value_without_secret( def test_check_prefixes_without_secret(
self, app: Flask, with_db_and_bpmn_file_cleanup: None self, app: Flask, with_db_and_bpmn_file_cleanup: None
) -> None: ) -> None:
"""Test_normalize_value_without_secret.""" """Test_check_prefixes_without_secret."""
result = ServiceTaskDelegate.normalize_value("hey") result = ServiceTaskDelegate.check_prefixes("hey")
assert result == "hey" assert result == "hey"
def test_normalize_value_with_int( def test_check_prefixes_with_int(
self, app: Flask, with_db_and_bpmn_file_cleanup: None self, app: Flask, with_db_and_bpmn_file_cleanup: None
) -> None: ) -> None:
"""Test_normalize_value_with_int.""" """Test_check_prefixes_with_int."""
result = ServiceTaskDelegate.normalize_value(1) result = ServiceTaskDelegate.check_prefixes(1)
assert result == 1 assert result == 1
def test_normalize_value_with_secret( def test_check_prefixes_with_secret(
self, app: Flask, with_db_and_bpmn_file_cleanup: None self, app: Flask, with_db_and_bpmn_file_cleanup: None
) -> None: ) -> None:
"""Test_normalize_value_with_secret.""" """Test_check_prefixes_with_secret."""
user = self.find_or_create_user("test_user") user = self.find_or_create_user("test_user")
SecretService().add_secret("hot_secret", "my_secret_value", user.id) SecretService().add_secret("hot_secret", "my_secret_value", user.id)
result = ServiceTaskDelegate.normalize_value("secret:hot_secret") result = ServiceTaskDelegate.check_prefixes("secret:hot_secret")
assert result == "my_secret_value" assert result == "my_secret_value"