* @author Morris Jobke * @author Victor Dubiniuk * * @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 * */ use OCA\Files_Trashbin\Expiration; use OCP\AppFramework\Utility\ITimeFactory; use OCP\IConfig; use PHPUnit\Framework\MockObject\MockObject; class ExpirationTest extends \Test\TestCase { const SECONDS_PER_DAY = 86400; //60*60*24 const FAKE_TIME_NOW = 1000000; public function expirationData(){ $today = 100*self::SECONDS_PER_DAY; $back10Days = (100-10)*self::SECONDS_PER_DAY; $back20Days = (100-20)*self::SECONDS_PER_DAY; $back30Days = (100-30)*self::SECONDS_PER_DAY; $back35Days = (100-35)*self::SECONDS_PER_DAY; // it should never happen, but who knows :/ $ahead100Days = (100+100)*self::SECONDS_PER_DAY; return [ // Expiration is disabled - always should return false [ 'disabled', $today, $back10Days, false, false], [ 'disabled', $today, $back10Days, true, false], [ 'disabled', $today, $ahead100Days, true, false], // Default: expire in 30 days or earlier when quota requirements are met [ 'auto', $today, $back10Days, false, false], [ 'auto', $today, $back35Days, false, false], [ 'auto', $today, $back10Days, true, true], [ 'auto', $today, $back35Days, true, true], [ 'auto', $today, $ahead100Days, true, true], // The same with 'auto' [ 'auto, auto', $today, $back10Days, false, false], [ 'auto, auto', $today, $back35Days, false, false], [ 'auto, auto', $today, $back10Days, true, true], [ 'auto, auto', $today, $back35Days, true, true], // Keep for 15 days but expire anytime if space needed [ '15, auto', $today, $back10Days, false, false], [ '15, auto', $today, $back20Days, false, false], [ '15, auto', $today, $back10Days, true, true], [ '15, auto', $today, $back20Days, true, true], [ '15, auto', $today, $ahead100Days, true, true], // Expire anytime if space needed, Expire all older than max [ 'auto, 15', $today, $back10Days, false, false], [ 'auto, 15', $today, $back20Days, false, true], [ 'auto, 15', $today, $back10Days, true, true], [ 'auto, 15', $today, $back20Days, true, true], [ 'auto, 15', $today, $ahead100Days, true, true], // Expire all older than max OR older than min if space needed [ '15, 25', $today, $back10Days, false, false], [ '15, 25', $today, $back20Days, false, false], [ '15, 25', $today, $back30Days, false, true], [ '15, 25', $today, $back10Days, false, false], [ '15, 25', $today, $back20Days, true, true], [ '15, 25', $today, $back30Days, true, true], [ '15, 25', $today, $ahead100Days, true, false], // Expire all older than max OR older than min if space needed // MaxgetMockedConfig($retentionObligation); $mockedTimeFactory = $this->getMockedTimeFactory($timeNow); $expiration = new Expiration($mockedConfig, $mockedTimeFactory); $actualResult = $expiration->isExpired($timestamp, $quotaExceeded); $this->assertEquals($expectedResult, $actualResult); } public function configData(){ return [ [ 'disabled', null, null, null], [ 'auto', Expiration::DEFAULT_RETENTION_OBLIGATION, Expiration::NO_OBLIGATION, true ], [ 'auto,auto', Expiration::DEFAULT_RETENTION_OBLIGATION, Expiration::NO_OBLIGATION, true ], [ 'auto, auto', Expiration::DEFAULT_RETENTION_OBLIGATION, Expiration::NO_OBLIGATION, true ], [ 'auto, 3', Expiration::NO_OBLIGATION, 3, true ], [ '5, auto', 5, Expiration::NO_OBLIGATION, true ], [ '3, 5', 3, 5, false ], [ '10, 3', 10, 10, false ], ]; } /** * @dataProvider configData * * @param string $configValue * @param int $expectedMinAge * @param int $expectedMaxAge * @param bool $expectedCanPurgeToSaveSpace */ public function testParseRetentionObligation($configValue, $expectedMinAge, $expectedMaxAge, $expectedCanPurgeToSaveSpace){ $mockedConfig = $this->getMockedConfig($configValue); $mockedTimeFactory = $this->getMockedTimeFactory( time() ); $expiration = new Expiration($mockedConfig, $mockedTimeFactory); $this->assertAttributeEquals($expectedMinAge, 'minAge', $expiration); $this->assertAttributeEquals($expectedMaxAge, 'maxAge', $expiration); $this->assertAttributeEquals($expectedCanPurgeToSaveSpace, 'canPurgeToSaveSpace', $expiration); } public function timestampTestData(){ return [ [ 'disabled', false], [ 'auto', false ], [ 'auto,auto', false ], [ 'auto, auto', false ], [ 'auto, 3', self::FAKE_TIME_NOW - (3*self::SECONDS_PER_DAY) ], [ '5, auto', false ], [ '3, 5', self::FAKE_TIME_NOW - (5*self::SECONDS_PER_DAY) ], [ '10, 3', self::FAKE_TIME_NOW - (10*self::SECONDS_PER_DAY) ], ]; } /** * @dataProvider timestampTestData * * @param string $configValue * @param int $expectedMaxAgeTimestamp */ public function testGetMaxAgeAsTimestamp($configValue, $expectedMaxAgeTimestamp){ $mockedConfig = $this->getMockedConfig($configValue); $mockedTimeFactory = $this->getMockedTimeFactory( self::FAKE_TIME_NOW ); $expiration = new Expiration($mockedConfig, $mockedTimeFactory); $actualTimestamp = $expiration->getMaxAgeAsTimestamp(); $this->assertEquals($expectedMaxAgeTimestamp, $actualTimestamp); } /** * @param int $time * @return ITimeFactory|MockObject */ private function getMockedTimeFactory($time){ $mockedTimeFactory = $this->createMock(ITimeFactory::class); $mockedTimeFactory->expects($this->any()) ->method('getTime') ->willReturn($time); return $mockedTimeFactory; } /** * @param string $returnValue * @return IConfig|MockObject */ private function getMockedConfig($returnValue){ $mockedConfig = $this->createMock(IConfig::class); $mockedConfig->expects($this->any()) ->method('getSystemValue') ->willReturn($returnValue); return $mockedConfig; } }