You are here

LocaleTranslateStringTourTest.php in Zircon Profile 8

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

File

core/modules/locale/src/Tests/LocaleTranslateStringTourTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\locale\Tests\LocaleTranslateStringTourTest.
 */
namespace Drupal\locale\Tests;

use Drupal\tour\Tests\TourTestBase;

/**
 * Tests the Translate Interface tour.
 *
 * @group locale
 */
class LocaleTranslateStringTourTest extends TourTestBase {

  /**
   * An admin user with administrative permissions to translate.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $adminUser;

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'locale',
    'tour',
  );

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->adminUser = $this
      ->drupalCreateUser(array(
      'translate interface',
      'access tour',
      'administer languages',
    ));
    $this
      ->drupalLogin($this->adminUser);
  }

  /**
   * Tests locale tour tip availability.
   */
  public function testTranslateStringTourTips() {

    // Add another language so there are no missing form items.
    $edit = array();
    $edit['predefined_langcode'] = 'es';
    $this
      ->drupalPostForm('admin/config/regional/language/add', $edit, t('Add language'));
    $this
      ->drupalGet('admin/config/regional/translate');
    $this
      ->assertTourTips();
  }

}

Classes

Namesort descending Description
LocaleTranslateStringTourTest Tests the Translate Interface tour.