mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-25 12:19:11 -04:00
Include Vendor
This commit is contained in:
60
vendor/fzaninotto/faker/test/Faker/Provider/es_ES/PaymentTest.php
vendored
Normal file
60
vendor/fzaninotto/faker/test/Faker/Provider/es_ES/PaymentTest.php
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
namespace Faker\Test\Provider\es_ES;
|
||||
|
||||
use Faker\Generator;
|
||||
use Faker\Provider\es_ES\Payment;
|
||||
|
||||
class PaymentTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* @var Generator
|
||||
*/
|
||||
private $faker;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$faker = new Generator();
|
||||
$faker->addProvider(new Payment($faker));
|
||||
$this->faker = $faker;
|
||||
}
|
||||
|
||||
public function testVAT()
|
||||
{
|
||||
$vat = $this->faker->vat();
|
||||
|
||||
$this->assertTrue($this->isValidCIF($vat));
|
||||
}
|
||||
|
||||
/**
|
||||
* Validation taken from https://github.com/amnesty/drupal-nif-nie-cif-validator/
|
||||
* @link https://github.com/amnesty/drupal-nif-nie-cif-validator/blob/master/includes/nif-nie-cif.php
|
||||
*/
|
||||
function isValidCIF($docNumber)
|
||||
{
|
||||
$fixedDocNumber = strtoupper($docNumber);
|
||||
|
||||
return $this->isValidCIFFormat($fixedDocNumber);
|
||||
}
|
||||
|
||||
function isValidCIFFormat($docNumber)
|
||||
{
|
||||
return $this->respectsDocPattern($docNumber, '/^[PQSNWR][0-9][0-9][0-9][0-9][0-9][0-9][0-9][A-Z0-9]/')
|
||||
||
|
||||
$this->respectsDocPattern($docNumber, '/^[ABCDEFGHJUV][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/');
|
||||
}
|
||||
|
||||
function respectsDocPattern($givenString, $pattern)
|
||||
{
|
||||
$isValid = FALSE;
|
||||
$fixedString = strtoupper($givenString);
|
||||
if (is_int(substr($fixedString, 0, 1))) {
|
||||
$fixedString = substr("000000000" . $givenString, -9);
|
||||
}
|
||||
if (preg_match($pattern, $fixedString)) {
|
||||
$isValid = TRUE;
|
||||
}
|
||||
return $isValid;
|
||||
}
|
||||
|
||||
}
|
||||
38
vendor/fzaninotto/faker/test/Faker/Provider/es_ES/PersonTest.php
vendored
Normal file
38
vendor/fzaninotto/faker/test/Faker/Provider/es_ES/PersonTest.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace Faker\Test\Provider\es_ES;
|
||||
|
||||
use Faker\Generator;
|
||||
use Faker\Provider\es_ES\Person;
|
||||
|
||||
class PersonTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function setUp()
|
||||
{
|
||||
$faker = new Generator();
|
||||
$faker->seed(1);
|
||||
$faker->addProvider(new Person($faker));
|
||||
$this->faker = $faker;
|
||||
}
|
||||
|
||||
public function testDNI()
|
||||
{
|
||||
$dni = $this->faker->dni;
|
||||
$this->assertTrue($this->isValidDNI($dni));
|
||||
}
|
||||
|
||||
// validation taken from http://kiwwito.com/php-function-for-spanish-dni-nie-validation/
|
||||
public function isValidDNI($string)
|
||||
{
|
||||
if (strlen($string) != 9 ||
|
||||
preg_match('/^[XYZ]?([0-9]{7,8})([A-Z])$/i', $string, $matches) !== 1) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$map = 'TRWAGMYFPDXBNJZSQVHLCKE';
|
||||
|
||||
list(, $number, $letter) = $matches;
|
||||
|
||||
return strtoupper($letter) === $map[((int) $number) % 23];
|
||||
}
|
||||
}
|
||||
26
vendor/fzaninotto/faker/test/Faker/Provider/es_ES/TextTest.php
vendored
Normal file
26
vendor/fzaninotto/faker/test/Faker/Provider/es_ES/TextTest.php
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace Faker\Test\Provider\es_ES;
|
||||
|
||||
use Faker\Generator;
|
||||
use Faker\Provider\es_ES\Text;
|
||||
|
||||
class TextTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* @var Generator
|
||||
*/
|
||||
private $faker;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$faker = new Generator();
|
||||
$faker->addProvider(new Text($faker));
|
||||
$this->faker = $faker;
|
||||
}
|
||||
|
||||
public function testText()
|
||||
{
|
||||
$this->assertNotSame('', $this->faker->realtext(200, 2));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user