Skip to content
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

test: adds new tests for new variable service #3306

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion src/backend/tests/unit/services/variable/test_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def test_delete_variable(service, session):
value = "value"
field = ""

saved = service.create_variable(user_id, name, value, session=session)
service.create_variable(user_id, name, value, session=session)
recovered = service.get_variable(user_id, name, field, session=session)
service.delete_variable(user_id, name, session=session)
with pytest.raises(ValueError) as exc:
Expand All @@ -203,6 +203,34 @@ def test_delete_variable__ValueError(service, session):
assert "variable not found" in str(exc.value)


def test_delete_varaible_by_id(service, session):
user_id = uuid4()
name = "name"
value = "value"
field = "field"

saved = service.create_variable(user_id, name, value, session=session)
recovered = service.get_variable(user_id, name, field, session=session)
service.delete_variable_by_id(user_id, saved.id, session=session)
with pytest.raises(ValueError) as exc:
service.get_variable(user_id, name, field, session)

assert recovered == value
assert name in str(exc.value)
assert "variable not found" in str(exc.value)


def test_delete_variable_by_id__ValueError(service, session):
user_id = uuid4()
variable_id = uuid4()

with pytest.raises(ValueError) as exc:
service.delete_variable_by_id(user_id, variable_id, session=session)

assert str(variable_id) in str(exc.value)
assert "variable not found" in str(exc.value)


def test_create_variable(service, session):
user_id = uuid4()
name = "name"
Expand Down
Loading