File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/twilio/sdk/Twilio/Tests/Unit/Rest/ClientTest.php
Back
<?php namespace Twilio\Tests\Unit\Rest; use Twilio\Rest\Client; use Twilio\Tests\Holodeck; use Twilio\Tests\Request; use Twilio\Tests\Unit\UnitTest; class ClientTest extends UnitTest { /** * @expectedException \Twilio\Exceptions\ConfigurationException */ public function testThrowsWhenUsernameAndPasswordMissing() { new Client(null, null, null, null, null, array()); } /** * @expectedException \Twilio\Exceptions\ConfigurationException */ public function testThrowsWhenUsernameMissing() { new Client(null, 'password', null, null, null, array()); } /** * @expectedException \Twilio\Exceptions\ConfigurationException */ public function testThrowsWhenPasswordMissing() { new Client('username', null, null, null, null, array()); } public function testUsernamePulledFromEnvironment() { $client = new Client(null, 'password', null, null, null, array( Client::ENV_ACCOUNT_SID => 'username', )); $this->assertEquals('username', $client->getUsername()); } public function testPasswordPulledFromEnvironment() { $client = new Client('username', null, null, null, null, array( Client::ENV_AUTH_TOKEN => 'password', )); $this->assertEquals('password', $client->getPassword()); } public function testUsernameAndPasswordPulledFromEnvironment() { $client = new Client(null, null, null, null, null, array( Client::ENV_ACCOUNT_SID => 'username', Client::ENV_AUTH_TOKEN => 'password', )); $this->assertEquals('username', $client->getUsername()); $this->assertEquals('password', $client->getPassword()); } public function testUsernameParameterPreferredOverEnvironment() { $client = new Client('username', 'password', null, null, null, array( Client::ENV_ACCOUNT_SID => 'environmentUsername', )); $this->assertEquals('username', $client->getUsername()); } public function testPasswordParameterPreferredOverEnvironment() { $client = new Client('username', 'password', null, null, null, array( Client::ENV_AUTH_TOKEN => 'environmentPassword', )); $this->assertEquals('password', $client->getPassword()); } public function testUsernameAndPasswordParametersPreferredOverEnvironment() { $client = new Client('username', 'password', null, null, null, array( Client::ENV_ACCOUNT_SID => 'environmentUsername', Client::ENV_AUTH_TOKEN => 'environmentPassword', )); $this->assertEquals('username', $client->getUsername()); $this->assertEquals('password', $client->getPassword()); } public function testAccountSidDefaultsToUsername() { $client = new Client('username', 'password'); $this->assertEquals('username', $client->getAccountSid()); } public function testAccountSidPreferredOverUsername() { $client = new Client('username', 'password', 'accountSid'); $this->assertEquals('accountSid', $client->getAccountSid()); } public function testRegionDefaultsToEmpty() { $network = new Holodeck(); $client = new Client('username', 'password', null, null, $network); $client->request('POST', 'https://test.twilio.com/v1/Resources'); $expected = new Request('POST', 'https://test.twilio.com/v1/Resources'); $this->assertTrue($network->hasRequest($expected)); } public function testRegionInjectedWhenSet() { $network = new Holodeck(); $client = new Client('username', 'password', null, 'ie1', $network); $client->request('POST', 'https://test.twilio.com/v1/Resources'); $expected = new Request('POST', 'https://test.ie1.twilio.com/v1/Resources'); $this->assertTrue($network->hasRequest($expected)); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.03 |
proxy
|
phpinfo
|
Settings