-
Notifications
You must be signed in to change notification settings - Fork 2.1k
LDAP: do not attempt to process user records without display name, fi… #20804
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
apps/user_ldap/tests/integration/lib/integrationtestbatchapplyuserattributes.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| <?php | ||
| /** | ||
| * @author Arthur Schiwon <[email protected]> | ||
| * | ||
| * @copyright Copyright (c) 2015, ownCloud, Inc. | ||
| * @license AGPL-3.0 | ||
| * | ||
| * This code is free software: you can redistribute it and/or modify | ||
| * it under the terms of the GNU Affero General Public License, version 3, | ||
| * as published by the Free Software Foundation. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| * GNU Affero General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Affero General Public License, version 3, | ||
| * along with this program. If not, see <http://www.gnu.org/licenses/> | ||
| * | ||
| */ | ||
|
|
||
| namespace OCA\user_ldap\tests\integration\lib; | ||
|
|
||
| use OCA\User_LDAP\Mapping\UserMapping; | ||
| use OCA\user_ldap\tests\integration\AbstractIntegrationTest; | ||
|
|
||
| require_once __DIR__ . '/../../../../../lib/base.php'; | ||
|
|
||
| class IntegrationTestBatchApplyUserAttributes extends AbstractIntegrationTest { | ||
| /** | ||
| * prepares the LDAP environment and sets up a test configuration for | ||
| * the LDAP backend. | ||
| */ | ||
| public function init() { | ||
| require(__DIR__ . '/../setup-scripts/createExplicitUsers.php'); | ||
| require(__DIR__ . '/../setup-scripts/createUsersWithoutDisplayName.php'); | ||
| parent::init(); | ||
|
|
||
| $this->mapping = new UserMapping(\OC::$server->getDatabaseConnection()); | ||
| $this->mapping->clear(); | ||
| $this->access->setUserMapper($this->mapping); | ||
| } | ||
|
|
||
| /** | ||
| * sets up the LDAP configuration to be used for the test | ||
| */ | ||
| protected function initConnection() { | ||
| parent::initConnection(); | ||
| $this->connection->setConfiguration([ | ||
| 'ldapUserDisplayName' => 'displayname', | ||
| ]); | ||
| } | ||
|
|
||
| /** | ||
| * indirectly tests whether batchApplyUserAttributes does it job properly, | ||
| * when a user without display name is included in the result set from LDAP. | ||
| * | ||
| * @return bool | ||
| */ | ||
| protected function case1() { | ||
| $result = $this->access->fetchListOfUsers('objectclass=person', 'dn'); | ||
| // on the original issue, PHP would emit a fatal error | ||
| // – cannot catch it here, but will render the test as unsuccessful | ||
| return is_array($result) && !empty($result); | ||
| } | ||
|
|
||
| } | ||
|
|
||
| require_once(__DIR__ . '/../setup-scripts/config.php'); | ||
| $test = new IntegrationTestBatchApplyUserAttributes($host, $port, $adn, $apwd, $bdn); | ||
| $test->init(); | ||
| $test->run(); | ||
59 changes: 59 additions & 0 deletions
59
apps/user_ldap/tests/integration/setup-scripts/createUsersWithoutDisplayName.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| <?php | ||
| /** | ||
| * @author Arthur Schiwon <[email protected]> | ||
| * | ||
| * @copyright Copyright (c) 2015, ownCloud, Inc. | ||
| * @license AGPL-3.0 | ||
| * | ||
| * This code is free software: you can redistribute it and/or modify | ||
| * it under the terms of the GNU Affero General Public License, version 3, | ||
| * as published by the Free Software Foundation. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| * GNU Affero General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Affero General Public License, version 3, | ||
| * along with this program. If not, see <http://www.gnu.org/licenses/> | ||
| * | ||
| */ | ||
| if(php_sapi_name() !== 'cli') { | ||
| print('Only via CLI, please.'); | ||
| exit(1); | ||
| } | ||
|
|
||
| include __DIR__ . '/config.php'; | ||
|
|
||
| $cr = ldap_connect($host, $port); | ||
| ldap_set_option($cr, LDAP_OPT_PROTOCOL_VERSION, 3); | ||
| $ok = ldap_bind($cr, $adn, $apwd); | ||
|
|
||
| if (!$ok) { | ||
| die(ldap_error($cr)); | ||
| } | ||
|
|
||
| $ouName = 'Users'; | ||
| $ouDN = 'ou=' . $ouName . ',' . $bdn; | ||
|
|
||
| $users = ['robot']; | ||
|
|
||
| foreach ($users as $uid) { | ||
| $newDN = 'uid=' . $uid . ',' . $ouDN; | ||
| $fn = ucfirst($uid); | ||
| $sn = ucfirst(str_shuffle($uid)); // not so explicit but it's OK. | ||
|
|
||
| $entry = []; | ||
| $entry['cn'] = ucfirst($uid); | ||
| $entry['objectclass'][] = 'inetOrgPerson'; | ||
| $entry['objectclass'][] = 'person'; | ||
| $entry['sn'] = $sn; | ||
| $entry['userPassword'] = $uid; | ||
|
|
||
| $ok = ldap_add($cr, $newDN, $entry); | ||
| if ($ok) { | ||
| echo('created user ' . ': ' . $entry['cn'] . PHP_EOL); | ||
| } else { | ||
| die(ldap_error($cr)); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Such tests with side effects make me shiver so much as users can also request them via web 🙊
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not be packed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately. We do. Everything that you put into the tests folder will be packaged. One exception being the one in the root folder 👯 🚀 🙈
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's put it this way: at least Apache users should be safe, right. With the .htaccess in front. Anyway, I see this rather as issue in the packaging script than here.