ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ilXHTMLPageTest.php
Go to the documentation of this file.
1
<?php
2
/*
3
+-----------------------------------------------------------------------------+
4
| ILIAS open source |
5
+-----------------------------------------------------------------------------+
6
| Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7
| |
8
| This program is free software; you can redistribute it and/or |
9
| modify it under the terms of the GNU General Public License |
10
| as published by the Free Software Foundation; either version 2 |
11
| of the License, or (at your option) any later version. |
12
| |
13
| This program is distributed in the hope that it will be useful, |
14
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
15
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16
| GNU General Public License for more details. |
17
| |
18
| You should have received a copy of the GNU General Public License |
19
| along with this program; if not, write to the Free Software |
20
| Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21
+-----------------------------------------------------------------------------+
22
*/
23
24
use
PHPUnit\Framework\TestCase
;
25
30
class
ilXHTMLPageTest
extends
TestCase
31
{
32
protected
$backupGlobals
=
false
;
33
34
protected
function
setUp
() : void
35
{
36
include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php"
);
37
ilUnitUtil::performInitialisation();
38
}
39
43
public
function
testSetGetSettings
()
44
{
45
include_once(
"./Services/XHTMLPage/classes/class.ilXHTMLPage.php"
);
46
47
$page =
new
ilXHTMLPage
();
48
$page->setContent(
"aaa"
);
49
$page->save();
50
$page_id = $page->getId();
51
52
// save/read
53
$page =
new
ilXHTMLPage
($page_id);
54
if
($page->getContent() ==
"aaa"
) {
55
$result
.=
"saveread-"
;
56
}
57
$page->setContent(
"bbb"
);
58
$page->save();
59
60
// lookups
61
if
(
ilXHTMLPage::_lookupContent
($page_id) ==
"bbb"
) {
62
$result
.=
"lookupContent-"
;
63
}
64
65
if
(
ilXHTMLPage::_lookupSavedContent
($page_id) ==
"aaa"
) {
66
$result
.=
"lookupSavedContent-"
;
67
}
68
69
// undo
70
$page->undo();
71
72
if
(
ilXHTMLPage::_lookupContent
($page_id) ==
"aaa"
) {
73
$result
.=
"undo1-"
;
74
}
75
76
if
(
ilXHTMLPage::_lookupSavedContent
($page_id) ==
"bbb"
) {
77
$result
.=
"undo2-"
;
78
}
79
80
// clear
81
$page->clear();
82
if
(
ilXHTMLPage::_lookupContent
($page_id) ==
""
) {
83
$result
.=
"clear1-"
;
84
}
85
86
if
(
ilXHTMLPage::_lookupSavedContent
($page_id) ==
"aaa"
) {
87
$result
.=
"clear2-"
;
88
}
89
90
$this->assertEquals(
"saveread-lookupContent-lookupSavedContent-undo1-undo2-clear1-clear2-"
,
$result
);
91
}
92
}
ilXHTMLPageTest\setUp
setUp()
Definition:
ilXHTMLPageTest.php:34
$result
$result
Definition:
CleanUpTest.php:463
ilXHTMLPage\_lookupContent
static _lookupContent($a_id)
Lookup Content.
Definition:
class.ilXHTMLPage.php:99
ilXHTMLPageTest\testSetGetSettings
testSetGetSettings()
IL_Init
Definition:
ilXHTMLPageTest.php:43
ilXHTMLPageTest\$backupGlobals
$backupGlobals
Definition:
ilXHTMLPageTest.php:32
ilXHTMLPageTest
Class ilXHTMLPageTest needsInstalledILIAS.
Definition:
ilXHTMLPageTest.php:30
ilXHTMLPage
XHTML Page class.
Definition:
class.ilXHTMLPage.php:16
TestCase
ilXHTMLPage\_lookupSavedContent
static _lookupSavedContent($a_id)
Lookup Saved Content.
Definition:
class.ilXHTMLPage.php:115
Services
XHTMLPage
test
ilXHTMLPageTest.php
Generated on Thu Apr 3 2025 21:01:33 for ILIAS by
1.8.13 (using
Doxyfile
)