ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ExtLinkMapperTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
29  public function testGetRefId(): void
30  {
31  $def_mock = $this->getMockBuilder(\ilObjectDefinition::class)
32  ->disableOriginalConstructor()
33  ->getMock();
34  $def_mock
35  ->method('isRBACObject')
36  ->willReturn(true);
37 
38  $ext_link_mapper = new ExtLinkMapper(
39  $def_mock,
40  "http://localhost/ilias",
41  [3 => 5],
42  "client"
43  );
44 
45  $ref_id = $ext_link_mapper->getRefId("http://localhost/ilias/goto.php/file/231");
46  $this->assertEquals(
47  231,
48  $ref_id
49  );
50 
51  $ref_id = $ext_link_mapper->getRefId("http://localhost/ilias/goto_client_cat_581.html");
52  $this->assertEquals(
53  581,
54  $ref_id
55  );
56 
57  $ref_id = $ext_link_mapper->getRefId("http://localhost/ilias/go/file/33");
58  $this->assertEquals(
59  33,
60  $ref_id
61  );
62 
63  $ref_id = $ext_link_mapper->getRefId("http://localhost/ilias/ilias.php?baseClass=ilrepositorygui&ref_id=198");
64  $this->assertEquals(
65  198,
66  $ref_id
67  );
68  }
69 }
$ref_id
Definition: ltiauth.php:65