View source  
  <?php
namespace Drupal\Tests\entity_browser\FunctionalJavascript;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\entity_browser\Element\EntityBrowserElement;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\file\Entity\File;
use Drupal\node\Entity\Node;
use Drupal\Tests\TestFileCreationTrait;
class ImageFieldTest extends EntityBrowserWebDriverTestBase {
  use TestFileCreationTrait;
  
  protected $image;
  
  public function setUp() {
    parent::setUp();
    FieldStorageConfig::create([
      'field_name' => 'field_image',
      'type' => 'image',
      'entity_type' => 'node',
      'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
    ])
      ->save();
    FieldConfig::create([
      'field_name' => 'field_image',
      'entity_type' => 'node',
      'bundle' => 'article',
      'label' => 'Images',
      'settings' => [
        'file_extensions' => 'jpg',
        'file_directory' => 'entity-browser-test',
        'max_resolution' => '40x40',
        'title_field' => TRUE,
      ],
    ])
      ->save();
    $test_files = $this
      ->getTestFiles('image');
    foreach ($test_files as $test_file) {
      if ($test_file->filename === 'image-test.jpg') {
        break;
      }
    }
    $file_system = $this->container
      ->get('file_system');
    $file_system
      ->copy($file_system
      ->realpath($test_file->uri), 'public://example.jpg');
    $this->image = File::create([
      'uri' => 'public://example.jpg',
    ]);
    $this->image
      ->save();
    
    \Drupal::service('file.usage')
      ->add($this->image, 'entity_browser', 'test', '1');
    
    $form_display = $this->container
      ->get('entity_type.manager')
      ->getStorage('entity_form_display')
      ->load('node.article.default');
    $form_display
      ->setComponent('field_image', [
      'type' => 'entity_browser_file',
      'settings' => [
        'entity_browser' => 'test_entity_browser_iframe_view',
        'open' => TRUE,
        'field_widget_edit' => FALSE,
        'field_widget_remove' => TRUE,
        'field_widget_replace' => TRUE,
        'selection_mode' => EntityBrowserElement::SELECTION_MODE_APPEND,
        'view_mode' => 'default',
        'preview_image_style' => 'thumbnail',
      ],
    ])
      ->save();
    $display_config = [
      'width' => '650',
      'height' => '500',
      'link_text' => 'Select images',
    ];
    
    $browser = $this->container
      ->get('entity_type.manager')
      ->getStorage('entity_browser')
      ->load('test_entity_browser_iframe_view');
    $browser
      ->setDisplay('iframe');
    $browser
      ->getDisplay()
      ->setConfiguration($display_config);
    $browser
      ->addWidget([
      
      'settings' => [
        'upload_location' => 'public://',
        'extensions' => 'png',
      ],
      'weight' => 1,
      'label' => 'Upload images',
      'id' => 'upload',
    ]);
    $browser
      ->setWidgetSelector('tabs');
    $browser
      ->save();
    $account = $this
      ->drupalCreateUser([
      'access test_entity_browser_iframe_view entity browser pages',
      'create article content',
      'edit own article content',
      'access content',
    ]);
    $this
      ->drupalLogin($account);
  }
  
