ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InArrayTransformationTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
29 class InArrayTransformationTest extends TestCase
30 {
31  public function testConstruct(): void
32  {
33  $language = $this->getMockBuilder(Language::class)->disableOriginalConstructor()->getMock();
34  $this->assertInstanceOf(InArrayTransformation::class, new InArrayTransformation([], $language));
35  }
36 
40  public function testAccept(string $value, bool $successful): void
41  {
42  $language = $this->getMockBuilder(Language::class)->disableOriginalConstructor()->getMock();
43  $transformation = new InArrayTransformation(['foo', 'bar'], $language);
44 
45  $this->assertSame($successful, $transformation->accepts($value));
46  }
47 
51  public function testTransform(string $value, bool $successful): void
52  {
53  if (!$successful) {
54  $this->expectException(UnexpectedValueException::class);
55  }
56 
57  $language = $this->getMockBuilder(Language::class)->disableOriginalConstructor()->getMock();
58  $transformation = new InArrayTransformation(['foo', 'bar'], $language);
59 
60  $this->assertSame($value, $transformation->transform($value));
61  }
62 
66  public function testApplyTo(string $value, bool $successful): void
67  {
68  $language = $this->getMockBuilder(Language::class)->disableOriginalConstructor()->getMock();
69  $transformation = new InArrayTransformation(['foo', 'bar'], $language);
70 
71  $result = $transformation->applyTo(new Ok($value));
72  $this->assertSame($successful, $result->isOk());
73  if ($successful) {
74  $this->assertSame($value, $result->value());
75  } else {
76  $this->assertInstanceOf(UnexpectedValueException::class, $result->error());
77  }
78  }
79 
80  public static function memberProvider(): array
81  {
82  return [
83  'Invalid member.' => ['hej', false],
84  'Valid member.' => ['foo', true],
85  ];
86  }
87 }
Validates that the value to be transformed is in the set given to this transformation.
A result encapsulates a value or an error and simplifies the handling of those.
Definition: Ok.php:30