You are here

ConfigImportUploadTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/config/src/Tests/ConfigImportUploadTest.php

File

core/modules/config/src/Tests/ConfigImportUploadTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\config\Tests\ConfigImportUploadTest.
 */
namespace Drupal\config\Tests;

use Drupal\simpletest\WebTestBase;

/**
 * Tests importing configuration from an uploaded file.
 *
 * @group config
 */
class ConfigImportUploadTest extends WebTestBase {

  /**
   * A user with the 'import configuration' permission.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $webUser;

  /**
   * Modules to install.
   *
   * @var array
   */
  public static $modules = array(
    'config',
  );
  protected function setUp() {
    parent::setUp();
    $this->webUser = $this
      ->drupalCreateUser(array(
      'import configuration',
    ));
    $this
      ->drupalLogin($this->webUser);
  }

  /**
   * Tests importing configuration.
   */
  function testImport() {

    // Verify access to the config upload form.
    $this
      ->drupalGet('admin/config/development/configuration/full/import');
    $this
      ->assertResponse(200);

    // Attempt to upload a non-tar file.
    $text_file = current($this
      ->drupalGetTestFiles('text'));
    $edit = array(
      'files[import_tarball]' => drupal_realpath($text_file->uri),
    );
    $this
      ->drupalPostForm('admin/config/development/configuration/full/import', $edit, t('Upload'));
    $this
      ->assertText(t('Could not extract the contents of the tar file'));
  }

}

Classes

Namesort descending Description
ConfigImportUploadTest Tests importing configuration from an uploaded file.