-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate TrackedModelChecks to new structure. remove TransactionCheck. Start moving business rules into the database, and provide sync_business_rules to do that, along with a mechanism to do this in tests.
- Loading branch information
Showing
25 changed files
with
1,189 additions
and
551 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
Empty file.
Empty file.
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 @@ | ||
from collections import defaultdict | ||
|
||
from django.core.management import BaseCommand | ||
|
||
from checks.models import BusinessRuleModel | ||
from common.business_rules import ALL_RULES | ||
|
||
|
||
class Command(BaseCommand): | ||
"""Display the business rules in the system and database.""" | ||
|
||
def handle(self, *app_labels, **options): | ||
self.stdout.write("Rule Name, In System, In Database, Status") | ||
|
||
# Create a dictionary of rule_names, then a couple of flags | ||
# to determine status. | ||
rule_info = defaultdict(dict) | ||
for rule_name in BusinessRuleModel.objects.values("name"): | ||
rule_info[rule_name["name"]]["in_database"] = True | ||
|
||
for rule_name in ALL_RULES.keys(): | ||
rule_info[rule_name]["in_system"] = True | ||
|
||
for rule_name, info in rule_info.items(): | ||
in_database = info.get("in_database", False) | ||
in_system = info.get("in_system", False) | ||
|
||
if in_database and in_system: | ||
status = "In Sync" | ||
elif in_database: | ||
status = "Pending Removal" | ||
elif in_system: | ||
status = "Pending Addition" | ||
|
||
self.stdout.write( | ||
f"{rule_name}," | ||
f" {'Y' if in_system else 'N'}," | ||
f" {'Y' if in_database else 'N'}," | ||
f" {status}", | ||
) |
Oops, something went wrong.