You are here

class WebformUiPathProcessorTest in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_ui/tests/src/Unit/WebformUiPathProcessorTest.php \Drupal\Tests\webform_ui\Unit\WebformUiPathProcessorTest

@coversDefaultClass \Drupal\webform_ui\PathProcessor\WebformUiPathProcessor @group webform_ui

Hierarchy

Expanded class hierarchy of WebformUiPathProcessorTest

File

modules/webform_ui/tests/src/Unit/WebformUiPathProcessorTest.php, line 13

Namespace

Drupal\Tests\webform_ui\Unit
View source
class WebformUiPathProcessorTest extends UnitTestCase {

  /**
   * The path process.
   *
   * @var \Drupal\webform_ui\PathProcessor\WebformUiPathProcessor
   */
  protected $pathProcessor;

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();
    $this->pathProcessor = new WebformUiPathProcessor();
  }

  /**
   * @covers ::processOutbound
   */
  public function testBasicPathsOnly() {
    $path = $this->pathProcessor
      ->processOutbound('/node');
    $this
      ->assertEquals('/node', $path);
    $path = $this->pathProcessor
      ->processOutbound('/admin/structure/webform/manage/contact');
    $this
      ->assertEquals('/admin/structure/webform/manage/contact', $path);
  }

  /**
   * @covers ::processOutbound
   */
  public function testUnmatchedQueryString() {
    $options = [];
    $request = $this
      ->getMockBuilder(Request::class)
      ->disableOriginalConstructor()
      ->getMock();
    $request
      ->method('getQueryString')
      ->willReturn('foo');
    $path = $this->pathProcessor
      ->processOutbound('/admin/structure/webform/manage/contact', $options, $request);
    $this
      ->assertEquals('/admin/structure/webform/manage/contact', $path);
    $this
      ->assertArrayNotHasKey('query', $options);
  }

  /**
   * @covers ::processOutbound
   */
  public function testMatchedQueryString() {
    $options = [];
    $request = $this
      ->getMockBuilder(Request::class)
      ->disableOriginalConstructor()
      ->getMock();
    $request
      ->method('getQueryString')
      ->willReturn('_wrapper_format=drupal_dialog&destination=/admin/structure/webform');
    $path = $this->pathProcessor
      ->processOutbound('/admin/structure/webform/manage/contact', $options, $request);
    $this
      ->assertEquals('/admin/structure/webform/manage/contact', $path);
    $this
      ->assertArrayHasKey('query', $options);
    $this
      ->assertArrayHasKey('destination', $options['query']);
    $this
      ->assertEquals('/admin/structure/webform', $options['query']['destination']);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed 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.
WebformUiPathProcessorTest::$pathProcessor protected property The path process.
WebformUiPathProcessorTest::setUp public function Overrides UnitTestCase::setUp
WebformUiPathProcessorTest::testBasicPathsOnly public function @covers ::processOutbound
WebformUiPathProcessorTest::testMatchedQueryString public function @covers ::processOutbound
WebformUiPathProcessorTest::testUnmatchedQueryString public function @covers ::processOutbound