forked from rappasoft/laravel-livewire-tables
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial tests for LivewireComponentArrayFilter (rappasoft#2170)
* Add initial tests for LivewireComponentArrayFilter * Fix styling * Add LivewireComponentArrayFilter isEmpty check * Fix styling --------- Co-authored-by: lrljoe <[email protected]>
- Loading branch information
Showing
2 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
tests/Unit/Views/Filters/LivewireComponentArrayFilterTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?php | ||
|
||
namespace Rappasoft\LaravelLivewireTables\Tests\Unit\Views\Filters; | ||
|
||
use Illuminate\Database\Eloquent\Builder; | ||
use PHPUnit\Framework\Attributes\Group; | ||
use Rappasoft\LaravelLivewireTables\Views\Filters\LivewireComponentArrayFilter; | ||
|
||
#[Group('Filters')] | ||
final class LivewireComponentArrayFilterTest extends FilterTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
self::$filterInstance = LivewireComponentArrayFilter::make('Active'); | ||
} | ||
|
||
public function test_can_get_filter_callback(): void | ||
{ | ||
$this->assertFalse(self::$filterInstance->hasFilterCallback()); | ||
|
||
self::$filterInstance | ||
->filter(function (Builder $builder, array $values) { | ||
return $builder->whereIn('name', $values); | ||
}); | ||
|
||
$this->assertTrue(self::$filterInstance->hasFilterCallback()); | ||
$this->assertIsCallable(self::$filterInstance->getFilterCallback()); | ||
} | ||
|
||
public function test_can_set_livewire_component_filter_to_text(): void | ||
{ | ||
$this->assertSame(['test'], self::$filterInstance->validate(['test'])); | ||
$this->assertSame([123], self::$filterInstance->validate([123])); | ||
|
||
} | ||
|
||
public function test_can_get_if_livewire_component_filter_empty(): void | ||
{ | ||
$this->assertTrue(self::$filterInstance->isEmpty()); | ||
$this->assertTrue(self::$filterInstance->isEmpty([])); | ||
$this->assertTrue(self::$filterInstance->isEmpty([''])); | ||
$this->assertFalse(self::$filterInstance->isEmpty(['123'])); | ||
$this->assertFalse(self::$filterInstance->isEmpty(['test'])); | ||
$this->assertFalse(self::$filterInstance->isEmpty([1234])); | ||
|
||
} | ||
|
||
public function test_can_get_filter_default_value(): void | ||
{ | ||
$this->assertSame([], self::$filterInstance->getDefaultValue()); | ||
} | ||
} |