ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
URIBuilderTest.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\StaticURL\Tests;
20 
24 
25 require_once "Base.php";
26 
30 class URIBuilderTest extends Base
31 {
32  private ?string $ilias_http_path_backup = null;
34 
35  public static function getILIAS_HTTP_Paths(): array
36  {
37  return [
38  ['https://ilias.de/ilias', 'https://ilias.de/ilias'],
39  ['https://ilias.de/ilias/', 'https://ilias.de/ilias'],
40  ['http://ilias.de/ilias', 'http://ilias.de/ilias'],
41  ['https://test9.ilias.de/goto.php', 'https://test9.ilias.de'],
42  ['https://test9.ilias.de/goto.php/', 'https://test9.ilias.de'],
43  ['https://test9.ilias.de/goto.php/wiki', 'https://test9.ilias.de'],
44  ['https://test9.ilias.de/goto.php/wiki/22', 'https://test9.ilias.de'],
45  ['http://test9.ilias.de/goto.php', 'http://test9.ilias.de'],
46  ['http://test9.ilias.de/go/hello', 'http://test9.ilias.de'],
47  ['http://test9.ilias.de/go/hello', 'http://test9.ilias.de'],
48  ['http://test9.ilias.de/Customizing/global/plugins/Services/index.php', 'http://test9.ilias.de'],
49  ];
50  }
51 
52  #[DataProvider('getILIAS_HTTP_Paths')]
53  public function testBaseURI(string $ILIAS_HTTP_PATH, string $expected): void
54  {
55  $uri_builder = new StandardURIBuilder($ILIAS_HTTP_PATH);
56  $this->assertEquals($expected, (string) $uri_builder->getBaseURI());
57  }
58 
59  public static function getBuilderParts(): array
60  {
61  return [
62  ['wiki', 42, [], 'https://test9.ilias.de/goto.php/wiki/42'],
63  ['file', 42, ['download'], 'https://test9.ilias.de/goto.php/file/42/download'],
64  ['dashboard', null, [], 'https://test9.ilias.de/goto.php/dashboard'],
65 
66  ];
67  }
68 
69  #[DataProvider('getBuilderParts')]
70  public function testFullBuilder(string $namespace, ?int $ref_id, array $params, string $expected): void
71  {
72  $uri_builder = new StandardURIBuilder('https://test9.ilias.de');
73  $uri = $uri_builder->build(
74  $namespace,
75  $ref_id === null ? null : new ReferenceId($ref_id),
76  $params
77  );
78  $this->assertEquals($expected, (string) $uri);
79  }
80 }
if($err=$client->getError()) $namespace
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Base.php:19
testFullBuilder(string $namespace, ?int $ref_id, array $params, string $expected)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$ref_id
Definition: ltiauth.php:65
build(string $namespace, ?ReferenceId $reference_id=null, array $additional_parameters=[])
testBaseURI(string $ILIAS_HTTP_PATH, string $expected)