-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathStructTest.php
96 lines (78 loc) · 2.7 KB
/
StructTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
declare(strict_types=1);
namespace Nejcc\PhpDatatypes\Tests;
use InvalidArgumentException;
use Nejcc\PhpDatatypes\Composite\Struct\Struct;
use PHPUnit\Framework\TestCase;
class StructTest extends TestCase
{
public function testStructSetAndGet()
{
// Example 1
$struct = new Struct([
'name' => 'string',
'age' => '?int',
'balance' => 'float',
]);
// Test setting and getting field values using set/get methods
$struct->set('name', 'Nejc');
$struct->set('age', null); // Nullable type
$struct->set('balance', 100.50);
// Assertions
$this->assertEquals('Nejc', $struct->get('name'));
$this->assertNull($struct->get('age'));
$this->assertEquals(100.50, $struct->get('balance'));
}
public function testMagicMethods()
{
// Example 1 with magic methods
$struct = new Struct([
'name' => 'string',
'age' => '?int',
'balance' => 'float',
]);
// Test setting and getting field values using magic methods
$struct->name = 'John';
$struct->age = null;
$struct->balance = 200.75;
// Assertions
$this->assertEquals('John', $struct->name);
$this->assertNull($struct->age);
$this->assertEquals(200.75, $struct->balance);
}
public function testStructHelperFunction()
{
// Example 2: using the `struct()` helper function (assuming it is defined)
$struct = struct([
'name' => 'string',
'age' => '?int',
'balance' => 'float',
]);
// Test setting and getting field values using set/get methods
$struct->set('name', 'Test');
$struct->set('age', null);
$struct->set('balance', 100.50);
// Assertions
$this->assertEquals('Test', $struct->get('name'));
$this->assertNull($struct->get('age'));
$this->assertEquals(100.50, $struct->get('balance'));
}
public function testInvalidFieldThrowsException()
{
$struct = new Struct([
'name' => 'string',
]);
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage("Field 'age' does not exist in the struct.");
$struct->set('age', 25); // This should throw an exception
}
public function testInvalidTypeThrowsException()
{
$struct = new Struct([
'name' => 'string',
]);
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage("Field 'name' expects type 'string', but got 'int'.");
$struct->set('name', 123); // Invalid type
}
}