Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Fix Polish PESEL faker #1449

Merged
merged 3 commits into from
Mar 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/Faker/Provider/pl_PL/Person.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,12 @@ public static function pesel($birthdate = null, $sex = null)
for ($i = 6; $i < $length; $i++) {
$result[$i] = static::randomDigit();
}
if ($sex == "M") {
$result[$length - 1] |= 1;
} elseif ($sex == "F") {
$result[$length - 1] ^= 1;

$result[$length - 1] |= 1;
if ($sex == "F") {
$result[$length - 1] -= 1;
}

$checksum = 0;
for ($i = 0; $i < $length; $i++) {
$checksum += $weights[$i] * $result[$i];
Expand Down
101 changes: 101 additions & 0 deletions test/Faker/Provider/pl_PL/PersonTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<?php

namespace Faker\Provider\pl_PL;

use DateTime;
use Faker\Generator;
use PHPUnit\Framework\TestCase;

class PersonTest extends TestCase
{
/**
* @var Generator
*/
private $faker;

public function setUp()
{
$faker = new Generator();
$faker->addProvider(new Person($faker));
$this->faker = $faker;
}

public function testPeselLenght()
{
$pesel = $this->faker->pesel();

$this->assertEquals(11, strlen($pesel));
}

public function testPeselDate()
{
$date = new DateTime('1990-01-01');
$pesel = $this->faker->pesel($date);

$this->assertEquals('90', substr($pesel, 0, 2));
$this->assertEquals('01', substr($pesel, 2, 2));
$this->assertEquals('01', substr($pesel, 4, 2));
}

public function testPeselDateWithYearAfter2000()
{
$date = new DateTime('2001-01-01');
$pesel = $this->faker->pesel($date);

$this->assertEquals('01', substr($pesel, 0, 2));
$this->assertEquals('21', substr($pesel, 2, 2));
$this->assertEquals('01', substr($pesel, 4, 2));
}

public function testPeselDateWithYearAfter2100()
{
$date = new DateTime('2101-01-01');
$pesel = $this->faker->pesel($date);

$this->assertEquals('01', substr($pesel, 0, 2));
$this->assertEquals('41', substr($pesel, 2, 2));
$this->assertEquals('01', substr($pesel, 4, 2));
}

public function testPeselDateWithYearAfter2200()
{
$date = new DateTime('2201-01-01');
$pesel = $this->faker->pesel($date);

$this->assertEquals('01', substr($pesel, 0, 2));
$this->assertEquals('61', substr($pesel, 2, 2));
$this->assertEquals('01', substr($pesel, 4, 2));
}

public function testPeselDateWithYearBefore1900()
{
$date = new DateTime('1801-01-01');
$pesel = $this->faker->pesel($date);

$this->assertEquals('01', substr($pesel, 0, 2));
$this->assertEquals('81', substr($pesel, 2, 2));
$this->assertEquals('01', substr($pesel, 4, 2));
}

public function testPeselSex()
{
$male = $this->faker->pesel(null, 'M');
$female = $this->faker->pesel(null, 'F');

$this->assertEquals(1, $male[9] % 2);
$this->assertEquals(0, $female[9] % 2);
}

public function testPeselCheckSum()
{
$pesel = $this->faker->pesel();
$weights = array(1, 3, 7, 9, 1, 3, 7, 9, 1, 3, 1);
$sum = 0;

foreach ($weights as $key => $weight) {
$sum += $pesel[$key] * $weight;
}

$this->assertEquals(0, $sum % 10);
}
}