Skip to content

Commit

Permalink
fixup! Allow SSO users to send and recieve mail via master password
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <[email protected]>
  • Loading branch information
ChristophWurst committed Oct 30, 2023
1 parent 87a893f commit ba13bb0
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/Migration/Version3500Date20231005091430.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
use OCP\Migration\SimpleMigrationStep;
use Psr\Log\LoggerInterface;

/**
* @codeCoverageIgnore
*/
class Version3500Date20231005091430 extends SimpleMigrationStep {
/** @var IConfig */
protected $config;
Expand Down
44 changes: 44 additions & 0 deletions tests/Unit/Db/ProvisioningTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

declare(strict_types=1);

/*
* @copyright 2023 Christoph Wurst <[email protected]>
*
* @author 2023 Christoph Wurst <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

namespace OCA\Mail\Tests\Unit\Db;

use ChristophWurst\Nextcloud\Testing\TestCase;
use OCA\Mail\Db\Provisioning;

/**
* @covers \OCA\Mail\Db\Provisioning
*/
class ProvisioningTest extends TestCase {

public function testJsonSerialize(): void {
$provisioning = new Provisioning();

$data = $provisioning->jsonSerialize();

self::assertArrayHasKey('masterPasswordEnabled', $data);
}

}

0 comments on commit ba13bb0

Please sign in to comment.