4 require_once(
"libs/composer/vendor/autoload.php");
14 return $this->getLngClosure();
24 return $this->str_repr;
40 protected $txt_id =
'';
44 $is_ok =
function ($value) {
47 $this->txt_id =
"TXT_ID";
48 $error =
function (callable
$txt, $value) {
49 return $txt($this->txt_id, $value);
51 $this->lng = $this->createMock(\ilLanguage::class);
57 $new_constraint = $this->constraint->withProblemBuilder(
function () {
58 return "This was a fault";
60 $this->assertEquals(
"This was a fault", $new_constraint->problemWith(
""));
65 $c = $this->constraint->withProblemBuilder(
function (
$txt) {
70 $this->assertTrue(is_callable($this->cls));
77 ->expects($this->once())
80 ->willReturn($txt_out);
83 $problem = $this->constraint->problemWith($value);
85 $this->assertEquals(sprintf($txt_out, $value), $problem);
90 $lng_closure = $this->constraint->_getLngClosure();
92 $this->expectException(\InvalidArgumentException::class);
99 $lng_closure = $this->constraint->_getLngClosure();
103 ->expects($this->once())
105 ->with($this->txt_id)
106 ->willReturn($txt_out);
108 $res = $lng_closure($this->txt_id);
110 $this->assertEquals($txt_out,
$res);
115 $lng_closure = $this->constraint->_getLngClosure();
118 ->expects($this->once())
121 ->willReturn(
"%s-%s-%s-%s-");
125 $res = $lng_closure(
"id", [],
new \stdClass(),
"foo", null);
127 $this->assertEquals(
"array-" . \stdClass::class .
"-foo-null-",
$res);
TestCase for the custom constraints.
test_gracefully_handle_arrays_and_objects()
test_exception_on_no_parameter()
foreach($_POST as $key=> $value) $res
test_no_sprintf_on_one_parameter()
testProblemBuilderRetrievesLngClosure()