ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SortingTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Badge\test;
22 
24 use ilBadge;
27 
28 class SortingTest extends TestCase
29 {
30  public function testConstruct(): void
31  {
32  $sort = new Sorting();
33  $this->assertInstanceOf(Sorting::class, $sort);
34  }
35 
40  public function testSorting(array $input, string $key, string $label, string $what, string $method, array $equal, array $less, array $greater): void
41  {
42  $sort = new Sorting(...$input);
43  $this->assertEquals($key, $sort->key());
44  $this->assertEquals($label, $sort->label());
45  $this->assertEquals(0, $sort->compare($this->pair($what, $method, $equal[0]), $this->pair($what, $method, $equal[1])));
46  $this->assertEquals(-1, $this->sign($sort->compare($this->pair($what, $method, $less[0]), $this->pair($what, $method, $less[1]))));
47  $this->assertEquals(1, $this->sign($sort->compare($this->pair($what, $method, $greater[0]), $this->pair($what, $method, $greater[1]))));
48  }
49 
53  public function testOptions(): void
54  {
55  $this->assertEquals([
56  'title_asc',
57  'title_desc',
58  'date_asc',
59  'date_desc',
60  ], array_keys((new Sorting())->options()));
61  }
62 
63  public static function sortProvider(): array
64  {
65  return [
66  'Default sort is title_asc' => [[], 'title_asc', 'sort_by_title_asc', 'badge', 'getTitle', ['A', 'a'], ['f', 'G'], ['d', 'c']],
67  'Descending title' => [['title_desc'], 'title_desc', 'sort_by_title_desc', 'badge', 'getTitle', ['A', 'a'], ['d', 'c'], ['f', 'G']],
68  'Ascending date' => [['date_asc'], 'date_asc', 'sort_by_date_asc', 'assignment', 'getTimestamp', ['7', '7'], [8, 30], [20, 6]],
69  'Ascending date' => [['date_desc'], 'date_desc', 'sort_by_date_desc', 'assignment', 'getTimestamp', [7, 7], [20, 6], [8, 30]],
70  'Random input results in title_asc' => [['Lorem ipsum'], 'title_asc', 'sort_by_title_asc', 'badge', 'getTitle', ['A', 'a'], ['f', 'G'], ['d', 'c']]
71  ];
72  }
73 
74  private function pair(string $what, string $method, $value): array
75  {
76  $badge = $this->getMockBuilder(ilBadge::class)->disableOriginalConstructor()->getMock();
77  $assignment = $this->getMockBuilder(ilBadgeAssignment::class)->disableOriginalConstructor()->getMock();
78 
79  $pair = [
80  'badge' => $badge,
81  'assignment' => $assignment,
82  ];
83 
84  $pair[$what]->method($method)->willReturn($value);
85 
86  return $pair;
87  }
88 
89  private function sign(int $x): int
90  {
91  return !$x ? 0 : $x / abs($x);
92  }
93 }
pair(string $what, string $method, $value)
Definition: SortingTest.php:74
testSorting(array $input, string $key, string $label, string $what, string $method, array $equal, array $less, array $greater)
testConstruct sortProvider
Definition: SortingTest.php:40
testOptions()
testConstruct
Definition: SortingTest.php:53