soft deletes available for applications and environments
- parent relation will not include applications or environments marked as deleted - domain classes will exclude deleted objects from selections - changed some test factories to use domain_word for resource names, because they were using person names and it bugged me
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
from tests.factories import ApplicationFactory, ApplicationRoleFactory
|
||||
from tests.factories import (
|
||||
ApplicationFactory,
|
||||
ApplicationRoleFactory,
|
||||
EnvironmentFactory,
|
||||
)
|
||||
|
||||
|
||||
def test_application_num_users():
|
||||
@@ -9,3 +13,11 @@ def test_application_num_users():
|
||||
|
||||
ApplicationRoleFactory.create(application=application)
|
||||
assert application.num_users == 1
|
||||
|
||||
|
||||
def test_application_environments_excludes_deleted():
|
||||
app = ApplicationFactory.create()
|
||||
env = EnvironmentFactory.create(application=app)
|
||||
EnvironmentFactory.create(application=app, deleted=True)
|
||||
assert len(app.environments) == 1
|
||||
assert app.environments[0].id == env.id
|
||||
|
9
tests/models/test_portfolio.py
Normal file
9
tests/models/test_portfolio.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from tests.factories import ApplicationFactory, PortfolioFactory
|
||||
|
||||
|
||||
def test_portfolio_applications_excludes_deleted():
|
||||
portfolio = PortfolioFactory.create()
|
||||
app = ApplicationFactory.create(portfolio=portfolio)
|
||||
ApplicationFactory.create(portfolio=portfolio, deleted=True)
|
||||
assert len(portfolio.applications) == 1
|
||||
assert portfolio.applications[0].id == app.id
|
Reference in New Issue
Block a user