2014-06-07 04:39:33 +08:00
|
|
|
from django.core.management import call_command
|
2007-08-17 07:05:00 +08:00
|
|
|
from django.core.management.base import BaseCommand
|
2014-06-07 04:39:33 +08:00
|
|
|
from django.db import connection
|
2007-09-10 05:57:59 +08:00
|
|
|
|
2013-11-03 04:12:09 +08:00
|
|
|
|
2007-08-17 07:05:00 +08:00
|
|
|
class Command(BaseCommand):
|
|
|
|
help = 'Runs a development server with data from the given fixture(s).'
|
|
|
|
|
2014-01-20 10:45:21 +08:00
|
|
|
requires_system_checks = False
|
2007-08-17 07:05:00 +08:00
|
|
|
|
2014-06-07 04:39:33 +08:00
|
|
|
def add_arguments(self, parser):
|
2016-03-29 06:33:29 +08:00
|
|
|
parser.add_argument(
|
|
|
|
'args', metavar='fixture', nargs='*',
|
|
|
|
help='Path(s) to fixtures to load before running the server.',
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--noinput', '--no-input', action='store_false', dest='interactive', default=True,
|
|
|
|
help='Tells Django to NOT prompt the user for input of any kind.',
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--addrport', default='',
|
|
|
|
help='Port number or ipaddr:port to run the server on.',
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--ipv6', '-6', action='store_true', dest='use_ipv6', default=False,
|
|
|
|
help='Tells Django to use an IPv6 address.',
|
|
|
|
)
|
2007-08-17 07:05:00 +08:00
|
|
|
|
2014-06-07 04:39:33 +08:00
|
|
|
def handle(self, *fixture_labels, **options):
|
2016-03-03 10:01:36 +08:00
|
|
|
verbosity = options['verbosity']
|
|
|
|
interactive = options['interactive']
|
2007-08-17 07:05:00 +08:00
|
|
|
|
|
|
|
# Create a test database.
|
2014-06-09 10:30:15 +08:00
|
|
|
db_name = connection.creation.create_test_db(verbosity=verbosity, autoclobber=not interactive, serialize=False)
|
2007-08-17 07:05:00 +08:00
|
|
|
|
|
|
|
# Import the fixture data into the test database.
|
|
|
|
call_command('loaddata', *fixture_labels, **{'verbosity': verbosity})
|
|
|
|
|
|
|
|
# Run the development server. Turn off auto-reloading because it causes
|
|
|
|
# a strange error -- it causes this handle() method to be called
|
|
|
|
# multiple times.
|
2014-09-04 20:15:09 +08:00
|
|
|
shutdown_message = (
|
|
|
|
'\nServer stopped.\nNote that the test database, %r, has not been '
|
|
|
|
'deleted. You can explore it on your own.' % db_name
|
|
|
|
)
|
2012-05-15 15:18:16 +08:00
|
|
|
use_threading = connection.features.test_db_allows_multiple_connections
|
2013-12-09 01:20:06 +08:00
|
|
|
call_command(
|
|
|
|
'runserver',
|
2014-06-07 04:39:33 +08:00
|
|
|
addrport=options['addrport'],
|
2012-05-15 15:18:16 +08:00
|
|
|
shutdown_message=shutdown_message,
|
|
|
|
use_reloader=False,
|
|
|
|
use_ipv6=options['use_ipv6'],
|
|
|
|
use_threading=use_threading
|
|
|
|
)
|