nextcloud-custom-apps-face-.../git_facerecognition/tests/Integration/AddMissingImagesTaskTest.php
2024-09-03 09:12:12 +05:00

138 lines
5.6 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2017, Matias De lellis <mati86dl@gmail.com>
* @copyright Copyright (c) 2018, Branko Kokanovic <branko@kokanovic.org>
*
* @author Branko Kokanovic <branko@kokanovic.org>
*
* @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\FaceRecognition\Tests\Integration;
use OC;
use OC\Files\View;
use OCP\IConfig;
use OCP\IUser;
use OCP\AppFramework\App;
use OCP\AppFramework\IAppContainer;
use OCA\FaceRecognition\BackgroundJob\FaceRecognitionContext;
use OCA\FaceRecognition\BackgroundJob\FaceRecognitionLogger;
use OCA\FaceRecognition\BackgroundJob\Tasks\AddMissingImagesTask;
use OCA\FaceRecognition\Model\ModelManager;
class AddMissingImagesTaskTest extends IntegrationTestCase {
/**
* Test that AddMissingImagesTask is updating app config that it finished full scan.
* Note that, in this test, we cannot check number of newly found images,
* as this instance might be in use and can lead to wrong results
*/
public function testFinishedFullScan() {
$this->doMissingImageScan();
$fullImageScanDone = $this->config->getUserValue($this->user->getUID(), 'facerecognition', AddMissingImagesTask::FULL_IMAGE_SCAN_DONE_KEY, 'false');
$this->assertEquals('true', $fullImageScanDone);
}
/**
* Test that, after one scan is done, next scan will not find any new images
*/
public function testNewScanIsEmpty() {
$imageMapper = $this->container->query('OCA\FaceRecognition\Db\ImageMapper');
// Do it once, to make sure all images are inserted
$this->doMissingImageScan();
$fullImageScanDone = $this->config->getUserValue($this->user->getUID(), 'facerecognition', AddMissingImagesTask::FULL_IMAGE_SCAN_DONE_KEY, 'false');
$this->assertEquals('true', $fullImageScanDone);
// Second time, there should be no newly inserted images
$this->doMissingImageScan();
$this->assertEquals(0, $this->context->propertyBag['AddMissingImagesTask_insertedImages']);
$this->assertEquals(0, count($imageMapper->findImagesWithoutFaces($this->user, ModelManager::DEFAULT_FACE_MODEL_ID)));
}
/**
* Test that empty crawling will do nothing
*/
public function testCrawlNoImages() {
$this->loginAsUser($this->user->getUID());
$view = new View('/' . $this->user->getUID() . '/files');
$view->file_put_contents("foo.txt", "content");
$this->doMissingImageScan($this->user);
$imageMapper = $this->container->query('OCA\FaceRecognition\Db\ImageMapper');
$this->assertEquals(0, count($imageMapper->findImagesWithoutFaces($this->user, ModelManager::DEFAULT_FACE_MODEL_ID)));
$this->assertEquals(0, $this->context->propertyBag['AddMissingImagesTask_insertedImages']);
}
/**
* Test that crawling with some images will actually find them and add them to database
*/
public function testCrawl() {
$this->loginAsUser($this->user->getUID());
$view = new View('/' . $this->user->getUID() . '/files');
$view->file_put_contents("foo1.txt", "content");
$view->file_put_contents("foo2.jpg", "content");
$view->file_put_contents("foo3.png", "content");
$view->mkdir('dir');
$view->file_put_contents("dir/foo4.txt", "content");
$view->file_put_contents("dir/foo5.bmp", "content");
$view->file_put_contents("dir/foo6.png", "content");
$view->mkdir('dir_nomedia');
$view->file_put_contents("dir_nomedia/.nomedia", "content");
$view->file_put_contents("dir_nomedia/foo7.jpg", "content");
$this->doMissingImageScan($this->user);
// We should find 3 images only - foo2.jpg, foo3.png and dir/foo6.png. BMP mimetype (foo5.bmp) is not enabled by default.
$imageMapper = $this->container->query('OCA\FaceRecognition\Db\ImageMapper');
$this->assertEquals(3, count($imageMapper->findImagesWithoutFaces($this->user, ModelManager::DEFAULT_FACE_MODEL_ID)));
$this->assertEquals(3, $this->context->propertyBag['AddMissingImagesTask_insertedImages']);
}
/**
* Helper method to set up and do scanning
*
* @param IUser|null $contextUser Optional user to scan for. If not given, images for all users will be scanned.
*/
private function doMissingImageScan($contextUser = null) {
// Reset config that full scan is done, to make sure we are scanning again
$this->config->setUserValue($this->user->getUID(), 'facerecognition', AddMissingImagesTask::FULL_IMAGE_SCAN_DONE_KEY, 'false');
$imageMapper = $this->container->query('OCA\FaceRecognition\Db\ImageMapper');
$fileService = $this->container->query('OCA\FaceRecognition\Service\FileService');
$settingsService = $this->container->query('OCA\FaceRecognition\Service\SettingsService');
$addMissingImagesTask = new AddMissingImagesTask($imageMapper, $fileService, $settingsService);
$this->assertNotEquals("", $addMissingImagesTask->description());
// Set user for which to do scanning, if any
$this->context->user = $contextUser;
// Since this task returns generator, iterate until it is done
$generator = $addMissingImagesTask->execute($this->context);
foreach ($generator as $_) {
}
$this->assertEquals(true, $generator->getReturn());
}
}