ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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
ilServicesActiveRecordConnectorTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
PHPUnit\Framework\MockObject\MockObject
;
22
use
PHPUnit\Framework\TestCase
;
23
use
ILIAS\DI\Container
;
24
25
class
ilServicesActiveRecordConnectorTest
extends
TestCase
26
{
27
private
?
Container
$dic_backup
=
null
;
31
protected
?MockObject
$db_mock
=
null
;
32
33
protected
function
setUp
(): void
34
{
35
global
$DIC
;
36
$this->dic_backup = is_object($DIC) ? clone
$DIC
:
$DIC
;
37
38
$DIC =
new
Container
();
39
$DIC[
'ilDB'
] = $this->db_mock = $this->createMock(ilDBInterface::class);
40
}
41
42
protected
function
tearDown
(): void
43
{
44
global
$DIC
;
45
$DIC =
$this->dic_backup
;
46
}
47
48
public
function
testDbConnector
(): void
49
{
50
$ilBiblEntry =
new
ilBiblEntry
();
51
$this->db_mock->expects($this->once())
52
->method(
'nextId'
)
53
->with(
ilBiblEntry::TABLE_NAME
)
54
->willReturn(1);
55
56
$arConnectorDB =
new
arConnectorDB
($this->db_mock);
57
$this->assertEquals(1, $arConnectorDB->nextID($ilBiblEntry));
58
59
$this->db_mock->expects($this->once())
60
->method(
'tableExists'
)
61
->with(
ilBiblEntry::TABLE_NAME
)
62
->willReturn(
true
);
63
$this->assertEquals(
true
, $arConnectorDB->checkTableExists($ilBiblEntry));
64
65
$this->db_mock->expects($this->once())
66
->method(
'tableColumnExists'
)
67
->with(
ilBiblEntry::TABLE_NAME
,
'data_id'
)
68
->willReturn(
true
);
69
$this->assertEquals(
true
, $arConnectorDB->checkFieldExists($ilBiblEntry,
'data_id'
));
70
}
71
72
public
function
testConnectorMap
(): void
73
{
74
$arConnectorCache =
new
arConnectorCache
(
new
arConnectorDB
($this->db_mock));
75
$ar =
new
class
() extends
ActiveRecord
{
84
protected
int
$id
= 0;
85
};
86
arConnectorMap::register
($ar, $arConnectorCache);
87
$this->assertEquals($arConnectorCache,
arConnectorMap::get
($ar));
88
}
89
}
ilServicesActiveRecordConnectorTest\$db_mock
MockObject $db_mock
Definition:
ilServicesActiveRecordConnectorTest.php:31
arConnectorDB
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.arConnectorDB.php:25
ActiveRecord
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ActiveRecord.php:27
ilServicesActiveRecordConnectorTest\setUp
setUp()
Definition:
ilServicesActiveRecordConnectorTest.php:33
arConnectorMap\register
static register(ActiveRecord $activeRecord, arConnector $arConnector)
Definition:
class.arConnectorMap.php:28
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
ilServicesActiveRecordConnectorTest\$dic_backup
Container $dic_backup
Definition:
ilServicesActiveRecordConnectorTest.php:27
ilBiblEntry\TABLE_NAME
const TABLE_NAME
Definition:
class.ilBiblEntry.php:25
MockObject
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
Container
ilServicesActiveRecordConnectorTest\testDbConnector
testDbConnector()
Definition:
ilServicesActiveRecordConnectorTest.php:48
ilServicesActiveRecordConnectorTest\tearDown
tearDown()
Definition:
ilServicesActiveRecordConnectorTest.php:42
$DIC
global $DIC
Definition:
shib_login.php:22
ilServicesActiveRecordConnectorTest
Definition:
ilServicesActiveRecordConnectorTest.php:25
arConnectorCache
Class ilGSStorageCache.
Definition:
class.arConnectorCache.php:27
ilBiblEntry
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilBiblEntry.php:23
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
TestCase
ilServicesActiveRecordConnectorTest\testConnectorMap
testConnectorMap()
Definition:
ilServicesActiveRecordConnectorTest.php:72
arConnectorMap\get
static get(ActiveRecord $activeRecord)
Definition:
class.arConnectorMap.php:33
components
ILIAS
ActiveRecord
tests
ilServicesActiveRecordConnectorTest.php
Generated on Sat Apr 5 2025 23:02:04 for ILIAS by
1.8.13 (using
Doxyfile
)