tao-test/app/generis/test/integration/ModelsRightTest.php

66 lines
2.8 KiB
PHP

<?php
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; under version 2
* of the License (non-upgradable).
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung (under the project TAO-TRANSFER);
* 2009-2012 (update and modification) Public Research Centre Henri Tudor (under the project TAO-SUSTAIN & TAO-DEV);
* 2017 (update and modification) Open Assessment Technologies SA (under the project TAO-PRODUCT);
*/
use oat\generis\model\OntologyRdfs;
use oat\generis\test\GenerisPhpUnitTestRunner;
class ModelsRightTest extends GenerisPhpUnitTestRunner
{
public function setUp(): void
{
GenerisPhpUnitTestRunner::initTest();
}
public function testRightModels()
{
$namespaces = common_ext_NamespaceManager::singleton()->getAllNamespaces();
$localNamespace = $namespaces[LOCAL_NAMESPACE . '#'];
// In tao context, the only one model which is updatable
$updatableModels = core_kernel_persistence_smoothsql_SmoothModel::getUpdatableModelIds();
$this->assertEquals(1, count($updatableModels));
$this->assertEquals(1, $localNamespace->getModelId());
$readableModels = core_kernel_persistence_smoothsql_SmoothModel::getReadableModelIds();
$this->assertTrue(count($readableModels) > 3);
$this->assertTrue(array_search(1, $readableModels) !== false);
$this->assertTrue(array_search(2, $readableModels) !== false);
$this->assertTrue(array_search(3, $readableModels) !== false);
$this->assertTrue(array_search(4, $readableModels) !== false);
// Try to delete a resource of a locked model
$property = new core_kernel_classes_Property(OntologyRdfs::RDFS_LABEL);
$domain = new core_kernel_classes_Property(OntologyRdfs::RDFS_DOMAIN, __METHOD__);
$this->assertFalse($property->removePropertyValues($domain, ['pattern' => OntologyRdfs::RDFS_LABEL]));
// Try to remove a property value which is lg dependent of a locked model
$clazz = new core_kernel_classes_Class('http://www.tao.lu/middleware/Rules.rdf#And');
$this->assertFalse($clazz->removePropertyValueByLg($property, 'EN'));
}
}