-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFloatArrayTest.php
160 lines (137 loc) · 4.68 KB
/
FloatArrayTest.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
declare(strict_types=1);
namespace Nejcc\PhpDatatypes\Tests;
use Nejcc\PhpDatatypes\Composite\Arrays\FloatArray;
use Nejcc\PhpDatatypes\Exceptions\InvalidFloatException;
use PHPUnit\Framework\TestCase;
class FloatArrayTest extends TestCase
{
/**
* Test creating a valid FloatArray instance.
* @throws InvalidFloatException
*/
public function testCreateValidFloatArray(): void
{
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
$this->assertSame([10.5, 20.1, 30.7], $floatArray->getValue());
}
/**
* Test creating a FloatArray with invalid float values.
*/
public function testCreateInvalidFloatArray(): void
{
$this->expectException(InvalidFloatException::class);
$this->expectExceptionMessage("All elements must be floats. Invalid value: 1");
new FloatArray([10.5, 1, 'not a float']); // Invalid non-float values
}
/**
* Test adding floats to a FloatArray.
* @throws InvalidFloatException
*/
public function testAddFloats(): void
{
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
$newFloatArray = $floatArray->add(40.2, 50.3);
$this->assertSame([10.5, 20.1, 30.7, 40.2, 50.3], $newFloatArray->getValue());
}
/**
* Test removing floats from a FloatArray.
* @throws InvalidFloatException
*/
public function testRemoveFloats(): void
{
$floatArray = new FloatArray([10.5, 20.1, 30.7, 40.2]);
$modifiedFloatArray = $floatArray->remove(20.1, 30.7);
$this->assertSame([10.5, 40.2], $modifiedFloatArray->getValue());
}
/**
* Test calculating the sum of floats.
* @throws InvalidFloatException
*/
public function testSumOfFloats(): void
{
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
$this->assertSame(61.3, $floatArray->sum());
}
/**
* Test calculating the average of floats.
* @throws InvalidFloatException
*/
public function testAverageOfFloats(): void
{
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
$this->assertSame(20.433333333333334, $floatArray->average());
}
/**
* Test calculating the average of an empty FloatArray.
*/
public function testAverageOfEmptyFloatArray(): void
{
$this->expectException(InvalidFloatException::class);
$this->expectExceptionMessage("Cannot calculate average of an empty array.");
$floatArray = new FloatArray([]);
$floatArray->average(); // Should throw exception
}
/**
* Test getting the count of floats in a FloatArray.
* @throws InvalidFloatException
*/
public function testGetFloatCount(): void
{
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
$this->assertCount(3, $floatArray);
}
/**
* Test ArrayAccess implementation for accessing a float at a specific index.
* @throws InvalidFloatException
*/
public function testArrayAccessGet(): void
{
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
$this->assertSame(20.1, $floatArray[1]);
$this->assertNull($floatArray[999]); // Accessing an invalid index returns null
}
/**
* Test ArrayAccess prevents modification of FloatArray.
*/
public function testArrayAccessSetThrowsException(): void
{
$this->expectException(InvalidFloatException::class);
$this->expectExceptionMessage("Cannot modify an immutable FloatArray.");
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
$floatArray[1] = 50.3; // Should throw exception
}
/**
* Test ArrayAccess prevents unsetting a float in FloatArray.
*/
public function testArrayAccessUnsetThrowsException(): void
{
$this->expectException(InvalidFloatException::class);
$this->expectExceptionMessage("Cannot unset a value in an immutable FloatArray.");
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
unset($floatArray[1]); // Should throw exception
}
/**
* Test iterating over FloatArray with IteratorAggregate.
* @throws InvalidFloatException
*/
public function testIterationOverFloatArray(): void
{
$floatArray = new FloatArray([10.5, 20.1, 30.7]);
$result = [];
foreach ($floatArray as $float) {
$result[] = $float;
}
$this->assertSame([10.5, 20.1, 30.7], $result);
}
/**
* Test creating an empty FloatArray.
* @throws InvalidFloatException
*/
public function testEmptyFloatArray(): void
{
$floatArray = new FloatArray([]);
$this->assertSame([], $floatArray->getValue());
$this->assertCount(0, $floatArray);
}
}