3 declare(strict_types=1);
7 require_once(
"libs/composer/vendor/autoload.php");
22 private ?Data\Factory
$f;
24 protected function setUp(): void
26 $this->f =
new Data\Factory();
36 $result = $this->f->ok(3.154);
37 $this->assertInstanceOf(Data\Result::class, $result);
38 $this->assertTrue($result->isOk());
39 $this->assertFalse($result->isError());
44 $result = $this->f->error(
"Something went wrong");
45 $this->assertInstanceOf(Data\Result::class, $result);
46 $this->assertTrue($result->isError());
47 $this->assertFalse($result->isOk());
52 $pwd = $this->f->password(
"secret");
53 $this->assertInstanceOf(Data\Password::class, $pwd);
58 $dataType = $this->f->alphanumeric(
'someValue');
59 $this->assertInstanceOf(Data\Alphanumeric::class, $dataType);
64 $dataType = $this->f->positiveInteger(100);
65 $this->assertInstanceOf(Data\PositiveInteger::class, $dataType);
70 $dataType = $this->f->dataSize(10,
"MB");
71 $this->assertInstanceOf(Data\DataSize::class, $dataType);
76 $dataType = $this->f->dataSize(
"10G");
77 $this->assertEquals(10, $dataType->getSize());
78 $this->assertEquals(Data\DataSize::GiB, $dataType->getUnit());
79 $this->assertEquals(10 * Data\DataSize::GiB, $dataType->inBytes());
80 $this->assertInstanceOf(Data\DataSize::class, $dataType);
Testing the faytory of result objects.