1 field_ui.test FieldUITestCase::setUp()

Sets up a Backdrop site for running functional and integration tests.

Generates a random database prefix and installs Backdrop with the specified installation profile in BackdropWebTestCase::$profile into the prefixed database. Afterwards, installs any additional modules specified by the test.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Parameters

...: List of modules to enable for the duration of the test. This can be either a single array or a variable number of string arguments.

Return value

bool: TRUE if set up completes, FALSE if an error occurred.

Overrides BackdropWebTestCase::setUp

See also

BackdropWebTestCase::prepareDatabasePrefix()

BackdropWebTestCase::changeDatabasePrefix()

BackdropWebTestCase::prepareEnvironment()

File

core/modules/field_ui/tests/field_ui.test, line 14
Tests for field_ui.module.

Class

FieldUITestCase
Provides common functionality for the Field UI test classes.

Code

function setUp() {
  // Since this is a base class for many test cases, support the same
  // flexibility that BackdropWebTestCase::setUp() has for the modules to be
  // passed in as either an array or a variable number of string arguments.
  $modules = func_get_args();
  if (isset($modules[0]) && is_array($modules[0])) {
    $modules = $modules[0];
  }
  $modules[] = 'node';
  $modules[] = 'field_ui';
  $modules[] = 'field_test';
  $modules[] = 'taxonomy';
  parent::setUp($modules);

  // Create test user.
  $admin_user = $this->backdropCreateUser(array('access content', 'administer content types', 'administer taxonomy', 'administer fields', 'administer view modes', 'administer account settings'));
  $this->backdropLogin($admin_user);

  // Create content type, with underscores.
  $type_name = strtolower($this->randomName(8)) . '_test';
  $type = $this->backdropCreateContentType(array('name' => $type_name, 'type' => $type_name));
  $this->type = $type->type;
  // Store a valid URL name, with hyphens instead of underscores.
  $this->hyphen_type = str_replace('_', '-', $this->type);
}