1
0
mirror of https://github.com/django/django.git synced 2025-10-21 12:49:11 +00:00

[boulder-oracle-sprint] adding initial functions for test database creation and destruction

git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@3991 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Boulder Sprinters 2006-11-04 22:38:49 +00:00
parent 39fd198ddd
commit 6131a839da

View File

@ -24,3 +24,98 @@ DATA_TYPES = {
'URLField': 'varchar2(200)', 'URLField': 'varchar2(200)',
'USStateField': 'char(2)', 'USStateField': 'char(2)',
} }
TEST_DATABASE_PREFIX = 'test_'
def create_test_db(settings, connection, backend, verbosity=1, autoclobber=False):
if verbosity >= 1:
print "Creating test database..."
TEST_DATABASE_NAME = _test_database_name(settings)
cursor = connection.cursor()
try:
_create_test_db(cursor, backend.quote_name(TEST_DATABASE_NAME))
except Exception, e:
sys.stderr.write("Got an error creating the test database: %s\n" % e)
if not autoclobber:
confirm = raw_input("It appears the test database, %s, already exists. Type 'yes' to delete it, or 'no' to cancel: " % TEST_DATABASE_NAME)
if autoclobber or confirm == 'yes':
try:
if verbosity >= 1:
print "Destroying old test database..."
_destroy_test_db(cursor, backend.quote_name(TEST_DATABASE_NAME))
if verbosity >= 1:
print "Creating test database..."
_create_test_db(cursor, backend.quote_name(TEST_DATABASE_NAME))
except Exception, e:
sys.stderr.write("Got an error recreating the test database: %s\n" % e)
sys.exit(2)
else:
print "Tests cancelled."
sys.exit(1)
connection.close()
settings.DATABASE_NAME = TEST_DATABASE_NAME
# Get a cursor (even though we don't need one yet). This has
# the side effect of initializing the test database.
cursor = connection.cursor()
def destroy_test_db(settings, connection, backend, old_database_name, verbosity=1):
if verbosity >= 1:
print "Destroying test database..."
connection.close()
TEST_DATABASE_NAME = _test_database_name(settings)
settings.DATABASE_NAME = old_database_name
cursor = connection.cursor()
time.sleep(1) # To avoid "database is being accessed by other users" errors.
_destroy_test_db(cursor, backend.quote_name(TEST_DATABASE_NAME))
connection.close()
def _create_test_db(cursor, dbname):
statements = [
"""create tablespace %(user)s
datafile '%(user)s.dat' size 10M autoextend on next 10M maxsize 20M
""",
"""create temporary tablespace %(user)s_temp
tempfile '%(user)s_temp.dat' size 10M autoextend on next 10M maxsize 20M
""",
"""create user %(user)s
identified by %(password)s
default tablespace %(user)s
temporary tablespace %(user)s_temp
""",
"""grant resource to %(user)s""",
"""grant connect to %(user)s""",
]
_execute_statements(cursor, statements, dbname)
def _destroy_test_db(cursor, dbname):
statements = [
"""drop user %(user)s cascade""",
"""drop tablespace %(user)s including contents and datafiles cascade constraints""",
"""drop tablespace %(user)s_temp including contents and datafiles cascade constraints""",
]
_execute_statements(cursor, statements, dbname)
def _execute_statements(cursor, statements, dbname):
for template in statements:
stmt = template % {'user': dbname, 'password': "Im a lumberjack"}
if verbosity >= 1:
print stmt
try:
cursor.execute(stmt)
except Exception, err:
sys.stderr.write("Failed (%s)\n" % (err))
if required:
raise
def _test_database_name(settings):
if settings.TEST_DATABASE_NAME:
name = settings.TEST_DATABASE_NAME
else:
name = TEST_DATABASE_PREFIX + settings.DATABASE_NAME