-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidatorsTest.php
More file actions
73 lines (59 loc) · 1.67 KB
/
ValidatorsTest.php
File metadata and controls
73 lines (59 loc) · 1.67 KB
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
<?php
namespace Javaabu\Helpers\Tests\Feature;
use Javaabu\Helpers\Tests\TestCase;
use PHPUnit\Framework\Attributes\Test;
class ValidatorsTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
$langs = [
'en',
'dv'
];
$files = [
'auth',
'pagination',
'passwords',
'validation'
];
foreach ($langs as $lang) {
foreach ($files as $file) {
$path = $lang . '/' . $file . '.php';
$this->copyFile(__DIR__ . '/../../lang/' . $path, $this->app->langPath($path));
}
}
}
protected function tearDown(): void
{
$this->deleteDirectory($this->app->langPath('/'));
parent::tearDown();
}
#[Test]
public function it_can_validate_a_slug()
{
$validator = validator(
['slug' => 'A b c'],
['slug' => 'slug']
);
$this->assertTrue($validator->fails());
$this->assertEquals(
'The slug may only contain lowercase letters, numbers, and -.',
$validator->getMessageBag()->first('slug')
);
}
#[Test]
public function it_can_load_localized_validation()
{
$this->app->setLocale('dv');
$validator = validator(
['slug' => 'A b c'],
['slug' => 'slug']
);
$this->assertTrue($validator->fails());
$this->assertEquals(
'slug ގައި ހަމައެކަނި ހިމެނޭނީ ކުދި އަކުރާއި، ނަންބަރާއި، -.',
$validator->getMessageBag()->first('slug')
);
}
}