ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
OrderTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
27 class orderTest extends TestCase
28 {
29  public function testFactory(): Order
30  {
31  $f = new ILIAS\Data\Factory();
32  $order = $f->order('subject', Order::ASC);
33  $this->assertInstanceOf(Order::class, $order);
34  return $order;
35  }
36 
40  public function testValues(Order $order): void
41  {
42  $this->assertEquals(
43  ['subject' => Order::ASC],
44  $order->get()
45  );
46  }
47 
51  public function testAppend(Order $order): Order
52  {
53  $order = $order->append('sub2', Order::DESC);
54  $this->assertEquals(
55  [
56  'subject' => Order::ASC,
57  'sub2' => Order::DESC
58  ],
59  $order->get()
60  );
61  return $order;
62  }
63 
67  public function testJoinOne(Order $order): void
68  {
69  $this->assertEquals(
70  'SORT BY subject ASC',
71  $order->join(
72  'SORT BY',
73  function ($pre, $k, $v) {
74  return "$pre $k $v";
75  }
76  )
77  );
78  }
79 
83  public function testJoinMore(Order $order): void
84  {
85  $this->assertEquals(
86  'Sorting subject ASC, sub2 DESC,',
87  $order->join(
88  'Sorting',
89  function ($pre, $k, $v) {
90  return "$pre $k $v,";
91  }
92  )
93  );
94  }
95 
99  public function testInvalidDirection(Order $order): void
100  {
101  $this->expectException(TypeError::class);
102  $order = $order->append('sub3', -1);
103  }
104 
108  public function testInvalidSubject(Order $order): void
109  {
110  $this->expectException(InvalidArgumentException::class);
111  $order = $order->append('subject', Order::ASC);
112  }
113 }
testFactory()
Definition: OrderTest.php:29
join($init, callable $fn)
Definition: Order.php:75
testJoinMore(Order $order)
testAppend
Definition: OrderTest.php:83
testValues(Order $order)
testFactory
Definition: OrderTest.php:40
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
testJoinOne(Order $order)
testFactory
Definition: OrderTest.php:67
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
append(string $subject, string $direction)
Definition: Order.php:58
testInvalidSubject(Order $order)
testFactory
Definition: OrderTest.php:108
testInvalidDirection(Order $order)
testFactory
Definition: OrderTest.php:99
testAppend(Order $order)
testFactory
Definition: OrderTest.php:51