You are here

class FileTest in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/symfony/validator/Tests/Constraints/FileTest.php \Symfony\Component\Validator\Tests\Constraints\FileTest
  2. 8.0 vendor/symfony/http-foundation/Tests/File/FileTest.php \Symfony\Component\HttpFoundation\Tests\File\FileTest
  3. 8.0 core/modules/file/tests/src/Unit/Plugin/migrate/source/d6/FileTest.php \Drupal\Tests\file\Unit\Plugin\migrate\source\d6\FileTest
  4. 8.0 core/modules/file/tests/src/Unit/Plugin/migrate/source/d7/FileTest.php \Drupal\Tests\file\Unit\Plugin\migrate\source\d7\FileTest
Same name and namespace in other branches
  1. 8 core/modules/file/tests/src/Unit/Plugin/migrate/source/d7/FileTest.php \Drupal\Tests\file\Unit\Plugin\migrate\source\d7\FileTest

Tests D7 file source plugin.

@group file

Hierarchy

Expanded class hierarchy of FileTest

File

core/modules/file/tests/src/Unit/Plugin/migrate/source/d7/FileTest.php, line 20
Contains \Drupal\Tests\file\Unit\Plugin\migrate\source\d7\FileTest.

Namespace

Drupal\Tests\file\Unit\Plugin\migrate\source\d7
View source
class FileTest extends MigrateSqlSourceTestCase {
  const PLUGIN_CLASS = 'Drupal\\Tests\\file\\Unit\\Plugin\\migrate\\source\\d7\\TestFile';
  protected $migrationConfiguration = array(
    'id' => 'test',
    'source' => array(
      'plugin' => 'd7_file',
      // Used by testFilteringByScheme().
      'scheme' => array(
        'public',
        'private',
      ),
    ),
    'destination' => array(
      'plugin' => 'entity:file',
      'source_base_path' => '/path/to/files',
    ),
  );
  protected $expectedResults = [
    [
      'fid' => '1',
      'uid' => '1',
      'filename' => 'cube.jpeg',
      'uri' => 'public://cube.jpeg',
      'filemime' => 'image/jpeg',
      'filesize' => '3620',
      'status' => '1',
      'timestamp' => '1421727515',
    ],
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    $this->databaseContents['file_managed'] = $this->expectedResults;
    parent::setUp();
  }

  /**
   * Tests that public file URIs are properly transformed by prepareRow().
   */
  public function testPublicUri() {
    $this->source->publicPath = 'sites/default/files';
    $row = new Row([
      'uri' => 'public://foo.png',
    ], [
      'uri' => [],
    ]);
    $this->source
      ->prepareRow($row);
    $this
      ->assertEquals('sites/default/files/foo.png', $row
      ->getSourceProperty('filepath'));
  }

  /**
   * Tests that private file URIs are properly transformed by prepareRow().
   */
  public function testPrivateUri() {
    $this->source->privatePath = '/path/to/private/files';
    $row = new Row([
      'uri' => 'private://baz.jpeg',
    ], [
      'uri' => [],
    ]);
    $this->source
      ->prepareRow($row);
    $this
      ->assertEquals('/path/to/private/files/baz.jpeg', $row
      ->getSourceProperty('filepath'));
  }

  /**
   * Tests that temporary file URIs are property transformed by prepareRow().
   */
  public function testTemporaryUri() {
    $this->source->temporaryPath = '/tmp';
    $row = new Row([
      'uri' => 'temporary://camelot/lancelot.gif',
    ], [
      'uri' => [],
    ]);
    $this->source
      ->prepareRow($row);
    $this
      ->assertEquals('/tmp/camelot/lancelot.gif', $row
      ->getSourceProperty('filepath'));
  }

  /**
   * Tests that it's possible to filter files by scheme.
   */
  public function testFilteringByScheme() {
    $query_conditions = $this->source
      ->query()
      ->conditions();
    $scheme_condition = end($query_conditions);
    $this
      ->assertInstanceOf(ConditionInterface::class, $scheme_condition['field']);
    $conditions = $scheme_condition['field']
      ->conditions();
    $this
      ->assertSame('uri', $conditions[0]['field']);
    $this
      ->assertSame('LIKE', $conditions[0]['operator']);
    $this
      ->assertSame('public://%', $conditions[0]['value']);
    $this
      ->assertSame('uri', $conditions[1]['field']);
    $this
      ->assertSame('LIKE', $conditions[1]['operator']);
    $this
      ->assertSame('private://%', $conditions[1]['value']);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FileTest::$expectedResults protected property Expected results after the source parsing. Overrides MigrateSqlSourceTestCase::$expectedResults
FileTest::$migrationConfiguration protected property Overrides MigrateTestCase::$migrationConfiguration
FileTest::PLUGIN_CLASS constant The plugin class under test. Overrides MigrateSqlSourceTestCase::PLUGIN_CLASS
FileTest::setUp protected function Overrides MigrateSqlSourceTestCase::setUp
FileTest::testFilteringByScheme public function Tests that it's possible to filter files by scheme.
FileTest::testPrivateUri public function Tests that private file URIs are properly transformed by prepareRow().
FileTest::testPublicUri public function Tests that public file URIs are properly transformed by prepareRow().
FileTest::testTemporaryUri public function Tests that temporary file URIs are property transformed by prepareRow().
MigrateSqlSourceTestCase::$databaseContents protected property The database contents. 5
MigrateSqlSourceTestCase::$expectedCount protected property Expected count of source rows.
MigrateSqlSourceTestCase::$plugin protected property The source plugin instance under test.
MigrateSqlSourceTestCase::$source protected property The tested source plugin.
MigrateSqlSourceTestCase::getValue protected function Overrides MigrateTestCase::getValue
MigrateSqlSourceTestCase::ORIGINAL_HIGH_WATER constant The high water mark at the beginning of the import operation. 1
MigrateSqlSourceTestCase::testRetrieval public function Test the source returns the same rows as expected.
MigrateSqlSourceTestCase::testSourceCount public function Test the source returns the row count expected.
MigrateSqlSourceTestCase::testSourceId public function Test the source defines a valid ID.
MigrateTestCase::$idMap protected property
MigrateTestCase::$migrationStatus protected property Local store for mocking setStatus()/getStatus().
MigrateTestCase::createSchemaFromRow protected function Generates a table schema from a row.
MigrateTestCase::getDatabase protected function Get an SQLite database connection object for use in tests.
MigrateTestCase::getMigration protected function Retrieve a mocked migration.
MigrateTestCase::queryResultTest public function Tests a query
MigrateTestCase::retrievalAssertHelper protected function Asserts tested values during test retrieval.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.