blob: 6c65f91be6b790cb7629a429e32e583cb0b856bd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.syncope.core.persistence.jpa.outer;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
import java.util.List;
import java.util.UUID;
import java.util.stream.Collectors;
import javax.persistence.EntityExistsException;
import javax.persistence.TypedQuery;
import org.apache.syncope.common.lib.SyncopeConstants;
import org.apache.syncope.common.lib.types.AttrSchemaType;
import org.apache.syncope.common.lib.types.IdRepoEntitlement;
import org.apache.syncope.core.persistence.api.dao.AnyTypeDAO;
import org.apache.syncope.core.persistence.api.dao.DerSchemaDAO;
import org.apache.syncope.core.persistence.api.dao.ExternalResourceDAO;
import org.apache.syncope.core.persistence.api.dao.PlainSchemaDAO;
import org.apache.syncope.core.persistence.api.dao.UserDAO;
import org.apache.syncope.core.persistence.api.entity.PlainSchema;
import org.apache.syncope.core.persistence.api.entity.SchemaLabel;
import org.apache.syncope.core.persistence.api.entity.resource.MappingItem;
import org.apache.syncope.core.persistence.api.entity.user.UPlainAttr;
import org.apache.syncope.core.persistence.jpa.AbstractTest;
import org.apache.syncope.core.persistence.jpa.entity.JPASchemaLabel;
import org.apache.syncope.core.persistence.jpa.entity.resource.JPAMappingItem;
import org.apache.syncope.core.spring.security.SyncopeAuthenticationDetails;
import org.apache.syncope.core.spring.security.SyncopeGrantedAuthority;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.transaction.annotation.Transactional;
@Transactional("Master")
public class PlainSchemaTest extends AbstractTest {
@Autowired
private AnyTypeDAO anyTypeDAO;
@Autowired
private UserDAO userDAO;
@Autowired
private PlainSchemaDAO plainSchemaDAO;
@Autowired
private DerSchemaDAO derSchemaDAO;
@Autowired
private ExternalResourceDAO resourceDAO;
@BeforeAll
public static void setAuthContext() {
List<GrantedAuthority> authorities = IdRepoEntitlement.values().stream().
map(entitlement -> new SyncopeGrantedAuthority(entitlement, SyncopeConstants.ROOT_REALM)).
collect(Collectors.toList());
UsernamePasswordAuthenticationToken auth = new UsernamePasswordAuthenticationToken(
new org.springframework.security.core.userdetails.User(
"admin", "FAKE_PASSWORD", authorities), "FAKE_PASSWORD", authorities);
auth.setDetails(new SyncopeAuthenticationDetails(SyncopeConstants.MASTER_DOMAIN, null));
SecurityContextHolder.getContext().setAuthentication(auth);
}
@AfterAll
public static void unsetAuthContext() {
SecurityContextHolder.getContext().setAuthentication(null);
}
@Test
public void checkIdUniqueness() {
assertNotNull(derSchemaDAO.find("cn"));
PlainSchema schema = entityFactory.newEntity(PlainSchema.class);
schema.setKey("cn");
schema.setType(AttrSchemaType.String);
plainSchemaDAO.save(schema);
try {
entityManager().flush();
fail("This should not happen");
} catch (Exception e) {
assertTrue(e instanceof EntityExistsException || e.getCause() instanceof EntityExistsException);
}
}
private List<MappingItem> getMappingItems(final String intAttrName) {
TypedQuery<MappingItem> mapItemsQuery = entityManager().createQuery(
"SELECT e FROM " + JPAMappingItem.class.getSimpleName() + " e WHERE e.intAttrName=:intAttrName",
MappingItem.class);
mapItemsQuery.setParameter("intAttrName", intAttrName);
return mapItemsQuery.getResultList();
}
@Test
public void deleteFullname() {
// fullname is mapped as ConnObjectKey for ws-target-resource-2, need to swap it otherwise validation errors
// will be raised
resourceDAO.find("ws-target-resource-2").
getProvision(anyTypeDAO.findUser()).get().getMapping().getItems().
forEach(item -> {
if ("fullname".equals(item.getIntAttrName())) {
item.setConnObjectKey(false);
} else if ("surname".equals(item.getIntAttrName())) {
item.setConnObjectKey(true);
}
});
// search for user schema fullname
PlainSchema schema = plainSchemaDAO.find("fullname");
assertNotNull(schema);
// check for associated mappings
List<MappingItem> mapItems = getMappingItems("fullname");
assertFalse(mapItems.isEmpty());
// delete user schema fullname
plainSchemaDAO.delete("fullname");
entityManager().flush();
// check for schema deletion
schema = plainSchemaDAO.find("fullname");
assertNull(schema);
plainSchemaDAO.clear();
// check for mappings deletion
mapItems = getMappingItems("fullname");
assertTrue(mapItems.isEmpty());
assertNull(findPlainAttr("01f22fbd-b672-40af-b528-686d9b27ebc4", UPlainAttr.class));
assertNull(findPlainAttr(UUID.randomUUID().toString(), UPlainAttr.class));
assertFalse(userDAO.findByUsername("rossini").getPlainAttr("fullname").isPresent());
assertFalse(userDAO.findByUsername("vivaldi").getPlainAttr("fullname").isPresent());
}
@Test
public void deleteSurname() {
// search for user schema surname
PlainSchema schema = plainSchemaDAO.find("surname");
assertNotNull(schema);
// check for associated mappings
List<MappingItem> mapItems = getMappingItems("surname");
assertFalse(mapItems.isEmpty());
// check for labels
List<SchemaLabel> labels = entityManager().createQuery(
"SELECT e FROM " + JPASchemaLabel.class.getSimpleName() + " e", SchemaLabel.class).getResultList();
assertEquals(5, labels.size());
assertEquals(2, schema.getLabels().size());
// delete user schema surname
plainSchemaDAO.delete("surname");
entityManager().flush();
// check for schema deletion
schema = plainSchemaDAO.find("surname");
assertNull(schema);
labels = entityManager().createQuery(
"SELECT e FROM " + JPASchemaLabel.class.getSimpleName() + " e", SchemaLabel.class).getResultList();
assertEquals(3, labels.size());
}
@Test
public void deleteFirstname() {
int pre = resourceDAO.find("resource-db-pull").
getProvision(anyTypeDAO.findUser()).get().getMapping().getItems().size();
plainSchemaDAO.delete("firstname");
assertNull(plainSchemaDAO.find("firstname"));
assertEquals(pre - 1, resourceDAO.find("resource-db-pull").
getProvision(anyTypeDAO.findUser()).get().getMapping().getItems().size());
}
}