ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
IsNumericConstraintTest Class Reference
+ Inheritance diagram for IsNumericConstraintTest:
+ Collaboration diagram for IsNumericConstraintTest:

Public Member Functions

 testAccepts1 ()
 
 testAccepts2 ()
 
 testAccepts3 ()
 
 testAccepts4 ()
 
 testAccepts5 ()
 
 testAccepts6 ()
 
 testAccepts7 ()
 
 testAccepts8 ()
 
 testNotAccepts1 ()
 
 testNotAccepts2 ()
 
 testCheckSucceed ()
 
 testCheckFails ()
 
 testNoProblemWith ()
 
 testProblemWith ()
 
 testRestrictOk ()
 
 testRestrictNotOk ()
 
 testRestrictError ()
 
 testWithProblemBuilder ()
 

Protected Member Functions

 setUp ()
 

Private Attributes

DataFactory $df
 
ilLanguage $lng
 
Refinery $f
 
ILIAS Refinery Constraint $c
 

Detailed Description

Definition at line 25 of file IsNumericConstraintTest.php.

Member Function Documentation

◆ setUp()

IsNumericConstraintTest::setUp ( )
protected

Definition at line 32 of file IsNumericConstraintTest.php.

References ILIAS\Repository\lng().

32  : void
33  {
34  $this->df = new DataFactory();
35  $this->lng = $this->createMock(ilLanguage::class);
36 
37  $this->f = new Refinery($this->df, $this->lng);
38 
39  $this->c = $this->f->numeric()->isNumeric();
40  }
+ Here is the call graph for this function:

◆ testAccepts1()

IsNumericConstraintTest::testAccepts1 ( )

Definition at line 42 of file IsNumericConstraintTest.php.

42  : void
43  {
44  $this->assertTrue($this->c->accepts(0));
45  }

◆ testAccepts2()

IsNumericConstraintTest::testAccepts2 ( )

Definition at line 47 of file IsNumericConstraintTest.php.

47  : void
48  {
49  $this->assertTrue($this->c->accepts("1"));
50  }

◆ testAccepts3()

IsNumericConstraintTest::testAccepts3 ( )

Definition at line 52 of file IsNumericConstraintTest.php.

52  : void
53  {
54  $this->assertTrue($this->c->accepts(1));
55  }

◆ testAccepts4()

IsNumericConstraintTest::testAccepts4 ( )

Definition at line 57 of file IsNumericConstraintTest.php.

57  : void
58  {
59  $this->assertTrue($this->c->accepts(0x102));
60  }

◆ testAccepts5()

IsNumericConstraintTest::testAccepts5 ( )

Definition at line 62 of file IsNumericConstraintTest.php.

62  : void
63  {
64  $this->assertTrue($this->c->accepts(0102));
65  }

◆ testAccepts6()

IsNumericConstraintTest::testAccepts6 ( )

Definition at line 67 of file IsNumericConstraintTest.php.

67  : void
68  {
69  $this->assertTrue($this->c->accepts(0b101));
70  }

◆ testAccepts7()

IsNumericConstraintTest::testAccepts7 ( )

Definition at line 72 of file IsNumericConstraintTest.php.

72  : void
73  {
74  $this->assertTrue($this->c->accepts(192e0));
75  }

◆ testAccepts8()

IsNumericConstraintTest::testAccepts8 ( )

Definition at line 77 of file IsNumericConstraintTest.php.

77  : void
78  {
79  $this->assertTrue($this->c->accepts(9.1));
80  }

◆ testCheckFails()

IsNumericConstraintTest::testCheckFails ( )

Definition at line 98 of file IsNumericConstraintTest.php.

References ILIAS\Repository\lng().

98  : void
99  {
100  $this->lng
101  ->method('txt')
102  ->willReturnCallback(static function (string $value): string {
103  return $value;
104  })
105  ;
106  $this->expectException(\UnexpectedValueException::class);
107  $this->c->check("");
108  }
+ Here is the call graph for this function:

