Skip to content

Commit

Permalink
Refs kiwitcms#1696. Add middleware to warn for unapplied migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
brymut committed Jun 28, 2020
1 parent 7928c84 commit b655e98
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,37 @@ jobs:
coverage report -m
bash <(curl -s https://codecov.io/bash)
test_check_unapplied_migrations_middleware:
name: test CheckUnappliedMigrationsMiddleware
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install Python dependencies
run: |
sudo apt-get install libkrb5-dev gettext
pip install -r requirements/devel.txt
pushd tcms/ && npm install && popd
- name: Run test
run: |
export LANG=en-us
./manage.py migrate --settings=$(DJANGO_SETTINGS_MODULE) auth
./manage.py migrate --settings=$(DJANGO_SETTINGS_MODULE) sites
./manage.py migrate --settings=$(DJANGO_SETTINGS_MODULE) sessions
export TEST_CHECK_UNAPPLIED_MIGRATIONS_MIDDLEWARE=1
make test
without_internal_bugtracker:
name: without internal bugtracker
runs-on: ubuntu-latest
Expand Down
24 changes: 23 additions & 1 deletion tcms/core/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
from django.utils.deprecation import MiddlewareMixin
from django.utils.safestring import mark_safe
from django.utils.translation import gettext_lazy as _
from django.db import DEFAULT_DB_ALIAS, connections
from django.db.migrations.executor import MigrationExecutor


class CsrfDisableMiddleware(MiddlewareMixin):
Expand All @@ -29,6 +31,26 @@ def process_request(self, request):
'<a href="%(admin_url)s">change it</a>') % {
'doc_url': doc_url,
'admin_url': reverse('admin:sites_site_change', args=[site.pk])
}
}
)
)


class CheckUnappliedMigrationsMiddleware(MiddlewareMixin):
def process_request(self, request):
doc_url = ('https://kiwitcms.readthedocs.io/en/latest/installing_'
'docker.html#initial-configuration-of-running-container')
executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
plan = executor.migration_plan(executor.loader.graph.leaf_nodes())
if plan:
messages.add_message(
request,
messages.ERROR,
mark_safe(
_('You have %(unapplied_migration_count)s unapplied migration(s). '
'See <a href="%(doc_url)s">documentation</a>') % {
"unapplied_migration_count": len(plan),
"doc_url": doc_url,
}
)
)
23 changes: 23 additions & 0 deletions tcms/core/tests/test_middleware.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import os
import unittest
from django.test import TransactionTestCase
from django.contrib.messages import get_messages


@unittest.skipUnless(
os.getenv('TEST_CHECK_UNAPPLIED_MIGRATIONS_MIDDLEWARE'),
'CheckUnappliedMigrationsMiddleware testing not enabled')
class TestCheckUnappliedMigrationsMiddleware(TransactionTestCase):
@classmethod
def setUpClass(cls):
cls.unapplied_migration_message = ('You have 41 unapplied migration(s)'
'. See <a href="https://kiwitcms.'
'readthedocs.io/en/latest/installin'
'g_docker.html#initial-configuratio'
'n-of-running-container">documentat'
'ion</a>')

def test_unapplied_migrations(self):
response = self.client.get('/')
messages = list(get_messages(response.wsgi_request))
self.assertEqual(str(messages[0]), self.unapplied_migration_message)
1 change: 1 addition & 0 deletions tcms/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@
'global_login_required.GlobalLoginRequiredMiddleware',
'simple_history.middleware.HistoryRequestMiddleware',
'tcms.core.middleware.CheckSettingsMiddleware',
'tcms.core.middleware.CheckUnappliedMigrationsMiddleware'
]


Expand Down

0 comments on commit b655e98

Please sign in to comment.