ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
PageCompareTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\COPage\Test\Compare
;
22
23
use
PHPUnit\Framework\TestCase
;
24
use
ILIAS\COPage\Compare\PageCompare
;
25
29
class
PageCompareTest
extends
\COPageTestBase
30
{
31
protected
function
getElementChange
(
string
$pcid, array $changes): string
32
{
33
return
$changes[str_pad($pcid, 32,
"0"
, STR_PAD_LEFT)][
"change"
] ??
""
;
34
}
35
public
function
testCompareEqual
(): void
36
{
37
$compare =
new
PageCompare();
38
39
$l_page = $this->
getEmptyPageWithDom
();
40
$this->
insertParagraphAt
($l_page,
"pg"
);
41
$l_page->insertPCIds();
42
43
$this->
setPCIdCnt
(1);
// reset PCID counter to get same PCID
44
45
$r_page = $this->
getEmptyPageWithDom
();
46
$this->
insertParagraphAt
($r_page,
"pg"
);
47
$r_page->insertPCIds();
48
49
$res
= $compare->compare($l_page, $l_page, $r_page);
50
51
$this->assertEquals(
52
""
,
53
$this->
getElementChange
(
"1"
,
$res
[
"l_changes"
])
54
);
55
56
$this->assertEquals(
57
""
,
58
$this->
getElementChange
(
"1"
,
$res
[
"r_changes"
])
59
);
60
}
61
62
public
function
testCompareNewDeleted
(): void
63
{
64
$compare =
new
PageCompare();
65
66
$l_page = $this->
getEmptyPageWithDom
();
67
$this->
insertParagraphAt
($l_page,
"pg"
);
68
$l_page->insertPCIds();
69
70
// Note, since we do not reset the PCID counter
71
// the second will get a pc id of 2
72
73
$r_page = $this->
getEmptyPageWithDom
();
74
$this->
insertParagraphAt
($r_page,
"pg"
);
75
$r_page->insertPCIds();
76
77
$res
= $compare->compare($l_page, $l_page, $r_page);
78
79
$this->assertEquals(
80
"Deleted"
,
81
$this->
getElementChange
(
"1"
,
$res
[
"l_changes"
])
82
);
83
84
$this->assertEquals(
85
"New"
,
86
$this->
getElementChange
(
"2"
,
$res
[
"r_changes"
])
87
);
88
}
89
90
public
function
testCompareChanged
(): void
91
{
92
$compare =
new
PageCompare();
93
94
$l_page = $this->
getEmptyPageWithDom
();
95
$this->
insertParagraphAt
($l_page,
"pg"
,
"Hello World!"
);
96
$l_page->insertPCIds();
97
98
$this->
setPCIdCnt
(1);
// reset PCID counter to get same PCID
99
100
$r_page = $this->
getEmptyPageWithDom
();
101
$this->
insertParagraphAt
($r_page,
"pg"
,
"Hello little World!"
);
102
$r_page->insertPCIds();
103
104
$res
= $compare->compare($l_page, $l_page, $r_page);
105
106
$this->assertEquals(
107
"Modified"
,
108
$this->
getElementChange
(
"1"
,
$res
[
"l_changes"
])
109
);
110
111
$this->assertEquals(
112
"Modified"
,
113
$this->
getElementChange
(
"1"
,
$res
[
"r_changes"
])
114
);
115
}
116
117
public
function
testCompareTextChanges
(): void
118
{
119
$compare =
new
PageCompare();
120
121
$l_page = $this->
getEmptyPageWithDom
();
122
$this->
insertParagraphAt
($l_page,
"pg"
,
"Hello World!"
);
123
$l_page->insertPCIds();
124
125
$this->
setPCIdCnt
(1);
// reset PCID counter to get same PCID
126
127
$r_page = $this->
getEmptyPageWithDom
();
128
$this->
insertParagraphAt
($r_page,
"pg"
,
"Hello little World!"
);
129
$r_page->insertPCIds();
130
131
$res
= $compare->compare($l_page, $l_page, $r_page);
132
133
$expected = <<<EOT
134
<PageObject HierId=
"pg"
><PageContent HierId=
"1"
PCID=
"00000000000000000000000000000001"
>Hello [ilDiffInsStart]little [ilDiffInsEnd]World!</PageContent><DivClass HierId=
"1"
Class=
"ilEditModified"
/></PageObject>
135
EOT;
136
137
$this->
assertXmlEquals
(
138
$expected,
139
$r_page->getXMLFromDom()
140
);
141
}
142
}
COPageTestBase\insertParagraphAt
insertParagraphAt(\ilPageObject $page, string $hier_id, string $text="")
Definition:
COPageTestBase.php:170
$res
$res
Definition:
ltiservices.php:66
ILIAS\COPage\Test\Compare
Definition:
PageCompareTest.php:21
PHPUnit::Framework::Attributes\Test::Compare\PageCompareTest\testCompareNewDeleted
testCompareNewDeleted()
Definition:
PageCompareTest.php:62
COPageTestBase
Definition:
COPageTestBase.php:24
PHPUnit::Framework::Attributes\Test::Compare\PageCompareTest\testCompareEqual
testCompareEqual()
Definition:
PageCompareTest.php:35
PageCompare
PHPUnit::Framework::Attributes\Test::Compare\PageCompareTest
Definition:
PageCompareTest.php:29
PHPUnit::Framework::Attributes\Test::Compare\PageCompareTest\testCompareTextChanges
testCompareTextChanges()
Definition:
PageCompareTest.php:117
PHPUnit::Framework::Attributes\Test::Compare\PageCompareTest\testCompareChanged
testCompareChanged()
Definition:
PageCompareTest.php:90
COPageTestBase\setPCIdCnt
setPCIdCnt(int $cnt)
Definition:
COPageTestBase.php:157
PHPUnit::Framework::Attributes\Test::Compare\PageCompareTest\getElementChange
getElementChange(string $pcid, array $changes)
Definition:
PageCompareTest.php:31
COPageTestBase\getEmptyPageWithDom
getEmptyPageWithDom()
Definition:
COPageTestBase.php:207
TestCase
COPageTestBase\assertXmlEquals
assertXmlEquals(string $expected_xml_as_string, string $html_xml_string)
Definition:
COPageTestBase.php:193
components
ILIAS
COPage
tests
Compare
PageCompareTest.php
Generated on Thu Apr 3 2025 23:02:40 for ILIAS by
1.8.13 (using
Doxyfile
)