/* * (C) Copyright 2016 Nuxeo SA (http://nuxeo.com/) and others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Contributors: * Guillaume Renard <grenard@nuxeo.com> */ package org.nuxeo.ecm.directory.sql; import static org.junit.Assert.fail; import java.io.Serializable; import java.util.HashMap; import java.util.Map; import javax.inject.Inject; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.nuxeo.ecm.core.api.DocumentModel; import org.nuxeo.ecm.directory.DirectoryDeleteConstraintException; import org.nuxeo.ecm.directory.Session; import org.nuxeo.ecm.directory.api.DirectoryService; import org.nuxeo.ecm.platform.login.test.ClientLoginFeature; import org.nuxeo.ecm.platform.login.test.DummyNuxeoLoginModule; import org.nuxeo.runtime.test.runner.Features; import org.nuxeo.runtime.test.runner.FeaturesRunner; import org.nuxeo.runtime.test.runner.LocalDeploy; /** * @since 8.4 */ @RunWith(FeaturesRunner.class) @Features({ SQLDirectoryFeature.class, ClientLoginFeature.class }) @LocalDeploy({ "org.nuxeo.ecm.directory.sql.tests:test-sql-directories-schema-override.xml", "org.nuxeo.ecm.directory.sql.tests:test-sql-directories-bundle.xml", "org.nuxeo.ecm.directory.sql.tests:test-directory-delete-contrib.xml" }) public class TestSQLDirectoryDeleteConstraints { @Inject ClientLoginFeature dummyLogin; Session continentSession; Session countrySession; @Inject protected DirectoryService directoryService; @Before public void setUp() { continentSession = directoryService.getDirectory("continent").getSession(); countrySession = directoryService.getDirectory("country").getSession(); } @After public void tearDown() throws Exception { continentSession.close(); countrySession.close(); } @Test public void testDeleteEntryWithConstraints() throws Exception { // Given the admin user dummyLogin.login(DummyNuxeoLoginModule.ADMINISTRATOR_USERNAME); // I can delete entry DocumentModel entry = continentSession.getEntry("europe"); Assert.assertNotNull(entry); try { continentSession.deleteEntry("europe"); fail("Entry should not be deletable."); } catch (DirectoryDeleteConstraintException e) { // Expected Map<String, Serializable> params = new HashMap<String, Serializable>(); params.put("parent", "europe"); for (DocumentModel doc : countrySession.query(params)) { countrySession.deleteEntry(doc); } continentSession.deleteEntry("europe"); } dummyLogin.logout(); } }