ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TransformTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
30 use Closure;
31 use stdClass;
32 
33 class TransformTest extends TestCase
34 {
35  public function testConstruct(): void
36  {
37  $this->assertInstanceOf(Transform::class, new Transform());
38  }
39 
43  public function testTo(): void
44  {
45  $transform = new Transform();
46  $transformed = new stdClass();
47  $transformation = $this->getMockBuilder(Transformation::class)->getMock();
48  $transformation->method('applyTo')->willReturnCallback(function (Result $x) use ($transformed): Result {
49  $this->assertEquals('x', $x->value());
50  return new Ok($transformed);
51  });
52 
53  $parse = $transform->to($transformation, function (Intermediate $x, Closure $cc): Result {
54  return $cc($x->accept());
55  });
56 
57  $end = new stdClass();
58 
59  $x = $parse(new Intermediate('x'), function (Result $x) use ($transformed, $end): Result {
60  $this->assertEquals([$transformed], $x->value()->accepted());
61  return new Ok($end);
62  });
63 
64  $this->assertEquals($end, $x->value());
65  }
66 
70  public function testFailedToTransform(): void
71  {
72  $transform = new Transform();
73  $transformation = $this->getMockBuilder(Transformation::class)->getMock();
74  $transformation->method('applyTo')->willReturnCallback(function (Result $x): Result {
75  $this->assertEquals('x', $x->value());
76  return new Error('Sorryy.');
77  });
78 
79  $parse = $transform->to($transformation, function (Intermediate $x, Closure $cc): Result {
80  return $cc($x->accept());
81  });
82 
83  $end = new stdClass();
84 
85  $x = $parse(new Intermediate('x'), function (Result $x) use ($end): Result {
86  $this->assertFalse($x->isOK());
87  return new Ok($end);
88  });
89 
90  $this->assertEquals($end, $x->value());
91  }
92 
96  public function testFailedToParse(): void
97  {
98  $transform = new Transform();
99  $transformCalled = false;
100  $transformation = $this->getMockBuilder(Transformation::class)->getMock();
101  $transformation->method('applyTo')->willReturnCallback(function (Result $x) use (&$transformCalled): Result {
102  $transformCalled = true;
103  return $x;
104  });
105 
106  $parse = $transform->to($transformation, function (Intermediate $x, Closure $cc): Result {
107  return $cc($x->reject());
108  });
109 
110  $end = new stdClass();
111 
112  $x = $parse(new Intermediate('x'), function (Result $x) use ($end): Result {
113  $this->assertFalse($x->isOK());
114  return new Ok($end);
115  });
116 
117  $this->assertEquals($end, $x->value());
118  $this->assertFalse($transformCalled);
119  }
120 
121  public function testAs(): void
122  {
123  $transform = new Transform();
124  $parse = $transform->as('hej', function (Intermediate $x, Closure $cc): Result {
125  return $cc($x->accept());
126  });
127 
128  $result = $parse(new Intermediate('lorem'), static function (Result $x): Result {
129  return $x->map(static fn(Intermediate $x): array => $x->accepted());
130  });
131 
132  $this->assertTrue($result->isOK());
133  $this->assertEquals(['hej' => 'l'], $result->value());
134  }
135 }
isOK()
Get to know if the result is ok.
value()
Get the encapsulated value.
map(callable $f)
Create a new result where the contained value is modified with $f.
A result encapsulates a value or an error and simplifies the handling of those.
Definition: Ok.php:30