  public function testImageFieldUsage() {
    $this
      ->drupalGet('node/add/article');
    $this
      ->assertSession()
      ->linkExists('Select images');
    $this
      ->getSession()
      ->getPage()
      ->clickLink('Select images');
    $this
      ->getSession()
      ->switchToIFrame('entity_browser_iframe_test_entity_browser_iframe_view');
    $this
      ->getSession()
      ->getPage()
      ->checkField('entity_browser_select[file:' . $this->image
      ->id() . ']');
    $this
      ->getSession()
      ->getPage()
      ->pressButton('Select entities');
    $this
      ->waitForAjaxToFinish();
    $button = $this
      ->assertSession()
      ->waitForButton('Use selected');
    $this
      ->assertSession()
      ->pageTextContains('example.jpg');
    $button
      ->press();
    
    $this
      ->getSession()
      ->switchToIFrame();
    $this
      ->waitForAjaxToFinish();
    
    $this
      ->assertSession()
      ->waitForElementVisible('xpath', '//tr[@data-drupal-selector="edit-field-image-current-1"]');
    
    $this
      ->assertSession()
      ->pageTextContains('example.jpg');
    
    $alt_text = 'Test alt text.';
    $title_text = 'Test title text.';
    $this
      ->getSession()
      ->getPage()
      ->fillField('field_image[current][1][meta][alt]', $alt_text);
    $this
      ->getSession()
      ->getPage()
      ->fillField('field_image[current][1][meta][title]', $title_text);
    $this
      ->getSession()
      ->getPage()
      ->fillField('title[0][value]', 'Node 1');
    $this
      ->getSession()
      ->getPage()
      ->pressButton('Save');
    $this
      ->assertSession()
      ->pageTextContains('Article Node 1 has been created.');
    $node = Node::load(1);
    $saved_alt = $node
      ->get('field_image')[0]->alt;
    $this
      ->assertEquals($saved_alt, $alt_text);
    $saved_title = $node
      ->get('field_image')[0]->title;
    $this
      ->assertEquals($saved_title, $title_text);
    
    $this
      ->drupalGet('node/1/edit');
    $this
      ->assertSession()
      ->buttonExists('Remove');
    $this
      ->getSession()
      ->getPage()
      ->pressButton('Remove');
    $this
      ->waitForAjaxToFinish();
    
    $this
      ->assertSession()
      ->pageTextNotContains('example.jpg');
    $this
      ->assertSession()
      ->linkExists('Select entities');
    
    $test_files = $this
      ->getTestFiles('image');
    foreach ($test_files as $test_file) {
      if ($test_file->filename === 'image-test.jpg') {
        break;
      }
    }
    $file_system = $this->container
      ->get('file_system');
    $file_system
      ->copy($file_system
      ->realpath($test_file->uri), 'public://example2.jpg');
    $image2 = File::create([
      'uri' => 'public://example2.jpg',
    ]);
    $image2
      ->save();
    \Drupal::service('file.usage')
      ->add($image2, 'entity_browser', 'test', '1');
    $this
      ->drupalGet('node/1/edit');
    $this
      ->assertSession()
      ->buttonExists('Replace');
    $this
      ->getSession()
      ->getPage()
      ->pressButton('Replace');
    $this
      ->waitForAjaxToFinish();
    $this
      ->getSession()
      ->switchToIFrame('entity_browser_iframe_test_entity_browser_iframe_view');
    $this
      ->getSession()
      ->getPage()
      ->checkField('entity_browser_select[file:' . $image2
      ->id() . ']');
    $this
      ->getSession()
      ->getPage()
      ->pressButton('Select entities');
    $this
      ->getSession()
      ->getPage()
      ->pressButton('Use selected');
    $this
      ->getSession()
      ->wait(1000);
    $this
      ->getSession()
      ->switchToIFrame();
    $this
      ->waitForAjaxToFinish();
    
    $this
      ->assertSession()
      ->pageTextNotContains('example.jpg');
    $this
      ->assertSession()
      ->pageTextContains('example2.jpg');
  }
  
  public function testImageFieldSettings() {
    $root = \Drupal::root();
    $file_wrong_type = $root . '/core/misc/druplicon.png';
    $test_files = $this
      ->getTestFiles('image');
    $file_system = $this->container
      ->get('file_system');
    foreach ($test_files as $test_file) {
      if ($test_file->filename === 'image-test.jpg') {
        $file_just_right = $file_system
          ->realpath($test_file->uri);
      }
      elseif ($test_file->filename === 'image-2.jpg') {
        $file_too_big = $file_system
          ->realpath($test_file->uri);
      }
    }
    $this
      ->drupalGet('node/add/article');
    $this
      ->assertSession()
      ->linkExists('Select images');
    $this
      ->getSession()
      ->getPage()
      ->clickLink('Select images');
    $this
      ->getSession()
      ->switchToIFrame('entity_browser_iframe_test_entity_browser_iframe_view');
    
    $this
      ->clickLink('Upload images');
    
    $this
      ->getSession()
      ->getPage()
      ->attachFileToField('files[upload][]', $file_wrong_type);
    $this
      ->waitForAjaxToFinish();
    if (version_compare(\Drupal::VERSION, '8.7', '>=')) {
      $this
        ->assertSession()
        ->responseContains('Only files with the following extensions are allowed: <em class="placeholder">jpg</em>.');
      $this
        ->assertSession()
        ->responseContains('The selected file <em class="placeholder">druplicon.png</em> cannot be uploaded.');
    }
    else {
      $this
        ->assertSession()
        ->pageTextContains('Only files with the following extensions are allowed: jpg');
      $this
        ->assertSession()
        ->pageTextContains('The specified file druplicon.png could not be uploaded');
    }
    
    $this
      ->getSession()
      ->getPage()
      ->attachFileToField('files[upload][]', $file_too_big);
    $this
      ->waitForAjaxToFinish();
    $this
      ->assertSession()
      ->pageTextContains('The image was resized to fit within the maximum allowed dimensions of 40x40 pixels.');
    
    $this
      ->getSession()
      ->getPage()
      ->attachFileToField('files[upload][]', $file_just_right);
    $this
      ->waitForAjaxToFinish();
    $this
      ->getSession()
      ->getPage()
      ->pressButton('Select files');
    $this
      ->waitForAjaxToFinish();
    $button = $this
      ->assertSession()
      ->waitForButton('Use selected');
    $this
      ->assertSession()
      ->pageTextContains('image-test.jpg');
    $button
      ->press();
    $this
      ->waitForAjaxToFinish();
    
    $this
      ->getSession()
      ->switchToIFrame();
    $this
      ->waitForAjaxToFinish();
    $entity_id = $this
      ->getSession()
      ->evaluateScript('jQuery("#edit-field-image-wrapper [data-entity-id]").data("entity-id")');
    $this
      ->assertStringStartsWith('file:', $entity_id);
    
    $fid = explode(':', $entity_id)[1];
    $file = File::load($fid);
    $this
      ->assertStringContainsString('entity-browser-test', $file
      ->getFileUri());
  }
}