class ClientFactoryTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Http/ClientFactoryTest.php \Drupal\Tests\Core\Http\ClientFactoryTest
@coversDefaultClass \Drupal\Core\Http\ClientFactory @group Http
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Http\ClientFactoryTest
Expanded class hierarchy of ClientFactoryTest
File
- core/
tests/ Drupal/ Tests/ Core/ Http/ ClientFactoryTest.php, line 18 - Contains \Drupal\Tests\Core\Http\ClientFactoryTest.
Namespace
Drupal\Tests\Core\HttpView source
class ClientFactoryTest extends UnitTestCase {
/**
* The client factory under test.
*
* @var \Drupal\Core\Http\ClientFactory
*/
protected $factory;
/**
* {@inheritdoc}
*/
public function setUp() {
$stack = $this
->getMockBuilder('GuzzleHttp\\HandlerStack')
->disableOriginalConstructor()
->getMock();
$this->factory = new ClientFactory($stack);
}
/**
* @covers ::fromOptions
* @dataProvider providerTestCreateFromOptions
*
* @param array $settings_config
* @param array $parameter_config
* @param array $expected_config_keys
*/
public function testCreateFromOptions($settings_config, $parameter_config, $expected_config_keys) {
if ($settings_config) {
new Settings([
'http_client_config' => $settings_config,
]);
}
else {
new Settings([]);
}
$client = $this->factory
->fromOptions($parameter_config);
foreach ($expected_config_keys as $key => $expected) {
$this
->assertSame($expected, $client
->getConfig($key));
}
}
/**
* Data provider for testCreateFromOptions
*
* @return array
*/
public function providerTestCreateFromOptions() {
return [
[
[],
[],
[
'verify' => TRUE,
'timeout' => 30,
],
],
[
[
'timeout' => 40,
],
[],
[
'verify' => TRUE,
'timeout' => 40,
],
],
[
[],
[
'timeout' => 50,
],
[
'verify' => TRUE,
'timeout' => 50,
],
],
[
[
'timeout' => 40,
],
[
'timeout' => 50,
],
[
'verify' => TRUE,
'timeout' => 50,
],
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ClientFactoryTest:: |
protected | property | The client factory under test. | |
ClientFactoryTest:: |
public | function | Data provider for testCreateFromOptions | |
ClientFactoryTest:: |
public | function |
Overrides UnitTestCase:: |
|
ClientFactoryTest:: |
public | function | @covers ::fromOptions @dataProvider providerTestCreateFromOptions | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in 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. |