You are here

class BreakpointTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/breakpoint/tests/src/Unit/BreakpointTest.php \Drupal\Tests\breakpoint\Unit\BreakpointTest

@coversDefaultClass \Drupal\breakpoint\Breakpoint @group Breakpoint

Hierarchy

  • class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase

Expanded class hierarchy of BreakpointTest

File

core/modules/breakpoint/tests/src/Unit/BreakpointTest.php, line 17
Contains \Drupal\Tests\breakpoint\Unit\BreakpointTest.

Namespace

Drupal\Tests\breakpoint\Unit
View source
class BreakpointTest extends UnitTestCase {

  /**
   * The used plugin ID.
   *
   * @var string
   */
  protected $pluginId = 'breakpoint';

  /**
   * The used plugin definition.
   *
   * @var array
   */
  protected $pluginDefinition = array(
    'id' => 'breakpoint',
  );

  /**
   * The breakpoint under test.
   *
   * @var \Drupal\breakpoint\Breakpoint
   */
  protected $breakpoint;

  /**
   * The mocked translator.
   *
   * @var \Drupal\Core\StringTranslation\TranslationInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $stringTranslation;
  protected function setUp() {
    parent::setUp();
    $this->stringTranslation = $this
      ->getMock('Drupal\\Core\\StringTranslation\\TranslationInterface');
  }

  /**
   * Sets up the breakpoint defaults.
   */
  protected function setupBreakpoint() {
    $this->breakpoint = new Breakpoint(array(), $this->pluginId, $this->pluginDefinition);
    $this->breakpoint
      ->setStringTranslation($this->stringTranslation);
  }

  /**
   * @covers ::getLabel
   */
  public function testGetLabel() {
    $this->pluginDefinition['label'] = 'Test label';
    $this->stringTranslation
      ->expects($this
      ->once())
      ->method('translate')
      ->with($this->pluginDefinition['label'], array(), array(
      'context' => 'breakpoint',
    ))
      ->will($this
      ->returnValue('Test label translated'));
    $this
      ->setupBreakpoint();
    $this
      ->assertEquals('Test label translated', $this->breakpoint
      ->getLabel());
  }

  /**
   * @covers ::getWeight
   */
  public function testGetWeight() {
    $this->pluginDefinition['weight'] = '4';
    $this
      ->setupBreakpoint();

    // Assert that the type returned in an integer.
    $this
      ->assertSame(4, $this->breakpoint
      ->getWeight());
  }

  /**
   * @covers ::getMediaQuery
   */
  public function testGetMediaQuery() {
    $this->pluginDefinition['mediaQuery'] = 'only screen and (min-width: 1220px)';
    $this
      ->setupBreakpoint();
    $this
      ->assertEquals('only screen and (min-width: 1220px)', $this->breakpoint
      ->getMediaQuery());
  }

  /**
   * @covers ::getMultipliers
   */
  public function testGetMultipliers() {
    $this->pluginDefinition['multipliers'] = array(
      '1x',
      '2x',
    );
    $this
      ->setupBreakpoint();
    $this
      ->assertSame(array(
      '1x',
      '2x',
    ), $this->breakpoint
      ->getMultipliers());
  }

  /**
   * @covers ::getProvider
   */
  public function testGetProvider() {
    $this->pluginDefinition['provider'] = 'Breakpoint';
    $this
      ->setupBreakpoint();
    $this
      ->assertEquals('Breakpoint', $this->breakpoint
      ->getProvider());
  }

  /**
   * @covers ::getGroup
   */
  public function testGetGroup() {
    $this->pluginDefinition['group'] = 'Breakpoint';
    $this
      ->setupBreakpoint();
    $this
      ->assertEquals('Breakpoint', $this->breakpoint
      ->getGroup());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BreakpointTest::$breakpoint protected property The breakpoint under test.
BreakpointTest::$pluginDefinition protected property The used plugin definition.
BreakpointTest::$pluginId protected property The used plugin ID.
BreakpointTest::$stringTranslation protected property The mocked translator.
BreakpointTest::setUp protected function Overrides UnitTestCase::setUp
BreakpointTest::setupBreakpoint protected function Sets up the breakpoint defaults.
BreakpointTest::testGetGroup public function @covers ::getGroup
BreakpointTest::testGetLabel public function @covers ::getLabel
BreakpointTest::testGetMediaQuery public function @covers ::getMediaQuery
BreakpointTest::testGetMultipliers public function @covers ::getMultipliers
BreakpointTest::testGetProvider public function @covers ::getProvider
BreakpointTest::testGetWeight public function @covers ::getWeight
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.