forked from jazzband/django-simple-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.py
executable file
·173 lines (155 loc) · 4.81 KB
/
runtests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/usr/bin/env python
import sys
from argparse import ArgumentParser
from os.path import abspath, dirname, join
from shutil import rmtree
import django
from django.conf import settings
from django.test.runner import DiscoverRunner
sys.path.insert(0, abspath(dirname(__file__)))
media_root = join(abspath(dirname(__file__)), "test_files")
rmtree(media_root, ignore_errors=True)
installed_apps = [
"simple_history.tests",
"simple_history.tests.custom_user",
"simple_history.tests.external",
"simple_history.registry_tests.migration_test_app",
"simple_history",
"django.contrib.contenttypes",
"django.contrib.auth",
"django.contrib.sessions",
"django.contrib.admin",
"django.contrib.messages",
]
class DisableMigrations:
def __contains__(self, item):
return True
def __getitem__(self, item):
return None
DATABASE_NAME_TO_DATABASE_SETTINGS = {
"sqlite3": {
"default": {
"ENGINE": "django.db.backends.sqlite3",
},
"other": {"ENGINE": "django.db.backends.sqlite3"},
},
"postgres": {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "test",
"USER": "postgres",
"PASSWORD": "postgres",
"HOST": "127.0.0.1",
"PORT": 5432,
},
"other": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "other",
"USER": "postgres",
"PASSWORD": "postgres",
"HOST": "127.0.0.1",
"PORT": 5432,
},
},
"mysql": {
"default": {
"ENGINE": "django.db.backends.mysql",
"NAME": "test",
"USER": "root",
"PASSWORD": "mysql",
"HOST": "127.0.0.1",
"PORT": 3306,
},
"other": {
"ENGINE": "django.db.backends.mysql",
"NAME": "other",
"USER": "root",
"PASSWORD": "mysql",
"HOST": "127.0.0.1",
"PORT": 3306,
},
},
"mariadb": {
"default": {
"ENGINE": "django.db.backends.mysql",
"NAME": "test",
"USER": "root",
"PASSWORD": "mariadb",
"HOST": "127.0.0.1",
"PORT": 3307,
},
"other": {
"ENGINE": "django.db.backends.mysql",
"NAME": "other",
"USER": "root",
"PASSWORD": "mariadb",
"HOST": "127.0.0.1",
"PORT": 3307,
},
},
}
DEFAULT_SETTINGS = dict( # nosec
SECRET_KEY="not a secret",
ALLOWED_HOSTS=["localhost"],
AUTH_USER_MODEL="custom_user.CustomUser",
ROOT_URLCONF="simple_history.tests.urls",
MEDIA_ROOT=media_root,
STATIC_URL="/static/",
INSTALLED_APPS=installed_apps,
LOGGING={
"version": 1,
"disable_existing_loggers": True,
"handlers": {
"console": {
"class": "logging.StreamHandler",
},
},
"root": {
"handlers": ["console"],
"level": "INFO",
},
},
MIGRATION_MODULES=DisableMigrations(),
TEMPLATES=[
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
]
},
}
],
DEFAULT_AUTO_FIELD="django.db.models.AutoField",
USE_TZ=False,
)
MIDDLEWARE = [
"django.contrib.sessions.middleware.SessionMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
]
DEFAULT_SETTINGS["MIDDLEWARE"] = MIDDLEWARE
def main():
parser = ArgumentParser(description="Run package tests.")
parser.add_argument("--database", action="store", nargs="?", default="sqlite3")
parser.add_argument("--failfast", action="store_true")
parser.add_argument("--pdb", action="store_true")
parser.add_argument("--tag", action="append", nargs="?")
namespace = parser.parse_args()
db_settings = DATABASE_NAME_TO_DATABASE_SETTINGS[namespace.database]
if not settings.configured:
settings.configure(**DEFAULT_SETTINGS, DATABASES=db_settings)
django.setup()
tags = namespace.tag
failures = DiscoverRunner(
failfast=bool(namespace.failfast), pdb=bool(namespace.pdb), tags=tags
).run_tests(["simple_history.tests"])
failures |= DiscoverRunner(
failfast=bool(namespace.failfast), pdb=bool(namespace.pdb), tags=tags
).run_tests(["simple_history.registry_tests"])
sys.exit(failures)
if __name__ == "__main__":
main()