Class BaseDatabaseCreation
Encapsulate backend-specific differences pertaining to creation and destruction of the test database.
Declaration
class BaseDatabaseCreation
source linkDocumentation
Methods
▷ def clone_test_db(self, suffix, verbosity=1, autoclobber=False, keepdb=False) Clone a test database.
▷ def create_test_db(self, verbosity=1, autoclobber=False, serialize=True, keepdb=False) Create a test database, prompting the user for confirmation if the database already exists. Return the name of the test database created.
▷ def deserialize_db_from_string(self, data) Reload the database with data from a string generated by the serialize_db_to_string() method.
▷ def destroy_test_db(self, old_database_name=None, verbosity=1, keepdb=False, suffix=None) Destroy a test database, prompting the user for confirmation if the database already exists.
Overrides
This method is overriden in:
▷ def serialize_db_to_string(self) Serialize all data in the database into a JSON string. Designed only for test runner usage; will not handle large amounts of data.
▶ def set_as_test_mirror(self, primary_settings_dict) Set this database up to be used in testing as a mirror of a primary database whose settings are given.
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def test_db_signature(self) Return a tuple with elements of self.connection.settings_dict (a DATABASES setting value) that uniquely identify a database accordingly to the RDBMS particularities.
Overrides
This method is overriden in:
Subclasses
Reexports