10, ]; $api = $this->getApiMock(); $api->expects($this->once()) ->method('httpGet') ->with('/v3/lists/pages', $data) ->willReturn(new Response()); $api->pages(10); } public function testPagesInvalidArgument() { $this->setExpectedException(InvalidArgumentException::class); $api = $this->getApiMock(); $limit = -1; $api->pages($limit); } public function testCreate() { $data = [ 'address' => 'foo@example.com', 'name' => 'Foo', 'description' => 'Description', 'access_level' => 'readonly', ]; $api = $this->getApiMock(); $api->expects($this->once()) ->method('httpPost') ->with('/v3/lists', $data) ->willReturn(new Response()); $api->create($address = 'foo@example.com', $name = 'Foo', $description = 'Description', $accessLevel = 'readonly'); } public function testCreateInvalidAddress() { $this->setExpectedException(InvalidArgumentException::class); $api = $this->getApiMock(); $api->create($address = '', $name = 'Foo', $description = 'Description', $accessLevel = 'readonly'); } public function testCreateInvalidAccessLevel() { $this->setExpectedException(InvalidArgumentException::class); $api = $this->getApiMock(); $api->create($address = '', $name = 'Foo', $description = 'Description', $accessLevel = 'admin'); } public function testShow() { $api = $this->getApiMock(); $api->expects($this->once()) ->method('httpGet') ->with('/v3/lists/address') ->willReturn(new Response()); $api->show('address'); } public function testShowInvalidAddress() { $this->setExpectedException(InvalidArgumentException::class); $api = $this->getApiMock(); $api->show(''); } public function testUpdate() { $data = [ 'description' => 'desc', ]; $api = $this->getApiMock(); $api->expects($this->once()) ->method('httpPut') ->with('/v3/lists/address', $data) ->willReturn(new Response()); $api->update('address', $data); } public function testUpdateInvalidArgument() { $this->setExpectedException(InvalidArgumentException::class); $data = [ 'access_level' => 'foo', ]; $api = $this->getApiMock(); $api->update('address', $data); } public function testDelete() { $api = $this->getApiMock(); $api->expects($this->once()) ->method('httpDelete') ->with('/v3/lists/address') ->willReturn(new Response()); $api->delete('address'); } /** * {@inheritdoc} */ protected function getApiClass() { return MailingList::class; } }