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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
<?php
namespace Faker\Provider\pl_PL;
use Faker\Test\TestCase;
/**
* @group legacy
*/
final class LicensePlateTest extends TestCase
{
/**
* Test the validity of license plate
*/
public function testNonSpecialLicensePlates()
{
for ($i = 0; $i < 40; ++$i) {
$licensePlate = $this->faker->licensePlate;
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-GI-TV-Z][A-PR-Z] [A-PR-Z\d]{5}|[A-GI-TV-Z][A-PR-Z]{2} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that special license plates are filtered out
*/
public function testExplicitlyNonSpecialLicensePlates()
{
for ($i = 0; $i < 40; ++$i) {
$licensePlate = $this->faker->licensePlate(
false
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-GI-TV-Z][A-PR-Z] [A-PR-Z\d]{5}|[A-GI-TV-Z][A-PR-Z]{2} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that special license plates are filtered out
*/
public function testWithSpecialLicensePlates()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-PR-Z]{2} [A-PR-Z\d]{5}|[A-PR-Z]{3} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that license plate belongs to podkapracikie voivodeship
*/
public function testPodkarpackieLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
false,
['podkarpackie']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:R[A-PR-Z] [A-PR-Z\d]{5}|R[A-PR-Z]{2} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that license plate belongs to łodzkie voivodeship or to army
*/
public function testLodzkieOrArmyLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
['łódzkie', 'army']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[EU][A-PR-Z] [A-PR-Z\d]{5}|[EU][A-PR-Z]{2} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that license plate belongs to łodzkie voivodeship but filters out army
*/
public function testLodzkieButNotArmyLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
false,
['łódzkie', 'army']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[E][A-PR-Z] [A-PR-Z\d]{5}|[E][A-PR-Z]{2} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that license plate belongs is generated when invorrect voivodeship is given
*/
public function testNoCorrectVoivodeshipLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
['fake voivodeship', 'fake voivodeship2']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-PR-Z]{2} [A-PR-Z\d]{5}|[A-PR-Z]{3} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that correct license plate is generated when no voivodeship is given
*/
public function testNoVoivodeshipLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
[]
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-PR-Z]{2} [A-PR-Z\d]{5}|[A-PR-Z]{3} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that correct license plate is generated when no voivodeship or county is given
*/
public function testNoVoivodeshipNoCountyLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
[],
[]
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-PR-Z]{2} [A-PR-Z\d]{5}|[A-PR-Z]{3} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that license plate belongs to one of warszawski zachodni or radomski counties or to Border Guard
*/
public function testVoivodeshipCountyLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
['mazowieckie', 'services'],
['Straż Graniczna', 'warszawski zachodni', 'radomski']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:WZ [A-PR-Z\d]{5}|(?:WRA|HWA|HWK) [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that correct license plate belonging to the correct voivedeship is generated when non-existing county is given
*/
public function testVoivodeshipFakeCountyLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
['mazowieckie', 'services'],
['fake county']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[WH][A-PR-Z] [A-PR-Z\d]{5}|[WH][A-PR-Z]{2} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that correct license plate is generated when non-existing voivodeship is given
*/
public function testVoivodeshipFakeVoivodeshipLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
['fake voivodeship'],
['Straż Graniczna', 'warszawski zachodni', 'radomski']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-PR-Z]{2} [A-PR-Z\d]{5}|[A-PR-Z]{3} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that correct license plate is generated when null is given instead of voivodeships list
*/
public function testVoivodeshipNullVoivodeshipArrayLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
null,
['Straż Graniczna', 'warszawski zachodni', 'radomski']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-PR-Z]{2} [A-PR-Z\d]{5}|[A-PR-Z]{3} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that correct license plate is generated when null is given in voivodeships array
*/
public function testVoivodeshipNullVoivodeshipLicensePlate()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
[null],
['Straż Graniczna', 'warszawski zachodni', 'radomski']
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:[A-PR-Z]{2} [A-PR-Z\d]{5}|[A-PR-Z]{3} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that special license plate is not generated when 1st argument is false
*/
public function testVoivodeship1stArgumentFalse()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
false,
['mazowieckie', 'services'],
null
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:W[A-PR-Z] [A-PR-Z\d]{5}|W[A-PR-Z]{2} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
/**
* Test that special license plate is generated when 1st argument is true
*/
public function testVoivodeship1stArgumentTrue()
{
for ($i = 0; $i < 5; ++$i) {
$licensePlate = $this->faker->licensePlate(
true,
['services'],
null
);
self::assertNotEmpty($licensePlate);
self::assertIsString($licensePlate);
self::assertMatchesRegularExpression('/^(?:H[A-PR-Z] [A-PR-Z\d]{5}|H[A-PR-Z]{2} [A-PR-Z\d]{4,5})$/', $licensePlate);
}
}
protected function getProviders(): iterable
{
yield new LicensePlate($this->faker);
}
}
|