You are here

public function ExifOrientationTest::setUp in EXIF Orientation 7

Same name and namespace in other branches
  1. 8 tests/exif_orientation.test \ExifOrientationTest::setUp()

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

Generates a random database prefix and installs Drupal with the specified installation profile in DrupalWebTestCase::$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.

Overrides DrupalWebTestCase::setUp

See also

DrupalWebTestCase::prepareDatabasePrefix()

DrupalWebTestCase::changeDatabasePrefix()

DrupalWebTestCase::prepareEnvironment()

File

tests/exif_orientation.test, line 19
Tests for exif_orientation.module.

Class

ExifOrientationTest
@file Tests for exif_orientation.module.

Code

public function setUp() {
  $modules = array(
    'image',
    'exif_orientation',
  );
  parent::setUp($modules);

  // Set to high quality because we don't want encoding artifacts.
  variable_set('image_jpeg_quality', 98);

  // Code from UserPictureTestCase:
  // Enable user pictures.
  variable_set('user_pictures', 1);

  // Test if directories specified in settings exist in filesystem.
  $file_dir = 'public://';
  $file_check = file_prepare_directory($file_dir, FILE_CREATE_DIRECTORY);
  $picture_dir = variable_get('user_picture_path', 'pictures');
  $picture_path = $file_dir . $picture_dir;
  $pic_check = file_prepare_directory($picture_path, FILE_CREATE_DIRECTORY);
  $this->_directory_test = is_writable($picture_path);
  $this
    ->assertTrue($this->_directory_test, "The directory {$picture_path} doesn't exist or is not writable. Further tests won't be made.");
}