ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PCPluggedTest.php
Go to the documentation of this file.
1 <?php
2 
20 
25 {
26  public function testConstruction(): void
27  {
28  $page = $this->getEmptyPageWithDom();
29  $pc = new ilPCPlugged($page);
30  $this->assertEquals(
31  ilPCPlugged::class,
32  get_class($pc)
33  );
34  }
35 
36  public function testCreate(): void
37  {
38  $page = $this->getEmptyPageWithDom();
39  $pc = new ilPCPlugged($page);
40  $pc->create($page, "pg", "", "MyPlugin", "1.0");
41  $this->assertXmlEquals(
42  '<PageObject HierId="pg"><PageContent><Plugged PluginName="MyPlugin" PluginVersion="1.0"></Plugged></PageContent></PageObject>',
43  $page->getXMLFromDom()
44  );
45  }
46 
47  public function testProperties(): void
48  {
49  $page = $this->getEmptyPageWithDom();
50  $pc = new ilPCPlugged($page);
51  $pc->create($page, "pg", "", "MyPlugin", "1.0");
52  $pc->setProperties([
53  "prop1" => "val1",
54  "prop2" => "val2",
55  ]);
56 
57  $this->assertEquals(
58  [
59  "prop1" => "val1",
60  "prop2" => "val2",
61  ],
62  $pc->getProperties()
63  );
64 
65  $page->stripHierIDs();
66 
67  $expected = <<<EOT
68 <PageObject><PageContent><Plugged PluginName="MyPlugin" PluginVersion="1.0"><PluggedProperty Name="prop1">val1</PluggedProperty><PluggedProperty Name="prop2">val2</PluggedProperty></Plugged></PageContent></PageObject>
69 EOT;
70  $this->assertXmlEquals(
71  $expected,
72  $page->getXMLFromDom()
73  );
74  }
75 
76  public function testVersion(): void
77  {
78  $page = $this->getEmptyPageWithDom();
79  $pc = new ilPCPlugged($page);
80  $pc->create($page, "pg", "", "MyPlugin", "1.0");
81  $pc->setPluginVersion("2.0");
82 
83  $this->assertEquals(
84  "2.0",
85  $pc->getPluginVersion()
86  );
87 
88  $page->stripHierIDs();
89 
90  $expected = <<<EOT
91 <PageObject><PageContent><Plugged PluginName="MyPlugin" PluginVersion="2.0"></Plugged></PageContent></PageObject>
92 EOT;
93  $this->assertXmlEquals(
94  $expected,
95  $page->getXMLFromDom()
96  );
97  }
98 
99  public function testName(): void
100  {
101  $page = $this->getEmptyPageWithDom();
102  $pc = new ilPCPlugged($page);
103  $pc->create($page, "pg", "", "MyPlugin", "1.0");
104  $pc->setPluginName("YourPlugin");
105 
106  $this->assertEquals(
107  "YourPlugin",
108  $pc->getPluginName()
109  );
110 
111  $page->stripHierIDs();
112 
113  $expected = <<<EOT
114 <PageObject><PageContent><Plugged PluginName="YourPlugin" PluginVersion="1.0"></Plugged></PageContent></PageObject>
115 EOT;
116  $this->assertXmlEquals(
117  $expected,
118  $page->getXMLFromDom()
119  );
120  }
121 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
assertXmlEquals(string $expected_xml_as_string, string $html_xml_string)