FileSpaceUsedTest::setUp

7 file.test FileSpaceUsedTest::setUp()
8 file.test FileSpaceUsedTest::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

modules/simpletest/tests/file.test, line 317
This provides SimpleTests for the core file handling functionality. These include FileValidateTest and FileSaveTest.

Code

function setUp() {
  parent::setUp();

  // Create records for a couple of users with different sizes.
  $file = array(
    'uid' => 2,
    'uri' => 'public://example1.txt',
    'filesize' => 50,
    'status' => FILE_STATUS_PERMANENT,
  );
  drupal_write_record('file_managed', $file);
  $file = array(
    'uid' => 2,
    'uri' => 'public://example2.txt',
    'filesize' => 20,
    'status' => FILE_STATUS_PERMANENT,
  );
  drupal_write_record('file_managed', $file);
  $file = array(
    'uid' => 3,
    'uri' => 'public://example3.txt',
    'filesize' => 100,
    'status' => FILE_STATUS_PERMANENT,
  );
  drupal_write_record('file_managed', $file);
  $file = array(
    'uid' => 3,
    'uri' => 'public://example4.txt',
    'filesize' => 200,
    'status' => FILE_STATUS_PERMANENT,
  );
  drupal_write_record('file_managed', $file);

  // Now create some non-permanent files.
  $file = array(
    'uid' => 2,
    'uri' => 'public://example5.txt',
    'filesize' => 1,
    'status' => 0,
  );
  drupal_write_record('file_managed', $file);
  $file = array(
    'uid' => 3,
    'uri' => 'public://example6.txt',
    'filesize' => 3,
    'status' => 0,
  );
  drupal_write_record('file_managed', $file);
}
Login or register to post comments