Skip to content

Commit

Permalink
test: add UnsupportedCollectionTest (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi authored Jun 16, 2024
1 parent 7343827 commit 8b86db7
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 0.11.1

* test: add `UnsupportedCollectionTest`

# 0.11.0

* refactor: change `PageableInterface::getPageIdentifierClass()` from static to
Expand Down
50 changes: 50 additions & 0 deletions tests/src/UnitTests/UnsupportedCollectionTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?php

declare(strict_types=1);

/*
* This file is part of rekalogika/rekapager package.
*
* (c) Priyadi Iman Nurcahyo <https://rekalogika.dev>
*
* For the full copyright and license information, please view the LICENSE file
* that was distributed with this source code.
*/

namespace Rekalogika\Rekapager\Tests\UnitTests;

use Doctrine\Common\Collections\ArrayCollection;
use PHPUnit\Framework\Attributes\RequiresPhp;
use PHPUnit\Framework\TestCase;
use Rekalogika\Rekapager\Doctrine\Collections\SelectableAdapter;
use Rekalogika\Rekapager\Keyset\KeysetPageable;
use Rekalogika\Rekapager\Offset\OffsetPageable;

class UnsupportedCollectionTest extends TestCase
{
/**
* @todo Fix after the resolution of https://github.com/doctrine/collections/pull/421
*/
#[RequiresPhp('99999')]
public function testCollectionOfScalarWithKeysetPagination(): void
{
$collection = new ArrayCollection([1, 2, 3, 4, 5]);
$adapter = new SelectableAdapter($collection);
$pageable = new KeysetPageable($adapter, 2);

foreach ($pageable->getFirstPage() as $item);
}

/**
* @todo Fix after the resolution of https://github.com/doctrine/collections/pull/421
*/
#[RequiresPhp('99999')]
public function testCollectionOfScalarWithOffsetPagination(): void
{
$collection = new ArrayCollection([1, 2, 3, 4, 5]);
$adapter = new SelectableAdapter($collection);
$pageable = new OffsetPageable($adapter, 2);

foreach ($pageable->getFirstPage() as $item);
}
}

0 comments on commit 8b86db7

Please sign in to comment.