ILIAS
trunk Revision v11.0_alpha-1753-gb21ca8c4367
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
ilServicesFileSystemTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
Filesystem\tests
;
22
23
use
ILIAS\DI\Container
;
24
use
PHPUnit\Framework\TestCase
;
25
use
ilFileData
;
26
27
class
ilServicesFileSystemTest
extends
TestCase
28
{
29
private
?
Container
$dic_backup
=
null
;
30
31
public
function
testTrailingSlashes
(): void
32
{
33
$file_data =
new
ilFileData
();
34
$this->assertEquals(
'/var/www/ilias'
, $file_data->deleteTrailingSlash(
'/var/www/ilias/'
));
35
$this->assertEquals(
'\\var\\www\\ilias'
, $file_data->deleteTrailingSlash(
'\\var\\www\\ilias\\'
));
36
}
37
38
public
function
testBaseDirectory
(): void
39
{
40
if
(!defined(
'CLIENT_DATA_DIR'
)) {
41
define(
'CLIENT_DATA_DIR'
,
'/var/iliasdata'
);
42
}
43
$file_data =
new
ilFileData
();
44
$this->assertEquals(
CLIENT_DATA_DIR
, $file_data->getPath());
45
}
46
}
Filesystem\tests\ilServicesFileSystemTest\$dic_backup
Container $dic_backup
Definition:
ilServicesFileSystemTest.php:29
Filesystem\tests\ilServicesFileSystemTest\testTrailingSlashes
testTrailingSlashes()
Definition:
ilServicesFileSystemTest.php:31
Filesystem\tests\ilServicesFileSystemTest
Definition:
ilServicesFileSystemTest.php:27
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
ilFileData
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
Container
CLIENT_DATA_DIR
const CLIENT_DATA_DIR
Definition:
constants.php:46
Filesystem\tests\ilServicesFileSystemTest\testBaseDirectory
testBaseDirectory()
Definition:
ilServicesFileSystemTest.php:38
Filesystem\tests
Definition:
ilServicesFileSystemTest.php:21
TestCase
components
ILIAS
Filesystem
tests
ilServicesFileSystemTest.php
Generated on Thu Apr 10 2025 23:03:15 for ILIAS by
1.8.13 (using
Doxyfile
)