1
0
Fork 0
mirror of https://github.com/archtechx/enums.git synced 2025-12-12 17:34:02 +00:00
enums/tests/Pest/ComparableTest.php
Márk Magyar df3681965c
General code cleanup (#28)
* Add .idea folder to .gitignore

* Remove useless concatenation

* Add phpunit cache directory to .gitignore

* Use iterable type instead of unnecessary checks

* Remove unnecessary null coalescing

If the return value is `null`, it will return `null` anyway. If the method doesn't exist, it will throw an `Error` because of the undefined method.

* Add typehint

* Merge meta properties in one go instead of in a loop

* Simplify control flow

* Use non-deprecated phpstan configuration value

* Add missing types

* Fix style with php-cs-fixer

* Add tests that satisfy the ArrayIterator branch

* Use is() for comparison in in()

* from(int|string), tryFrom(int|string)

---------

Co-authored-by: Samuel Štancl <samuel@archte.ch>
2025-06-07 01:11:53 +02:00

51 lines
2.1 KiB
PHP

<?php
declare(strict_types=1);
test('the is method checks for equality', function () {
expect(Status::PENDING->is(Status::PENDING))->toBeTrue();
expect(Status::PENDING->is(Status::DONE))->toBeFalse();
expect(Role::ADMIN->is(Role::ADMIN))->toBeTrue();
expect(Role::ADMIN->is(Role::GUEST))->toBeFalse();
expect(Role::ADMIN->is('admin'))->toBeFalse();
});
it('the isNot method checks for inequality', function () {
expect(Status::PENDING->isNot(Status::DONE))->toBeTrue();
expect(Status::PENDING->isNot(Status::PENDING))->toBeFalse();
expect(Status::PENDING->isNot(Role::ADMIN))->toBeTrue();
expect(Role::ADMIN->isNot(Role::GUEST))->toBeTrue();
expect(Role::ADMIN->isNot(Role::ADMIN))->toBeFalse();
expect(Role::ADMIN->isNot('admin'))->toBeTrue();
});
it('the in method checks for presence in an array', function () {
expect(Status::PENDING->in([Status::PENDING, Status::DONE]))->toBeTrue();
expect(Role::ADMIN->in([Role::ADMIN]))->toBeTrue();
$iterator = new ArrayIterator([Status::PENDING, Status::DONE]);
expect(Status::PENDING->in($iterator))->toBeTrue();
expect(Status::DONE->in($iterator))->toBeTrue();
expect(Status::PENDING->in(new ArrayIterator([Role::ADMIN, Role::GUEST])))->toBeFalse();
expect(Status::PENDING->in([Status::DONE]))->toBeFalse();
expect(Status::PENDING->in([Role::ADMIN, Role::GUEST]))->toBeFalse();
});
it('the not in method checks for absence in an array', function () {
expect(Status::PENDING->notIn([Status::DONE]))->toBeTrue();
expect(Role::ADMIN->notIn([Role::GUEST]))->toBeTrue();
expect(Status::PENDING->notIn([Status::PENDING, Status::DONE]))->toBeFalse();
expect(Role::ADMIN->notIn([Role::ADMIN, Role::GUEST]))->toBeFalse();
});
test('the in and notIn methods work with Laravel collections', function () {
expect(Status::PENDING->in(collect([Status::PENDING, Status::DONE])))->toBeTrue();
expect(Role::ADMIN->in(collect([Status::PENDING, Role::GUEST])))->toBeFalse();
expect(Status::DONE->notIn(collect([Status::PENDING])))->toBeTrue();
expect(Role::ADMIN->notIn(collect([Role::ADMIN, Status::PENDING])))->toBeFalse();
});