forked from django-cms/django-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
develop.py
executable file
·345 lines (286 loc) · 12.4 KB
/
develop.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
#!/usr/bin/env python
from __future__ import print_function, with_statement
import contextlib
import multiprocessing
import pkgutil
import pyclbr
import subprocess
from django.core.exceptions import DjangoRuntimeWarning
import os
import sys
import warnings
from docopt import docopt
from django import VERSION
from django.utils import autoreload
from django.utils.encoding import force_text
from django.core.management import call_command, CommandError
import cms
from cms.test_utils.cli import configure
from cms.test_utils.util import static_analysis
from cms.test_utils.tmpdir import temp_dir
from cms.utils.compat import DJANGO_1_6
import menus
__doc__ = '''django CMS development helper script.
To use a different database, set the DATABASE_URL environment variable to a
dj-database-url compatible value. The AUTH_USER_MODEL environment variable can be
used to change the user model in the same manner as the --user option.
Usage:
develop.py test [--parallel | --failfast] [--migrate] [--user=<user>] [<test-label>...] [--xvfb]
develop.py timed test [test-label...] [--xvfb]
develop.py isolated test [<test-label>...] [--parallel] [--migrate] [--xvfb]
develop.py server [--port=<port>] [--bind=<bind>] [--migrate] [--user=<user>]
develop.py shell
develop.py compilemessages
develop.py makemessages
develop.py makemigrations [--merge]
develop.py squashmigrations <applications-name> <migration-name>
develop.py pyflakes
develop.py authors
Options:
-h --help Show this screen.
--version Show version.
--parallel Run tests in parallel.
--migrate Use south migrations in test or server command.
--merge Merge migrations
--failfast Stop tests on first failure (only if not --parallel).
--port=<port> Port to listen on [default: 8000].
--bind=<bind> Interface to bind to [default: 127.0.0.1].
--user=<user> Specify which user model to run tests with (if other than auth.User).
--xvfb Use a virtual X framebuffer for frontend testing, requires xvfbwrapper to be installed.
'''
def server(bind='127.0.0.1', port=8000, migrate_cmd=False):
if os.environ.get("RUN_MAIN") != "true":
from cms.utils.compat.dj import get_user_model
if DJANGO_1_6:
from south.management.commands import syncdb, migrate
if migrate_cmd:
syncdb.Command().handle_noargs(interactive=False, verbosity=1, database='default')
migrate.Command().handle(interactive=False, verbosity=1)
else:
syncdb.Command().handle_noargs(interactive=False, verbosity=1, database='default', migrate=False, migrate_all=True)
migrate.Command().handle(interactive=False, verbosity=1, fake=True)
else:
call_command("migrate", database='default')
User = get_user_model()
if not User.objects.filter(is_superuser=True).exists():
usr = User()
if(User.USERNAME_FIELD != 'email'):
setattr(usr, User.USERNAME_FIELD, 'admin')
usr.email = 'admin@admin.com'
usr.set_password('admin')
usr.is_superuser = True
usr.is_staff = True
usr.is_active = True
usr.save()
print('')
print("A admin user (username: admin, password: admin) has been created.")
print('')
from django.contrib.staticfiles.management.commands import runserver
rs = runserver.Command()
rs.stdout = sys.stdout
rs.stderr = sys.stderr
rs.use_ipv6 = False
rs._raw_ipv6 = False
rs.addr = bind
rs.port = port
autoreload.main(rs.inner_run, (), {
'addrport': '%s:%s' % (bind, port),
'insecure_serving': True,
'use_threading': True
})
def _split(itr, num):
split = []
size = int(len(itr) / num)
for index in range(num):
split.append(itr[size * index:size * (index + 1)])
return split
def _get_test_labels():
test_labels = []
for module in [name for _, name, _ in pkgutil.iter_modules([os.path.join("cms","tests")])]:
clsmembers = pyclbr.readmodule("cms.tests.%s" % module)
for clsname, cls in clsmembers.items():
for method, _ in cls.methods.items():
if method.startswith('test_'):
test_labels.append('cms.%s.%s' % (clsname, method))
test_labels = sorted(test_labels)
return test_labels
def _test_run_worker(test_labels, failfast=False, test_runner='django.test.simple.DjangoTestSuiteRunner'):
warnings.filterwarnings(
'error', r"DateTimeField received a naive datetime",
RuntimeWarning, r'django\.db\.models\.fields')
from django.conf import settings
settings.TEST_RUNNER = test_runner
from django.test.utils import get_runner
TestRunner = get_runner(settings)
test_runner = TestRunner(verbosity=1, interactive=False, failfast=failfast)
failures = test_runner.run_tests(test_labels)
return failures
def _test_in_subprocess(test_labels):
return subprocess.call(['python', 'develop.py', 'test'] + test_labels)
def isolated(test_labels, parallel=False):
test_labels = test_labels or _get_test_labels()
if parallel:
pool = multiprocessing.Pool()
mapper = pool.map
else:
mapper = map
results = mapper(_test_in_subprocess, ([test_label] for test_label in test_labels))
failures = [test_label for test_label, return_code in zip(test_labels, results) if return_code != 0]
return failures
def timed(test_labels):
return _test_run_worker(test_labels, test_runner='cms.test_utils.runners.TimedTestRunner')
def test(test_labels, parallel=False, failfast=False):
test_labels = test_labels or _get_test_labels()
if parallel:
worker_tests = _split(test_labels, multiprocessing.cpu_count())
pool = multiprocessing.Pool()
failures = sum(pool.map(_test_run_worker, worker_tests))
return failures
else:
return _test_run_worker(test_labels, failfast)
def compilemessages():
from django.core.management import call_command
os.chdir('cms')
call_command('compilemessages', all=True)
def makemessages():
from django.core.management import call_command
os.chdir('cms')
call_command('makemessages', locale=('en',))
def shell():
from django.core.management import call_command
call_command('shell')
def makemigrations(migrate_plugins=True, merge=False, squash=False):
from django.core.management import call_command
applications = [
# core applications
'cms', 'menus',
# testing applications
'meta', 'manytomany_rel', 'fileapp', 'placeholderapp', 'sampleapp', 'fakemlng', 'one_thing', 'extensionapp',
'objectpermissionsapp', 'bunch_of_plugins', 'emailuserapp'
]
if migrate_plugins:
applications.extend([
# official plugins
'djangocms_inherit', 'djangocms_googlemap', 'djangocms_column', 'djangocms_style', 'djangocms_link',
'djangocms_file', 'djangocms_text_ckeditor', 'djangocms_picture', 'djangocms_teaser', 'djangocms_file',
'djangocms_flash', 'djangocms_video',
])
if DJANGO_1_6:
if merge:
raise DjangoRuntimeWarning(u'Option not implemented for Django 1.6')
call_command('makemigrations', *applications)
else:
call_command('makemigrations', *applications, merge=merge)
def squashmigrations(application, migration):
if DJANGO_1_6:
raise CommandError(u'Command not implemented for Django 1.6')
else:
call_command('squashmigrations', application, migration)
def generate_authors():
print("Generating AUTHORS")
# Get our list of authors
print("Collecting author names")
r = subprocess.Popen(["git", "log", "--use-mailmap", "--format=%aN"], stdout=subprocess.PIPE)
seen_authors = []
authors = []
with open('AUTHORS', 'r') as f:
for line in f.readlines():
if line.startswith("*"):
author = force_text(line).strip("* \n")
if author.lower() not in seen_authors:
seen_authors.append(author.lower())
authors.append(author)
for author in r.stdout.readlines():
author = force_text(author).strip()
if author.lower() not in seen_authors:
seen_authors.append(author.lower())
authors.append(author)
# Sort our list of Authors by their case insensitive name
authors = sorted(authors, key=lambda x: x.lower())
# Write our authors to the AUTHORS file
print(u"Authors (%s):\n\n\n* %s" % (len(authors), u"\n* ".join(authors)))
def main():
args = docopt(__doc__, version=cms.__version__)
if args['pyflakes']:
return static_analysis.pyflakes((cms, menus))
if args['authors']:
return generate_authors()
# configure django
warnings.filterwarnings(
'error', r"DateTimeField received a naive datetime",
RuntimeWarning, r'django\.db\.models\.fields')
default_name = ':memory:' if args['test'] else 'local.sqlite'
db_url = os.environ.get("DATABASE_URL", "sqlite://localhost/%s" % default_name)
migrate = args.get('--migrate', False)
with temp_dir() as STATIC_ROOT:
with temp_dir() as MEDIA_ROOT:
use_tz = VERSION[:2] >= (1, 4)
configs = {
'db_url': db_url,
'ROOT_URLCONF': 'cms.test_utils.project.urls',
'STATIC_ROOT': STATIC_ROOT,
'MEDIA_ROOT': MEDIA_ROOT,
'USE_TZ': use_tz,
'SOUTH_TESTS_MIGRATE': migrate,
}
if args['test']:
configs['SESSION_ENGINE'] = "django.contrib.sessions.backends.cache"
# Command line option takes precedent over environment variable
auth_user_model = args['--user']
if not auth_user_model:
auth_user_model = os.environ.get("AUTH_USER_MODEL", None)
if auth_user_model:
if VERSION[:2] < (1, 5):
print()
print("Custom user models are not supported before Django 1.5")
print()
else:
configs['AUTH_USER_MODEL'] = auth_user_model
configure(**configs)
# run
if args['test']:
# make "Address already in use" errors less likely, see Django
# docs for more details on this env variable.
os.environ.setdefault(
'DJANGO_LIVE_TEST_SERVER_ADDRESS',
'localhost:8000-9000'
)
if args['--xvfb']:
import xvfbwrapper
context = xvfbwrapper.Xvfb(width=1280, height=720)
else:
@contextlib.contextmanager
def null_context():
yield
context = null_context()
with context:
if args['isolated']:
failures = isolated(args['<test-label>'], args['--parallel'])
print()
print("Failed tests")
print("============")
if failures:
for failure in failures:
print(" - %s" % failure)
else:
print(" None")
num_failures = len(failures)
elif args['timed']:
num_failures = timed(args['<test-label>'])
else:
num_failures = test(args['<test-label>'], args['--parallel'], args['--failfast'])
sys.exit(num_failures)
elif args['server']:
server(args['--bind'], args['--port'], args.get('--migrate', True))
elif args['shell']:
shell()
elif args['compilemessages']:
compilemessages()
elif args['makemessages']:
makemessages()
elif args['makemigrations']:
makemigrations(merge=args['--merge'])
elif args['squashmigrations']:
squashmigrations(args['<applications-name>'], args['<migration-name>'])
if __name__ == '__main__':
main()