Skip to content

Commit

Permalink
test: adds new tests for new variable service (#3306)
Browse files Browse the repository at this point in the history
* test: adds new tests for new method

* test: remove unused variable
  • Loading branch information
italojohnny authored Aug 13, 2024
1 parent 64aecdd commit 4f5dca8
Showing 1 changed file with 29 additions and 1 deletion.
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

0 comments on commit 4f5dca8

Please sign in to comment.