validReceipt(); $this->assertIsAtolable($receipt); } /** * Тестирует установку данных агента * * @return void * @covers \AtolOnline\Entities\Receipt::setAgentInfo * @covers \AtolOnline\Entities\Receipt::getAgentInfo * @covers \AtolOnline\Entities\Receipt::jsonSerialize * @throws EmptyItemNameException * @throws EmptyItemsException * @throws EmptyPaymentsException * @throws InvalidEntityInCollectionException * @throws InvalidEnumValueException * @throws NegativeItemPriceException * @throws NegativeItemQuantityException * @throws NegativePaymentSumException * @throws TooHighItemPriceException * @throws TooHighPaymentSumException * @throws TooLongItemNameException * @throws TooManyException * @throws InvalidInnLengthException * @throws InvalidPhoneException * @throws TooLongPayingAgentOperationException * @throws Exception */ public function testSetAgentInfo(): void { $agent_info = new AgentInfo( AgentTypes::ANOTHER, new PayingAgent('test', ['+79518888888']), new ReceivePaymentsOperator(['+79519999999']), new MoneyTransferOperator('MTO Name', '9876543210', 'London', ['+79517777777']), ); $receipt = $this->validReceipt()->setAgentInfo($agent_info); $this->assertArrayHasKey('agent_info', $receipt->jsonSerialize()); $this->assertEquals($receipt->getAgentInfo(), $receipt->jsonSerialize()['agent_info']); } /** * Тестирует выброс исключения при передаче пустой коллекции предметов расчёта * * @return void * @covers \AtolOnline\Entities\Receipt * @covers \AtolOnline\Entities\Receipt::setVats * @covers \AtolOnline\Collections\Items::checkCount * @covers \AtolOnline\Exceptions\EmptyItemsException * @throws InvalidEnumValueException * @throws NegativePaymentSumException * @throws TooHighPaymentSumException * @throws InvalidEntityInCollectionException * @throws EmptyPaymentsException */ public function testEmptyItemsException(): void { $this->expectException(EmptyItemsException::class); new Receipt( new Client('John Doe', 'john@example.com', '+1/22/99*73s dsdas654 5s6', '+fasd3\qe3fs_=nac99013928czc'), new Company('company@example.com', SnoTypes::OSN, '1234567890', 'https://example.com'), new Items([]), new Payments($this->generatePaymentObjects()) ); } /** * Тестирует выброс исключения при передаче коллекции предметов расчёта с некорректным содержимым * * @return void * @covers \AtolOnline\Entities\Receipt * @covers \AtolOnline\Entities\Receipt::setVats * @covers \AtolOnline\Collections\Items::checkItemsClasses * @covers \AtolOnline\Collections\Items::checkItemClass * @covers \AtolOnline\Exceptions\InvalidEntityInCollectionException * @throws EmptyItemsException * @throws EmptyPaymentsException * @throws InvalidEntityInCollectionException * @throws InvalidEnumValueException * @throws NegativePaymentSumException * @throws TooHighPaymentSumException */ public function testInvalidItemInCollectionException(): void { $this->expectException(InvalidEntityInCollectionException::class); $this->expectErrorMessage('Коллекция AtolOnline\Collections\Items должна содержать объекты AtolOnline\Entities\Item'); new Receipt( new Client('John Doe', 'john@example.com', '+1/22/99*73s dsdas654 5s6', '+fasd3\qe3fs_=nac99013928czc'), new Company('company@example.com', SnoTypes::OSN, '1234567890', 'https://example.com'), new Items(['qwerty']), new Payments($this->generatePaymentObjects()) ); } /** * Тестирует выброс исключения при передаче пустой коллекции оплат * * @return void * @covers \AtolOnline\Entities\Receipt * @covers \AtolOnline\Entities\Receipt::setPayments * @covers \AtolOnline\Collections\Payments::checkCount * @covers \AtolOnline\Exceptions\EmptyPaymentsException * @throws TooHighPaymentSumException * @throws EmptyItemNameException * @throws NegativeItemPriceException * @throws NegativeItemQuantityException * @throws TooHighItemPriceException * @throws TooLongItemNameException * @throws TooManyException * @throws InvalidEntityInCollectionException * @throws EmptyItemsException */ public function testEmptyPaymentsException(): void { $this->expectException(EmptyPaymentsException::class); new Receipt( new Client('John Doe', 'john@example.com', '+1/22/99*73s dsdas654 5s6', '+fasd3\qe3fs_=nac99013928czc'), new Company('company@example.com', SnoTypes::OSN, '1234567890', 'https://example.com'), new Items([new Item('test item', 2, 3)]), new Payments([]) ); } /** * Тестирует выброс исключения при передаче коллекции предметов расчёта с некорректным содержимым * * @return void * @covers \AtolOnline\Entities\Receipt * @covers \AtolOnline\Entities\Receipt::setVats * @covers \AtolOnline\Collections\Items::checkItemsClasses * @covers \AtolOnline\Collections\Items::checkItemClass * @covers \AtolOnline\Exceptions\InvalidEntityInCollectionException * @throws EmptyItemNameException * @throws EmptyItemsException * @throws EmptyPaymentsException * @throws InvalidEntityInCollectionException * @throws NegativeItemPriceException * @throws NegativeItemQuantityException * @throws TooHighItemPriceException * @throws TooLongItemNameException * @throws TooManyException */ public function testInvalidPaymentInCollectionException(): void { $this->expectException(InvalidEntityInCollectionException::class); $this->expectErrorMessage('Коллекция AtolOnline\Collections\Payments должна содержать объекты AtolOnline\Entities\Payment'); new Receipt( new Client('John Doe', 'john@example.com', '+1/22/99*73s dsdas654 5s6', '+fasd3\qe3fs_=nac99013928czc'), new Company('company@example.com', SnoTypes::OSN, '1234567890', 'https://example.com'), new Items([new Item('test item', 2, 3)]), new Payments(['qwerty']) ); } /** * Возвращает валидный тестовый объект чека * * @return Receipt * @throws EmptyItemNameException * @throws EmptyItemsException * @throws EmptyPaymentsException * @throws InvalidEntityInCollectionException * @throws InvalidEnumValueException * @throws NegativeItemPriceException * @throws NegativeItemQuantityException * @throws NegativePaymentSumException * @throws TooHighItemPriceException * @throws TooHighPaymentSumException * @throws TooLongItemNameException * @throws TooManyException */ protected function validReceipt(): Receipt { return new Receipt( new Client('John Doe', 'john@example.com', '+1/22/99*73s dsdas654 5s6', '+fasd3\qe3fs_=nac99013928czc'), new Company('company@example.com', SnoTypes::OSN, '1234567890', 'https://example.com'), new Items($this->generateItemObjects()), new Payments($this->generatePaymentObjects()) ); } }