public function RelationshipUserImageDataTest::testViewsHandlerRelationshipUserImageData in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/image/src/Tests/Views/RelationshipUserImageDataTest.php \Drupal\image\Tests\Views\RelationshipUserImageDataTest::testViewsHandlerRelationshipUserImageData()
Tests using the views image relationship.
File
- core/
modules/ image/ src/ Tests/ Views/ RelationshipUserImageDataTest.php, line 60 - Contains \Drupal\image\Tests\Views\RelationshipUserImageDataTest.
Class
- RelationshipUserImageDataTest
- Tests image on user relationship handler.
Namespace
Drupal\image\Tests\ViewsCode
public function testViewsHandlerRelationshipUserImageData() {
$file = entity_create('file', array(
'fid' => 2,
'uid' => 2,
'filename' => 'image-test.jpg',
'uri' => "public://image-test.jpg",
'filemime' => 'image/jpeg',
'created' => 1,
'changed' => 1,
'status' => FILE_STATUS_PERMANENT,
));
$file
->enforceIsNew();
file_put_contents($file
->getFileUri(), file_get_contents('core/modules/simpletest/files/image-1.png'));
$file
->save();
$account = $this
->drupalCreateUser();
$account->user_picture->target_id = 2;
$account
->save();
$view = Views::getView('test_image_user_image_data');
// Tests \Drupal\taxonomy\Plugin\views\relationship\NodeTermData::calculateDependencies().
$expected = [
'module' => [
'file',
'user',
],
];
$this
->assertIdentical($expected, $view
->getDependencies());
$this
->executeView($view);
$expected_result = array(
array(
'file_managed_user__user_picture_fid' => '2',
),
);
$column_map = array(
'file_managed_user__user_picture_fid' => 'file_managed_user__user_picture_fid',
);
$this
->assertIdenticalResultset($view, $expected_result, $column_map);
}