class FileTest in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/validator/Tests/Constraints/FileTest.php \Symfony\Component\Validator\Tests\Constraints\FileTest
- 8 vendor/symfony/http-foundation/Tests/File/FileTest.php \Symfony\Component\HttpFoundation\Tests\File\FileTest
- 8 core/modules/file/tests/src/Unit/Plugin/migrate/source/d6/FileTest.php \Drupal\Tests\file\Unit\Plugin\migrate\source\d6\FileTest
- 8 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
- 8.0 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
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
- class \Drupal\Tests\migrate\Unit\MigrateSqlSourceTestCase
- class \Drupal\Tests\file\Unit\Plugin\migrate\source\d7\FileTest
- class \Drupal\Tests\migrate\Unit\MigrateSqlSourceTestCase
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
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\d7View 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FileTest:: |
protected | property |
Expected results after the source parsing. Overrides MigrateSqlSourceTestCase:: |
|
FileTest:: |
protected | property |
Overrides MigrateTestCase:: |
|
FileTest:: |
constant |
The plugin class under test. Overrides MigrateSqlSourceTestCase:: |
||
FileTest:: |
protected | function |
Overrides MigrateSqlSourceTestCase:: |
|
FileTest:: |
public | function | Tests that it's possible to filter files by scheme. | |
FileTest:: |
public | function | Tests that private file URIs are properly transformed by prepareRow(). | |
FileTest:: |
public | function | Tests that public file URIs are properly transformed by prepareRow(). | |
FileTest:: |
public | function | Tests that temporary file URIs are property transformed by prepareRow(). | |
MigrateSqlSourceTestCase:: |
protected | property | The database contents. | 5 |
MigrateSqlSourceTestCase:: |
protected | property | Expected count of source rows. | |
MigrateSqlSourceTestCase:: |
protected | property | The source plugin instance under test. | |
MigrateSqlSourceTestCase:: |
protected | property | The tested source plugin. | |
MigrateSqlSourceTestCase:: |
protected | function |
Overrides MigrateTestCase:: |
|
MigrateSqlSourceTestCase:: |
constant | The high water mark at the beginning of the import operation. | 1 | |
MigrateSqlSourceTestCase:: |
public | function | Test the source returns the same rows as expected. | |
MigrateSqlSourceTestCase:: |
public | function | Test the source returns the row count expected. | |
MigrateSqlSourceTestCase:: |
public | function | Test the source defines a valid ID. | |
MigrateTestCase:: |
protected | property | ||
MigrateTestCase:: |
protected | property | Local store for mocking setStatus()/getStatus(). | |
MigrateTestCase:: |
protected | function | Generates a table schema from a row. | |
MigrateTestCase:: |
protected | function | Get an SQLite database connection object for use in tests. | |
MigrateTestCase:: |
protected | function | Retrieve a mocked migration. | |
MigrateTestCase:: |
public | function | Tests a query | |
MigrateTestCase:: |
protected | function | Asserts tested values during test retrieval. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |