public function UIFPlusImageFieldsTestCase::setUp in User Import Framework Plus 7
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
- ./
uif_plus.test, line 240 - Test cases for User Import Framework Plus module
Class
Code
public function setUp() {
parent::setUp('uif', 'uif_plus', 'profile2', 'entity_feature');
$this->admin_user = $this
->drupalCreateUser(array(
'administer users',
'import users',
));
// prepare for image upload
variable_set('user_pictures', 1);
// Check that directories specified in settings exist in filesystem.
$file_dir = file_default_scheme();
$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);
// create image
$image = current($this
->drupalGetTestFiles('image'));
$info = image_get_info($image->uri);
// copy to the expected location and rename it to freddie.jpg
$copied_image_uri = file_unmanaged_copy($image->uri, file_default_scheme() . '://uif_plus/freddie.jpg', FILE_EXISTS_REPLACE);
}