1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
from django.core.management import call_command
from django.core.management.base import SystemCheckError
from django.test import override_settings
from .common_testing import OAuth2ProviderTestCase as TestCase
class DjangoChecksTestCase(TestCase):
def test_checks_pass(self):
call_command("check")
# CrossDatabaseRouter claims AccessToken is in beta while everything else is in alpha.
# This will cause the database checks to fail.
@override_settings(
DATABASE_ROUTERS=["tests.db_router.CrossDatabaseRouter", "tests.db_router.AlphaRouter"]
)
def test_checks_fail_when_router_crosses_databases(self):
message = "The token models are expected to be stored in the same database."
with self.assertRaisesMessage(SystemCheckError, message):
call_command("check")
|