do not run into UniqueConstraintViolationException
… when an unmapped user logs in for the first time when background job mode is ajax and no memcache was configured. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
bbe44108b5
commit
49456e42f9
|
@ -421,11 +421,13 @@ class User {
|
|||
if($displayName2 !== '') {
|
||||
$displayName .= ' (' . $displayName2 . ')';
|
||||
}
|
||||
$oldName = $this->config->getUserValue($this->uid, 'user_ldap', 'displayName', '');
|
||||
if ($oldName !== $displayName) {
|
||||
$oldName = $this->config->getUserValue($this->uid, 'user_ldap', 'displayName', null);
|
||||
if ($oldName !== $displayName) {
|
||||
$this->store('displayName', $displayName);
|
||||
$user = $this->userManager->get($this->getUsername());
|
||||
if ($user instanceof \OC\User\User) {
|
||||
if (!empty($oldName) && $user instanceof \OC\User\User) {
|
||||
// if it was empty, it would be a new record, not a change emitting the trigger could
|
||||
// potentially cause a UniqueConstraintViolationException, depending on some factors.
|
||||
$user->triggerChange('displayName', $displayName);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -998,25 +998,35 @@ class UserTest extends \Test\TestCase {
|
|||
|
||||
public function displayNameProvider() {
|
||||
return [
|
||||
['Roland Deschain', '', 'Roland Deschain'],
|
||||
['Roland Deschain', null, 'Roland Deschain'],
|
||||
['Roland Deschain', 'gunslinger@darktower.com', 'Roland Deschain (gunslinger@darktower.com)'],
|
||||
['Roland Deschain', '', 'Roland Deschain', false],
|
||||
['Roland Deschain', '', 'Roland Deschain', true],
|
||||
['Roland Deschain', null, 'Roland Deschain', false],
|
||||
['Roland Deschain', 'gunslinger@darktower.com', 'Roland Deschain (gunslinger@darktower.com)', false],
|
||||
['Roland Deschain', 'gunslinger@darktower.com', 'Roland Deschain (gunslinger@darktower.com)', true],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider displayNameProvider
|
||||
*/
|
||||
public function testComposeAndStoreDisplayName($part1, $part2, $expected) {
|
||||
public function testComposeAndStoreDisplayName($part1, $part2, $expected, $expectTriggerChange) {
|
||||
$this->config->expects($this->once())
|
||||
->method('setUserValue');
|
||||
$oldName = $expectTriggerChange ? 'xxGunslingerxx' : null;
|
||||
$this->config->expects($this->once())
|
||||
->method('getUserValue');
|
||||
->method('getUserValue')
|
||||
->with($this->user->getUsername(), 'user_ldap', 'displayName', null)
|
||||
->willReturn($oldName);
|
||||
|
||||
$ncUserObj = $this->createMock(\OC\User\User::class);
|
||||
$ncUserObj->expects($this->once())
|
||||
->method('triggerChange')
|
||||
->with('displayName', $expected);
|
||||
if ($expectTriggerChange) {
|
||||
$ncUserObj->expects($this->once())
|
||||
->method('triggerChange')
|
||||
->with('displayName', $expected);
|
||||
} else {
|
||||
$ncUserObj->expects($this->never())
|
||||
->method('triggerChange');
|
||||
}
|
||||
$this->userManager->expects($this->once())
|
||||
->method('get')
|
||||
->willReturn($ncUserObj);
|
||||
|
|
Loading…
Reference in New Issue