MediaTypeCreationTest.php

Same filename in this branch
  1. 8.9.x core/modules/media/tests/src/FunctionalJavascript/MediaTypeCreationTest.php
Same filename and directory in other branches
  1. 9 core/modules/media/tests/src/FunctionalJavascript/MediaTypeCreationTest.php
  2. 9 core/modules/media/tests/src/Functional/MediaTypeCreationTest.php
  3. 10 core/modules/media/tests/src/FunctionalJavascript/MediaTypeCreationTest.php
  4. 10 core/modules/media/tests/src/Functional/MediaTypeCreationTest.php
  5. 11.x core/modules/media/tests/src/FunctionalJavascript/MediaTypeCreationTest.php
  6. 11.x core/modules/media/tests/src/Functional/MediaTypeCreationTest.php

Namespace

Drupal\Tests\media\Functional

File

core/modules/media/tests/src/Functional/MediaTypeCreationTest.php

View source
<?php

namespace Drupal\Tests\media\Functional;

use Drupal\media\Entity\MediaType;

/**
 * Ensures that media UI works correctly without JavaScript.
 *
 * @group media
 */
class MediaTypeCreationTest extends MediaFunctionalTestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'media_test_source',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * Tests the media type creation form with only the mandatory options.
     */
    public function testMediaTypeCreationForm() {
        $machine_name = mb_strtolower($this->randomMachineName());
        $this->drupalGet('/admin/structure/media/add');
        $this->assertSession()
            ->statusCodeEquals(200);
        $this->assertSession()
            ->fieldExists('label')
            ->setValue($this->randomString());
        $this->assertSession()
            ->fieldExists('id')
            ->setValue($machine_name);
        $this->assertSession()
            ->selectExists('source')
            ->selectOption('test');
        $this->assertSession()
            ->buttonExists('Save')
            ->press();
        $this->assertSession()
            ->statusCodeEquals(200);
        $this->assertSession()
            ->fieldValueEquals('Test config value', 'This is default value.');
        $this->assertSession()
            ->buttonExists('Save')
            ->press();
        $this->assertSession()
            ->statusCodeEquals(200);
        $this->assertSession()
            ->addressEquals('admin/structure/media');
        $this->assertInstanceOf(MediaType::class, MediaType::load($machine_name));
    }

}

Classes

Title Deprecated Summary
MediaTypeCreationTest Ensures that media UI works correctly without JavaScript.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.