ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LessThanOrEqualConstraintTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 
30 class LessThanOrEqualConstraintTest extends TestCase
31 {
32  private DataFactory $df;
33  private Language $lng;
34  private Constraint $c;
35 
36  protected function setUp(): void
37  {
38  $this->df = new DataFactory();
39  $this->lng = $this->getMockBuilder(Language::class)
40  ->disableOriginalConstructor()
41  ->getMock();
42 
43  $less_than_or_equal = 10;
44 
45  $this->c = new LessThanOrEqual(
46  $less_than_or_equal,
47  $this->df,
48  $this->lng
49  );
50  }
51 
52  public function testAccepts(): void
53  {
54  $this->assertTrue($this->c->accepts(10));
55  }
56 
57  public function testNotAccepts(): void
58  {
59  $this->assertFalse($this->c->accepts(11));
60  }
61 
62  public function testCheckSucceed(): void
63  {
64  $this->c->check(2);
65  $this->assertTrue(true); // does not throw
66  }
67 
68  public function testCheckFails(): void
69  {
70  $this->expectException(UnexpectedValueException::class);
71  $this->c->check(11);
72  }
73 
74  public function testNoProblemWith(): void
75  {
76  $this->assertNull($this->c->problemWith(1));
77  }
78 
79  public function testProblemWith(): void
80  {
81  $this->lng
82  ->expects($this->once())
83  ->method("txt")
84  ->with("not_less_than_or_equal")
85  ->willReturn("-%s");
86 
87  $this->assertEquals("-10", $this->c->problemWith(11));
88  }
89 
90  public function testRestrictOk(): void
91  {
92  $ok = $this->df->ok(1);
93 
94  $res = $this->c->applyTo($ok);
95  $this->assertTrue($res->isOk());
96  }
97 
98  public function testRestrictNotOk(): void
99  {
100  $not_ok = $this->df->ok(13);
101 
102  $res = $this->c->applyTo($not_ok);
103  $this->assertFalse($res->isOk());
104  }
105 
106  public function testRestrictError(): void
107  {
108  $error = $this->df->error("error");
109 
110  $res = $this->c->applyTo($error);
111  $this->assertSame($error, $res);
112  }
113 
114  public function testWithProblemBuilder(): void
115  {
116  $new_c = $this->c->withProblemBuilder(static function (): string {
117  return "This was a fault";
118  });
119  $this->assertEquals("This was a fault", $new_c->problemWith(13));
120  }
121 }
$res
Definition: ltiservices.php:66
A constraint encodes some resrtictions on values.
Definition: Constraint.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilErrorHandling $error
Definition: class.ilias.php:69