You are here

class ProviderUrlParseTest in Video Embed Facebook 8

Test that URL parsing for the provider is functioning.

@group video_embed_facebook

Hierarchy

Expanded class hierarchy of ProviderUrlParseTest

File

tests/src/Unit/ProviderUrlParseTest.php, line 13

Namespace

Drupal\Tests\video_embed_facebook\Unit
View source
class ProviderUrlParseTest extends UnitTestCase {

  /**
   * @dataProvider urlsWithExpectedIds
   *
   * Test URL parsing works as expected.
   */
  public function testUrlParsing($url, $expected) {
    $this
      ->assertEquals($expected, Facebook::getIdFromInput($url));
  }

  /**
   * A data provider for URL parsing test cases.
   *
   * @return array
   *   An array of test cases.
   */
  public function urlsWithExpectedIds() {
    return [
      [
        'https://www.facebook.com/viralthreaddotcom/videos/925673600907816/',
        '925673600907816',
      ],
      [
        'http://www.facebook.com/viralthreaddotcom/videos/925673600907816/',
        '925673600907816',
      ],
      [
        'http://facebook.com/viralthreaddotcom/videos/925673600907816/',
        '925673600907816',
      ],
      [
        'http://facebook.com/viralthreaddotcom/videos/925673600907816',
        '925673600907816',
      ],
      [
        'http://facebook.com/viralthreaddotcom/videos/925673600907816',
        '925673600907816',
      ],
      [
        'https://www.facebook.com/Departement.Gironde/videos/1112970215438894',
        '1112970215438894',
      ],
      [
        'https://www.facebook.com/CoD3Rs/videos/123123',
        '123123',
      ],
      [
        'https://www.facebook.com/video.php?v=925673600907816',
        '925673600907816',
      ],
      [
        'https://www.facebook.com/video.php?v=123ABC',
        FALSE,
      ],
      [
        'https://www.facebook.com/viralthreaddotcom/notvideos/925673600907816/',
        FALSE,
      ],
      [
        'https://www.facebook.com/videos/925673600907816/',
        FALSE,
      ],
      [
        'https://www.facebook.com/925673600907816/',
        FALSE,
      ],
    ];
  }

}

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.
ProviderUrlParseTest::testUrlParsing public function @dataProvider urlsWithExpectedIds
ProviderUrlParseTest::urlsWithExpectedIds public function A data provider for URL parsing test cases.
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.
UnitTestCase::setUp protected function 340