2022-04-29 00:47:19 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2022-04-29 00:47:19 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-04-29 00:47:19 +02:00
|
|
|
namespace Tests\Unit\ValidationRules;
|
|
|
|
|
|
|
|
use App\Http\ValidationRules\Account\BlackListRule;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Http\ValidationRules\Account\BlackListRule
|
|
|
|
*/
|
|
|
|
class BlacklistValidationTest extends TestCase
|
|
|
|
{
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp() :void
|
2022-04-29 00:47:19 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testValidEmailRule()
|
|
|
|
{
|
|
|
|
$rules = [
|
2022-06-21 11:57:17 +02:00
|
|
|
'email' => [new BlackListRule],
|
2022-04-29 00:47:19 +02:00
|
|
|
];
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-04-29 00:47:19 +02:00
|
|
|
$data = [
|
2022-06-21 11:57:17 +02:00
|
|
|
'email' => 'jimmy@gmail.com',
|
2022-04-29 00:47:19 +02:00
|
|
|
];
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-04-29 00:47:19 +02:00
|
|
|
$v = $this->app['validator']->make($data, $rules);
|
|
|
|
$this->assertTrue($v->passes());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInValidEmailRule()
|
|
|
|
{
|
|
|
|
$rules = [
|
2022-06-21 11:57:17 +02:00
|
|
|
'email' => [new BlackListRule],
|
2022-04-29 00:47:19 +02:00
|
|
|
];
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-04-29 00:47:19 +02:00
|
|
|
$data = [
|
2022-06-21 11:57:17 +02:00
|
|
|
'email' => 'jimmy@candassociates.com',
|
2022-04-29 00:47:19 +02:00
|
|
|
];
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-04-29 00:47:19 +02:00
|
|
|
$v = $this->app['validator']->make($data, $rules);
|
|
|
|
$this->assertFalse($v->passes());
|
|
|
|
}
|
|
|
|
}
|