ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilWebResourceItemTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  public function testToXML(): void
30  {
31  $writer = $this->getMockBuilder(ilXmlWriter::class)
32  ->disableOriginalConstructor()
33  ->onlyMethods(['xmlStartTag', 'xmlElement', 'xmlEndTag'])
34  ->getMock();
35  $writer->expects($this->once())
36  ->method('xmlStartTag')
37  ->with('WebLink', [
38  'id' => 13,
39  'active' => 1,
40  'position' => 7,
41  'internal' => 0
42  ]);
43  /*
44  * willReturnCallback is a workaround to replace withConsecutive.
45  * The return value is irrelevant here, but if an unexpected parameter
46  * is passed, an exception will be thrown (instead of an assumption being
47  * broken as before).
48  * These tests should be rewritten to rely much less on PHPUnit for mocking.
49  */
50  $writer->expects($this->exactly(3))
51  ->method('xmlElement')
52  ->willReturnCallback(fn($tag, $attrs, $data) => match([$tag, $attrs, $data]) {
53  ['Title', [], 'title'] => 1,
54  ['Description', [], 'description'] => 2,
55  ['Target', [], 'target'] => 3
56  });
57  $writer->expects($this->once())
58  ->method('xmlEndTag')
59  ->with('WebLink');
60 
61  $param1 = $this->getMockBuilder(ilWebLinkParameter::class)
62  ->disableOriginalConstructor()
63  ->onlyMethods(['toXML'])
64  ->getMock();
65  $param1->expects($this->once())
66  ->method('toXML')
67  ->with($writer);
68  $param2 = $this->getMockBuilder(ilWebLinkParameter::class)
69  ->disableOriginalConstructor()
70  ->onlyMethods(['toXML'])
71  ->getMock();
72  $param2->expects($this->once())
73  ->method('toXML')
74  ->with($writer);
75 
76  $item_stub = $this->getMockForAbstractClass(
77  ilWebLinkItem::class,
78  [
79  1, 13, 'title', 'description', 'target',
80  true, new DateTimeImmutable(), new DateTimeImmutable(),
81  [$param1, $param2]
82  ]
83  );
84  $item_stub->expects($this->once())
85  ->method('isInternal')
86  ->willReturn(false);
87  $item_stub->toXML($writer, 7);
88  }
89 }
Unit tests for ilWebLinkItem.