blob: db955199aae5a3fd87d26943eeef353d9c1e4fbb [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.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import java.util.List;
import org.apache.syncope.common.lib.types.IdMImplementationType;
import org.apache.syncope.common.lib.types.IdRepoImplementationType;
import org.apache.syncope.common.lib.types.ImplementationEngine;
import org.apache.syncope.core.persistence.api.dao.ImplementationDAO;
import org.apache.syncope.core.persistence.api.entity.Implementation;
import org.apache.syncope.core.persistence.jpa.AbstractTest;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
@Transactional
public class ImplementationTest extends AbstractTest {
@Autowired
private ImplementationDAO implementationDAO;
@Test
public void findById() {
Implementation impl = implementationDAO.findById("ExpiredBatchCleanup").orElseThrow();
assertEquals(IdRepoImplementationType.TASKJOB_DELEGATE, impl.getType());
assertEquals(ImplementationEngine.JAVA, impl.getEngine());
}
@Test
public void findAll() {
List<? extends Implementation> implementations = implementationDAO.findAll();
assertFalse(implementations.isEmpty());
assertEquals(20, implementations.size());
implementations = implementationDAO.findByType(IdMImplementationType.PULL_ACTIONS);
assertEquals(1, implementations.size());
implementations = implementationDAO.findByType(IdMImplementationType.PROPAGATION_ACTIONS);
assertEquals(2, implementations.size());
implementations = implementationDAO.findByType(IdRepoImplementationType.TASKJOB_DELEGATE);
assertEquals(7, implementations.size());
implementations = implementationDAO.findByType(IdRepoImplementationType.REPORT_DELEGATE);
assertEquals(1, implementations.size());
implementations = implementationDAO.findByType(IdRepoImplementationType.ACCOUNT_RULE);
assertEquals(2, implementations.size());
implementations = implementationDAO.findByType(IdRepoImplementationType.PASSWORD_RULE);
assertEquals(3, implementations.size());
implementations = implementationDAO.findByType(IdRepoImplementationType.ATTR_VALUE_VALIDATOR);
assertEquals(2, implementations.size());
implementations = implementationDAO.findByType(IdMImplementationType.PULL_CORRELATION_RULE);
assertEquals(1, implementations.size());
implementations = implementationDAO.findByType(IdMImplementationType.PUSH_CORRELATION_RULE);
assertEquals(1, implementations.size());
}
@Test
public void create() {
Implementation impl = entityFactory.newEntity(Implementation.class);
impl.setKey("new");
impl.setEngine(ImplementationEngine.GROOVY);
impl.setType(IdRepoImplementationType.ATTR_VALUE_VALIDATOR);
impl.setBody("");
Implementation actual = implementationDAO.save(impl);
assertNotNull(actual);
assertEquals(impl, actual);
}
}