3 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)->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_handling_type') {
96 if ($arg ===
'session_statistics') {
100 throw new \RuntimeException($arg);
105 $ilDB = $DIC[
'ilDB'];
106 $ilDB->expects($this->never())->method(
"quote");
109 $this->assertFalse(
$server->isActive());
112 public function testConstructorWithParameter():
void 118 $setting = $DIC[
'ilSetting'];
119 $setting->method(
"get")->willReturnCallback(
121 if ($arg ===
'session_handling_type') {
124 if ($arg ===
'session_statistics') {
128 throw new \RuntimeException($arg);
133 $ilDB = $DIC[
'ilDB'];
134 $ilDB->expects($this->once())->method(
"quote")->with(1)->willReturn(
"1");
136 $res = $this->getMockBuilder(ilDBStatement::class)->disableAutoReturnValueGeneration()->getMock();
137 $ilDB->method(
"query")->with(
138 "SELECT * FROM ldap_server_settings WHERE server_id = 1" 141 $res->expects($this->exactly(2))->method(
"fetchRow")->willReturnOnConsecutiveCalls((
object) array(
143 'name' =>
"testserver",
144 'url' =>
"ldap://testurl:389",
147 'referrals' =>
"false",
150 'bind_user' =>
"nobody",
151 'bind_pass' =>
"password",
152 'search_base' =>
"dc=de",
154 'user_attribute' =>
"user",
156 'group_dn' =>
"dc=group",
157 'group_scope' =>
"1",
158 'group_filter' =>
"",
159 'group_member' =>
"",
160 'group_attribute' =>
"",
161 'group_optional' =>
"false",
162 'group_user_filter' =>
".*",
163 'group_memberisdn' =>
"true",
165 'sync_on_login' =>
"true",
166 'sync_per_cron' =>
"false",
167 'role_sync_active' =>
"true",
168 'role_bind_dn' =>
"rolebind",
169 'role_bind_pass' =>
"rolebindpwd",
170 'migration' =>
"true",
171 'authentication' =>
"true",
172 'authentication_type' =>
"1",
173 'username_filter' =>
".*",
174 'escape_dn' =>
"false" 178 $this->assertTrue(
$server->isActive());
Class ChatMainBarProvider .
const SESSION_HANDLING_FIXED
Customizing of pimple-DIC for ILIAS.
setGlobalVariable(string $name, $value)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']