class ProviderUrlParseTest in Video Embed Facebook 8
Test that URL parsing for the provider is functioning.
@group video_embed_facebook
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\video_embed_facebook\Unit\ProviderUrlParseTest
Expanded class hierarchy of ProviderUrlParseTest
File
- tests/
src/ Unit/ ProviderUrlParseTest.php, line 13
Namespace
Drupal\Tests\video_embed_facebook\UnitView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
ProviderUrlParseTest:: |
public | function | @dataProvider urlsWithExpectedIds | |
ProviderUrlParseTest:: |
public | function | A data provider for URL parsing test cases. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 340 |