'app' ]); $body = file_get_contents(__DIR__ . '/../Mocks/applicationCreateResponse.json'); $this->mock(new PlivoResponse($request,201, $body)); $actual = $this->client->applications->create('app'); $this->assertRequest($request); self::assertNotNull($actual); self::assertEquals($actual->_message, "created"); self::assertEquals($actual->appId, "20468599130939380"); self::assertEquals($actual->apiId, "99f9d6f6-3f08-11e7-9fd1-06660ad2b8e6"); } function testApplicationList() { $request = new PlivoRequest( 'GET', 'Account/MAXXXXXXXXXXXXXXXXXX/Application/', []); $body = file_get_contents(__DIR__ . '/../Mocks/applicationListResponse.json'); $this->mock(new PlivoResponse($request,200, $body)); $actual = $this->client->applications->list; $this->assertRequest($request); self::assertNotNull($actual); foreach ($actual as $actualApplication) { self::assertEquals(substr($actualApplication->resourceUri, 0, 33), "/v1/Account/MAXXXXXXXXXXXXXXXXXX/"); } } function testApplicationDetails() { $request = new PlivoRequest( 'GET', 'Account/MAXXXXXXXXXXXXXXXXXX/Application/20468599130939380/', []); $body = file_get_contents(__DIR__ . '/../Mocks/applicationGetResponse.json'); $this->mock(new PlivoResponse($request,200, $body)); $actual = $this->client->applications->get("20468599130939380"); $this->assertRequest($request); self::assertNotNull($actual); self::assertEquals($actual->getId(), "20468599130939380"); } function testApplicationUpdate() { $request = new PlivoRequest( 'POST', 'Account/MAXXXXXXXXXXXXXXXXXX/Application/app/', [ 'subaccount' => "name" ]); $body = file_get_contents(__DIR__ . '/../Mocks/applicationModifyResponse.json'); $this->mock(new PlivoResponse($request,200, $body)); $actual = $this->client->applications->update("app", ['subaccount'=>'name']); $this->assertRequest($request); self::assertNotNull($actual); self::assertEquals($actual->apiId, "9b43ea74-3f08-11e7-8bc8-065f6a74a84a"); self::assertEquals($actual->message, "changed"); } }