You are here

function ContextConditionUserTest::setUp in Context 6

Same name and namespace in other branches
  1. 6.3 tests/context.conditions.test \ContextConditionUserTest::setUp()
  2. 7.3 tests/context.conditions.test \ContextConditionUserTest::setUp()

Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix. A temporary files directory is created with the same name as the database prefix.

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.

Overrides DrupalWebTestCase::setUp

File

tests/context.conditions.test, line 14

Class

ContextConditionUserTest

Code

function setUp() {
  parent::setUp('context', 'ctools');
  $this->user1 = $this
    ->drupalCreateUser(array(
    'access content',
    'administer site configuration',
  ));
  $this->user2 = $this
    ->drupalCreateUser(array(
    'access content',
  ));

  // The role name is not reliably put on the user object. Retrive from
  // user_roles().
  $role = '';
  foreach (array_keys($this->user1->roles) as $rid) {
    if ($rid !== DRUPAL_AUTHENTICATED_RID) {
      $role = user_role_load($rid)->name;
      break;
    }
  }

  // Create test context.
  ctools_include('export');
  $this->context = ctools_export_new_object('context');
  $this->context->name = 'testcontext';
  $this->context->conditions = array(
    'user' => array(
      'values' => array(
        $role,
      ),
    ),
  );
  $this->context->reactions = array(
    'debug' => array(
      'debug' => TRUE,
    ),
  );
  $saved = context_save($this->context);
  $this
    ->assertTrue($saved, "Context 'testcontext' saved.");
}