-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathStringArrayTest.php
147 lines (118 loc) · 4.75 KB
/
StringArrayTest.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
<?php
declare(strict_types=1);
namespace Nejcc\PhpDatatypes\Tests;
use Nejcc\PhpDatatypes\Composite\Arrays\StringArray;
use Nejcc\PhpDatatypes\Exceptions\InvalidStringException;
use PHPUnit\Framework\TestCase;
class StringArrayTest extends TestCase
{
public function testCreateValidStringArray(): void
{
$array = new StringArray(['apple', 'banana', 'cherry']);
$this->assertEquals(['apple', 'banana', 'cherry'], $array->getValue());
}
public function testInvalidStringArrayThrowsException(): void
{
$this->expectException(InvalidStringException::class);
new StringArray(['apple', 123, 'cherry']); // Integer value should throw an exception
}
public function testAddStringToNewInstance(): void
{
$array = new StringArray(['apple', 'banana']);
$newArray = $array->add('cherry');
$this->assertNotSame($array, $newArray); // Ensure immutability
$this->assertEquals(['apple', 'banana'], $array->getValue());
$this->assertEquals(['apple', 'banana', 'cherry'], $newArray->getValue());
}
public function testRemoveStringFromArray(): void
{
$array = new StringArray(['apple', 'banana', 'cherry']);
$newArray = $array->remove('banana');
$this->assertNotSame($array, $newArray); // Ensure immutability
$this->assertEquals(['apple', 'banana', 'cherry'], $array->getValue());
$this->assertEquals(['apple', 'cherry'], $newArray->getValue());
}
public function testRemoveNonExistentStringDoesNothing(): void
{
$array = new StringArray(['apple', 'banana', 'cherry']);
$newArray = $array->remove('pear');
// Check that the values are still the same (immutability)
$this->assertEquals($array->getValue(), $newArray->getValue());
}
public function testContains(): void
{
$array = new StringArray(['apple', 'banana', 'cherry']);
$this->assertTrue($array->contains('banana'));
$this->assertFalse($array->contains('pear'));
}
public function testCountStrings(): void
{
$array = new StringArray(['apple', 'banana', 'cherry']);
$this->assertEquals(3, $array->count());
}
public function testToString(): void
{
$array = new StringArray(['apple', 'banana', 'cherry']);
$this->assertEquals('apple, banana, cherry', $array->toString());
$this->assertEquals('apple|banana|cherry', $array->toString('|'));
}
public function testFilterByPrefix(): void
{
$array = new StringArray(['apple', 'banana', 'apricot']);
$filtered = $array->filterByPrefix('ap');
$this->assertEquals(['apple', 'apricot'], $filtered);
}
public function testFilterBySubstring(): void
{
$array = new StringArray(['apple', 'banana', 'pineapple']);
$filtered = $array->filterBySubstring('apple');
$this->assertEquals(['apple', 'pineapple'], $filtered);
}
public function testToUpperCase(): void
{
$array = new StringArray(['apple', 'banana']);
$newArray = $array->toUpperCase();
$this->assertNotSame($array, $newArray); // Ensure immutability
$this->assertEquals(['APPLE', 'BANANA'], $newArray->getValue());
}
public function testToLowerCase(): void
{
$array = new StringArray(['APPLE', 'BANANA']);
$newArray = $array->toLowerCase();
$this->assertNotSame($array, $newArray); // Ensure immutability
$this->assertEquals(['apple', 'banana'], $newArray->getValue());
}
public function testClearArray(): void
{
$array = new StringArray(['apple', 'banana']);
$clearedArray = $array->clear();
$this->assertNotSame($array, $clearedArray); // Ensure immutability
$this->assertEquals([], $clearedArray->getValue());
}
public function testArrayAccess(): void
{
$array = new StringArray(['apple', 'banana']);
$this->assertEquals('apple', $array[0]);
$this->assertEquals('banana', $array[1]);
$this->assertNull($array[2]); // Non-existent index
}
public function testOffsetSetThrowsException(): void
{
$this->expectException(InvalidStringException::class);
$array = new StringArray(['apple', 'banana']);
$array[0] = 'orange'; // Should throw an exception
}
public function testOffsetUnsetThrowsException(): void
{
$this->expectException(InvalidStringException::class);
$array = new StringArray(['apple', 'banana']);
unset($array[0]); // Should throw an exception
}
public function testIterator(): void
{
$array = new StringArray(['apple', 'banana']);
foreach ($array as $key => $value) {
$this->assertEquals($array->get($key), $value);
}
}
}