application_key = getenv('APP_KEY'); $this->application_secret = getenv('APP_SECRET'); $this->consumer_key = getenv('CONSUMER'); $this->endpoint = getenv('ENDPOINT'); $this->rangeIP = '127.0.0.20/32'; $this->alternativeRangeIP = '127.0.0.30/32'; $this->client = new Client(); $this->api = new Api( $this->application_key, $this->application_secret, $this->endpoint, $this->consumer_key, $this->client ); } /** * Get private and protected method to unit test it * * @param string $name * * @return \ReflectionMethod */ protected static function getPrivateMethod($name) { $class = new \ReflectionClass('Ovh\Api'); $method = $class->getMethod($name); $method->setAccessible(true); return $method; } /** * Get private and protected property to unit test it * * @param string $name * * @return \ReflectionProperty */ protected static function getPrivateProperty($name) { $class = new \ReflectionClass('Ovh\Api'); $property = $class->getProperty($name); $property->setAccessible(true); return $property; } /** * Test if result contains consumerKey and validationUrl */ public function testIfConsumerKeyIsReplace() { $property = self::getPrivateProperty('consumer_key'); $accessRules = json_decode(' [ { "method": "GET", "path": "/*" }, { "method": "POST", "path": "/*" }, { "method": "PUT", "path": "/*" }, { "method": "DELETE", "path": "/*" } ] '); $credentials = $this->api->requestCredentials($accessRules); $consumer_key = $property->getValue($this->api); $this->assertEquals($consumer_key, $credentials["consumerKey"]); $this->assertNotEquals($consumer_key, $this->consumer_key); } /** * Test if post request on me */ public function testPostRestrictionAccessIp() { $this->assertNull( $this->api->post('/me/accessRestriction/ip', ['ip' => $this->rangeIP, 'rule' => 'deny', 'warning' => true]) ); $this->assertNull( $this->api->post('/me/accessRestriction/ip', ['ip' => $this->alternativeRangeIP, 'rule' => 'deny', 'warning' => true, ]) ); } /** * Test if get request on /me */ public function testGetRestrictionAccessIP() { $result = $this->api->get('/me/accessRestriction/ip'); $restrictionIps = []; foreach ($result as $restrictionId) { $restriction = $this->api->get('/me/accessRestriction/ip/' . $restrictionId); $restrictionIps[] = $restriction['ip']; } $this->assertContains($this->rangeIP, $restrictionIps); $this->assertContains($this->alternativeRangeIP, $restrictionIps); } /** * Test if delete request on /me */ public function testPutRestrictionAccessIP() { $result = $this->api->get('/me/accessRestriction/ip'); $restrictionId = array_pop($result); $this->assertNull( $this->api->put('/me/accessRestriction/ip/' . $restrictionId, ['rule' => 'accept', 'warning' => true]) ); $restriction = $this->api->get('/me/accessRestriction/ip/' . $restrictionId); $this->assertEquals('accept', $restriction['rule']); } /** * Test if delete request on /me */ public function testDeleteRestrictionAccessIP() { $result = $this->api->get('/me/accessRestriction/ip'); foreach ($result as $restrictionId) { $restriction = $this->api->get('/me/accessRestriction/ip/' . $restrictionId); if (in_array($restriction["ip"], [$this->rangeIP, $this->alternativeRangeIP])) { $result = $this->api->delete('/me/accessRestriction/ip/' . $restrictionId); $this->assertNull($result); break; } } } /** * Test if request without authentication works */ public function testIfRequestWithoutAuthenticationWorks() { $api = new Api($this->application_key, $this->application_secret, $this->endpoint, null, $this->client); $invoker = self::getPrivateMethod('rawCall'); $invoker->invokeArgs($api, ['GET', '/xdsl/incidents']); } /** * Test Api::get */ public function testApiGetWithParameters() { $this->expectException(ClientException::class); $this->api->get('/me/accessRestriction/ip', ['foo' => 'bar']); } /** * Test Api::get, should build valide signature */ public function testApiGetWithQueryString() { $this->api->get('/me/api/credential', ['status' => 'pendingValidation']); } /** * Test APi::get without authentication */ public function testApiGetWithoutAuthentication() { $api = new Api(NULL,NULL, $this->endpoint, null, $this->client); $api->get('/hosting/web/moduleList',null,null,false); } }