response = new class() extends ResponseAbstract { public function toArray() : array { return [1]; } public function getBody(bool $optimize = false) : string { return ''; } }; } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The response has the expected default values after initialization')] public function testDefault() : void { self::assertNull($this->response->getData('asdf')); self::assertEquals('', $this->response->getBody()); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The response can be json serialized')] public function testJsonSerialize() : void { self::assertEquals([1], $this->response->jsonSerialize()); } public function testDataAllInputOutput() : void { $this->response->set('asdf', false); self::assertEquals(['asdf' => false], $this->response->getData()); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Data can be set and returned for the response')] public function testDataInputOutput() : void { $this->response->set('asdf', false); self::assertFalse($this->response->getData('asdf')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Data can be set and returned for the response')] public function testDataStringInputOutput() : void { $this->response->set('asdf', 1); self::assertEquals('1', $this->response->getDataString('asdf')); self::assertEquals('1', $this->response->getData('asdf', 'string')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Data can be set and returned for the response')] public function testDataBoolInputOutput() : void { $this->response->set('asdf', 1); self::assertTrue($this->response->getDataBool('asdf')); self::assertTrue($this->response->getData('asdf', 'bool')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Data can be set and returned for the response')] public function testDataFloatInputOutput() : void { $this->response->set('asdf', 1); self::assertEquals(1.0, $this->response->getDataFloat('asdf')); self::assertEquals(1.0, $this->response->getData('asdf', 'float')); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testDataJsonInputOutput() : void { $this->response->set('asdf', '[1,2,3]'); self::assertEquals([1,2,3], $this->response->getDataJson('asdf')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Data can be set and returned for the response')] public function testDataDateTimeInputOutput() : void { $this->response->set('asdf', '2023-01-01'); self::assertEquals((new \DateTime('2023-01-01'))->format('Y-m-d'), $this->response->getDataDateTime('asdf')->format('Y-m-d')); self::assertEquals((new \DateTime('2023-01-01'))->format('Y-m-d'), $this->response->getData('asdf', 'DateTime')->format('Y-m-d')); } public function testDataInvalidTypeInputOutput() : void { $this->response->set('asdf', 1); self::assertEquals(1, $this->response->getData('asdf', 'invalid')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Data can be set and returned for the response')] public function testInvalidDataTypeInputOutput() : void { self::assertNull($this->response->getDataString('a')); self::assertNull($this->response->getDataBool('a')); self::assertNull($this->response->getDataInt('a')); self::assertNull($this->response->getDataFloat('a')); self::assertNull($this->response->getDataDateTime('a')); } }