blob: d5be6b77b18514725c9d46fa99bd1d7938136cd3 [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.inner;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import java.util.UUID;
import org.apache.syncope.core.persistence.api.dao.CASSPDAO;
import org.apache.syncope.core.persistence.api.entity.am.CASSPClientApp;
import org.apache.syncope.core.persistence.api.entity.policy.AccessPolicy;
import org.apache.syncope.core.persistence.api.entity.policy.AuthPolicy;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
@Transactional("Master")
public class CASSPTest extends AbstractClientAppTest {
@Autowired
private CASSPDAO casspDAO;
@Test
public void find() {
int beforeCount = casspDAO.findAll().size();
CASSPClientApp rp = entityFactory.newEntity(CASSPClientApp.class);
rp.setName("CAS");
rp.setClientAppId(UUID.randomUUID().getMostSignificantBits() & Long.MAX_VALUE);
rp.setDescription("This is a sample CAS RP");
rp.setServiceId("https://syncope.apache.org/.*");
AccessPolicy accessPolicy = buildAndSaveAccessPolicy();
rp.setAccessPolicy(accessPolicy);
AuthPolicy authPolicy = buildAndSaveAuthPolicy();
rp.setAuthPolicy(authPolicy);
casspDAO.save(rp);
assertNotNull(rp);
assertNotNull(rp.getKey());
int afterCount = casspDAO.findAll().size();
assertEquals(afterCount, beforeCount + 1);
rp = casspDAO.findByName("CAS");
assertNotNull(rp);
rp = casspDAO.findByClientAppId(rp.getClientAppId());
assertNotNull(rp);
casspDAO.delete(rp);
assertNull(casspDAO.findByName("CAS"));
}
}