◆ testCheckSucceed()

IsNumericConstraintTest::testCheckSucceed ( )

Definition at line 92 of file IsNumericConstraintTest.php.

92  : void
93  {
94  $this->c->check(2);
95  $this->assertTrue(true); // does not throw
96  }

◆ testNoProblemWith()

IsNumericConstraintTest::testNoProblemWith ( )

Definition at line 110 of file IsNumericConstraintTest.php.

110  : void
111  {
112  $this->assertNull($this->c->problemWith(2));
113  }

◆ testNotAccepts1()

IsNumericConstraintTest::testNotAccepts1 ( )

Definition at line 82 of file IsNumericConstraintTest.php.

82  : void
83  {
84  $this->assertFalse($this->c->accepts(null));
85  }

◆ testNotAccepts2()

IsNumericConstraintTest::testNotAccepts2 ( )

Definition at line 87 of file IsNumericConstraintTest.php.

87  : void
88  {
89  $this->assertFalse($this->c->accepts("foo"));
90  }

◆ testProblemWith()

IsNumericConstraintTest::testProblemWith ( )

Definition at line 115 of file IsNumericConstraintTest.php.

References ILIAS\Repository\lng().

115  : void
116  {
117  $this->lng
118  ->expects($this->once())
119  ->method("txt")
120  ->with("not_numeric")
121  ->willReturn("-%s-");
122 
123  $this->assertEquals("-aa-", $this->c->problemWith("aa"));
124  }
+ Here is the call graph for this function:

◆ testRestrictError()

IsNumericConstraintTest::testRestrictError ( )

Definition at line 148 of file IsNumericConstraintTest.php.

References $res.

148  : void
149  {
150  $error = $this->df->error("error");
151 
152  $res = $this->c->applyTo($error);
153  $this->assertSame($error, $res);
154  }
$res
Definition: ltiservices.php:69

◆ testRestrictNotOk()

IsNumericConstraintTest::testRestrictNotOk ( )

Definition at line 134 of file IsNumericConstraintTest.php.

References $res, and ILIAS\Repository\lng().

134  : void
135  {
136  $not_ok = $this->df->ok("");
137 
138  $this->lng
139  ->expects($this->once())
140  ->method("txt")
141  ->with("not_numeric_empty_string")
142  ->willReturn("-%s-");
143 
144  $res = $this->c->applyTo($not_ok);
145  $this->assertFalse($res->isOk());
146  }
$res
Definition: ltiservices.php:69
+ Here is the call graph for this function:

◆ testRestrictOk()

IsNumericConstraintTest::testRestrictOk ( )

Definition at line 126 of file IsNumericConstraintTest.php.

References $res.

126  : void
127  {
128  $ok = $this->df->ok(2);
129 
130  $res = $this->c->applyTo($ok);
131  $this->assertTrue($res->isOk());
132  }
$res
Definition: ltiservices.php:69

◆ testWithProblemBuilder()

IsNumericConstraintTest::testWithProblemBuilder ( )

Definition at line 156 of file IsNumericConstraintTest.php.

156  : void
157  {
158  $new_c = $this->c->withProblemBuilder(static function (): string {
159  return "This was a fault";
160  });
161  $this->assertEquals("This was a fault", $new_c->problemWith(""));
162  }

Field Documentation

◆ $c

ILIAS Refinery Constraint IsNumericConstraintTest::$c
private

Definition at line 30 of file IsNumericConstraintTest.php.

◆ $df

DataFactory IsNumericConstraintTest::$df
private

Definition at line 27 of file IsNumericConstraintTest.php.

◆ $f

Refinery IsNumericConstraintTest::$f
private

Definition at line 29 of file IsNumericConstraintTest.php.

◆ $lng

ilLanguage IsNumericConstraintTest::$lng
private

Definition at line 28 of file IsNumericConstraintTest.php.


The documentation for this class was generated from the following file: