19 declare(strict_types=1);
32 protected function setUp(): void
40 $this->getMockBuilder(ilDBInterface::class)->disableAutoReturnValueGeneration()->getMock()
45 $this->getMockBuilder(\
ILIAS\Administration\Setting::class)->getMock()
49 $this->getMockBuilder(ilErrorHandling::class)->disableOriginalConstructor()->getMock()
65 $DIC[$name] =
static function (
$c) use ($name) {
76 ->getMockBuilder(ilLanguage::class)
77 ->disableOriginalConstructor()
78 ->onlyMethods([
'txt',
'getInstalledLanguages',
'loadLanguageModule'])
84 public function testConstructorWithoutParam():
void 90 $setting = $DIC[
'ilSetting'];
91 $setting->method(
"get")->willReturnCallback(
93 if ($arg ===
'session_statistics') {
97 throw new \RuntimeException($arg);
102 $ilDB = $DIC[
'ilDB'];
103 $ilDB->expects($this->never())->method(
"quote");
106 $this->assertFalse(
$server->isActive());
109 public function testConstructorWithParameter():
void 115 $setting = $DIC[
'ilSetting'];
116 $setting->method(
"get")->willReturnCallback(
118 if ($arg ===
'session_statistics') {
122 throw new \RuntimeException($arg);
127 $ilDB = $DIC[
'ilDB'];
128 $ilDB->expects($this->once())->method(
"quote")->with(1)->willReturn(
"1");
130 $res = $this->getMockBuilder(ilDBStatement::class)->disableAutoReturnValueGeneration()->getMock();
131 $ilDB->method(
"query")->with(
132 "SELECT * FROM ldap_server_settings WHERE server_id = 1" 135 $res->expects($this->exactly(2))->method(
"fetchRow")->willReturnOnConsecutiveCalls((
object) array(
137 'name' =>
"testserver",
138 'url' =>
"ldap://testurl:389",
141 'referrals' =>
"false",
144 'bind_user' =>
"nobody",
145 'bind_pass' =>
"password",
146 'search_base' =>
"dc=de",
148 'user_attribute' =>
"user",
150 'group_dn' =>
"dc=group",
151 'group_scope' =>
"1",
152 'group_filter' =>
"",
153 'group_member' =>
"",
154 'group_attribute' =>
"",
155 'group_optional' =>
"false",
156 'group_user_filter' =>
".*",
157 'group_memberisdn' =>
"true",
159 'sync_on_login' =>
"true",
160 'sync_per_cron' =>
"false",
161 'role_sync_active' =>
"true",
162 'role_bind_dn' =>
"rolebind",
163 'role_bind_pass' =>
"rolebindpwd",
164 'migration' =>
"true",
165 'authentication' =>
"true",
166 'authentication_type' =>
"1",
167 'username_filter' =>
".*",
168 'escape_dn' =>
"false" 172 $this->assertTrue(
$server->isActive());
Interface Observer Contains several chained tasks and infos about them.
Customizing of pimple-DIC for ILIAS.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setGlobalVariable(string $name, $value)