ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ilServicesActiveRecordConnectorTest.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
use
PHPUnit\Framework\TestCase
;
22
use
ILIAS\DI\Container
;
23
24
class
ilServicesActiveRecordConnectorTest
extends
TestCase
25
{
26
private
?
\ILIAS\DI\Container
$dic_backup
= null;
30
protected
$db_mock
;
31
32
protected
function
setUp
(): void
33
{
34
global
$DIC
;
35
$this->dic_backup = is_object($DIC) ? clone
$DIC
:
$DIC
;
36
37
$DIC =
new
Container
();
38
$DIC[
'ilDB'
] = $this->db_mock = $this->createMock(ilDBInterface::class);
39
}
40
41
protected
function
tearDown
(): void
42
{
43
global
$DIC
;
44
$DIC =
$this->dic_backup
;
45
}
46
47
public
function
testDbConnector
(): void
48
{
49
$test_ar =
new
ilBiblEntry
();
50
$this->db_mock->expects($this->once())
51
->method(
'nextId'
)
52
->with(
ilBiblEntry::TABLE_NAME
)
53
->willReturn(1);
54
55
$connector =
new
arConnectorDB
($this->db_mock);
56
$this->assertEquals(1, $connector->nextID($test_ar));
57
58
$this->db_mock->expects($this->once())
59
->method(
'tableExists'
)
60
->with(
ilBiblEntry::TABLE_NAME
)
61
->willReturn(
true
);
62
$this->assertEquals(
true
, $connector->checkTableExists($test_ar));
63
64
$this->db_mock->expects($this->once())
65
->method(
'tableColumnExists'
)
66
->with(
ilBiblEntry::TABLE_NAME
,
'data_id'
)
67
->willReturn(
true
);
68
$this->assertEquals(
true
, $connector->checkFieldExists($test_ar,
'data_id'
));
69
}
70
71
public
function
testConnectorMap():
void
72
{
73
$cache_connector =
new
arConnectorCache
(
new
arConnectorDB
($this->db_mock));
74
$ar =
new
class
() extends
ActiveRecord
{
84
protected
int
$id
= 0;
85
};
86
arConnectorMap::register
($ar, $cache_connector);
87
$this->assertEquals($cache_connector,
arConnectorMap::get
($ar));
88
}
89
}
arConnectorDB
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.arConnectorDB.php:25
arConnectorMap\register
static register(ActiveRecord $ar, arConnector $connector)
Definition:
class.arConnectorMap.php:25
ilServicesActiveRecordConnectorTest\setUp
setUp()
Definition:
ilServicesActiveRecordConnectorTest.php:32
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:31
ilBiblEntry\TABLE_NAME
const TABLE_NAME
Definition:
class.ilBiblEntry.php:25
ilServicesActiveRecordConnectorTest\$dic_backup
ILIAS DI Container $dic_backup
Definition:
ilServicesActiveRecordConnectorTest.php:26
$DIC
global $DIC
Definition:
feed.php:28
Container
ilServicesActiveRecordConnectorTest\$db_mock
$db_mock
Definition:
ilServicesActiveRecordConnectorTest.php:30
ilServicesActiveRecordConnectorTest\testDbConnector
testDbConnector()
Definition:
ilServicesActiveRecordConnectorTest.php:47
ilServicesActiveRecordConnectorTest\tearDown
tearDown()
Definition:
ilServicesActiveRecordConnectorTest.php:41
ilServicesActiveRecordConnectorTest
Definition:
ilServicesActiveRecordConnectorTest.php:24
arConnectorCache
Class ilGSStorageCache.
Definition:
class.arConnectorCache.php:20
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
arConnectorMap\get
static get(ActiveRecord $ar)
Definition:
class.arConnectorMap.php:30
ActiveRecord
TestCase
Services
ActiveRecord
test
ilServicesActiveRecordConnectorTest.php
Generated on Sat Apr 5 2025 22:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)