ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
NodeTest.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2019 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 require_once("libs/composer/vendor/autoload.php");
6 require_once(__DIR__ . "../../../../Base.php");
7 
9 use \ILIAS\UI\Implementation\Component\Tree\Node\Node;
10 use \ILIAS\UI\Implementation\Component as I;
11 
15 class TestingNode extends Node
16 {
17  public function __construct(string $label, URI $link = null)
18  {
19  parent::__construct($label, $link);
20  }
21 
27  public function withLink(URI $link) : \ILIAS\UI\Component\Tree\Node\Node
28  {
29  return new TestingNode(
30  $this->label,
31  $link
32  );
33  }
34 }
35 
40 {
41  public function testConstruction()
42  {
43  $node = new TestingNode("");
44  $this->assertInstanceOf(
45  "ILIAS\\UI\\Component\\Tree\\Node\\Node",
46  $node
47  );
48 
49  return $node;
50  }
51 
55  public function testDefaults($node)
56  {
57  $this->assertFalse($node->isExpanded());
58  $this->assertFalse($node->isHighlighted());
59  $this->assertEquals([], $node->getSubnodes());
60  }
61 
65  public function testWithExpanded($node)
66  {
67  $this->assertTrue(
68  $node->withExpanded(true)->isExpanded()
69  );
70  }
71 
75  public function testWithHighlighted($node)
76  {
77  $this->assertTrue(
78  $node->withHighlighted(true)->isHighlighted()
79  );
80  }
81 
85  public function testWithOnClick($node)
86  {
87  $sig_gen = new I\SignalGenerator();
88  $sig = $sig_gen->create();
89 
90  $node = $node->withOnClick($sig);
91  $check = $node->getTriggeredSignals()[0]->getSignal();
92  $this->assertEquals($sig, $check);
93  return $node;
94  }
95 
99  public function testWithAppendOnClick($node)
100  {
101  $sig_gen = new I\SignalGenerator();
102  $sig = $sig_gen->create();
103 
104  $node = $node->appendOnClick($sig);
105  $check = $node->getTriggeredSignals()[1]->getSignal();
106  $this->assertEquals($sig, $check);
107  }
108 
113  public function testWithURI($node)
114  {
115  $uri = new URI('http://google.de:8080');
116 
117  $node = $node->withLink($uri);
118 
119  $stringTransformation = new \ILIAS\Refinery\URI\StringTransformation();
120 
121  $this->assertEquals('http://google.de:8080', $stringTransformation->transform($node->getLink()));
122  }
123 }
__construct(string $label, URI $link=null)
Definition: NodeTest.php:17
Class Factory.
testWithExpanded($node)
testConstruction
Definition: NodeTest.php:65
testDefaults($node)
testConstruction
Definition: NodeTest.php:55
Tests for the (Base-)Node.
Definition: NodeTest.php:39
Class ChatMainBarProvider .
testWithAppendOnClick($node)
testWithOnClick
Definition: NodeTest.php:99
testWithHighlighted($node)
testConstruction
Definition: NodeTest.php:75
withLink(URI $link)
Create a new node object with an URI that will be added to the UI.
Definition: NodeTest.php:27
testWithOnClick($node)
testConstruction
Definition: NodeTest.php:85
Provides common functionality for UI tests.
Definition: Base.php:224
testWithURI($node)
Definition: NodeTest.php:113
The scope of this class is split ilias-conform URI&#39;s into components.
Definition: URI.php:17
Dummy-implementation for testing.
Definition: NodeTest.php:15
__construct(Container $dic, ilPlugin $plugin)
testConstruction()
Definition: NodeTest.php:41