object = $this->getMockBuilder(ConfirmationAttributesQr::class)->getMockForAbstractClass(); $this->assertTrue(class_exists(ConfirmationAttributesQr::class)); $this->assertInstanceOf(ConfirmationAttributesQr::class, $this->object); } /** * Test property "type" * * @return void * @throws Exception */ public function testType(): void { $instance = $this->getTestInstance(); self::assertNotNull($instance->getType()); self::assertNotNull($instance->type); self::assertContains($instance->getType(), ['qr']); self::assertContains($instance->type, ['qr']); } /** * Test invalid property "type" * @dataProvider invalidTypeDataProvider * @param mixed $value * @param string $exceptionClass * * @return void */ public function testInvalidType(mixed $value, string $exceptionClass): void { $instance = $this->getTestInstance(); $this->expectException($exceptionClass); $instance->setType($value); } /** * @return array[] * @throws Exception */ public function invalidTypeDataProvider(): array { $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_type')); } /** * Test property "return_url" * @dataProvider validReturnUrlDataProvider * @param mixed $value * * @return void * @throws Exception */ public function testReturnUrl(mixed $value): void { $instance = $this->getTestInstance(); self::assertEmpty($instance->getReturnUrl()); self::assertEmpty($instance->return_url); $instance->setReturnUrl($value); self::assertEquals($value, is_array($value) ? $instance->getReturnUrl()->toArray() : $instance->getReturnUrl()); self::assertEquals($value, is_array($value) ? $instance->return_url->toArray() : $instance->return_url); if (!empty($value)) { self::assertNotNull($instance->getReturnUrl()); self::assertNotNull($instance->return_url); self::assertLessThanOrEqual(1024, is_string($instance->getReturnUrl()) ? mb_strlen($instance->getReturnUrl()) : $instance->getReturnUrl()); self::assertLessThanOrEqual(1024, is_string($instance->return_url) ? mb_strlen($instance->return_url) : $instance->return_url); } } /** * Test invalid property "return_url" * @dataProvider invalidReturnUrlDataProvider * @param mixed $value * @param string $exceptionClass * * @return void */ public function testInvalidReturnUrl(mixed $value, string $exceptionClass): void { $instance = $this->getTestInstance(); $this->expectException($exceptionClass); $instance->setReturnUrl($value); } /** * @return array[] * @throws Exception */ public function validReturnUrlDataProvider(): array { $instance = $this->getTestInstance(); return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_return_url')); } /** * @return array[] * @throws Exception */ public function invalidReturnUrlDataProvider(): array { $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_return_url')); } }