blob: 138ad5ab43cff1d72b556709e374c6328b3ff6ed [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.wa.starter.events;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.util.Map;
import org.apache.syncope.client.lib.SyncopeClient;
import org.apache.syncope.common.lib.audit.AuditEntry;
import org.apache.syncope.wa.bootstrap.WARestClient;
import org.apache.syncope.wa.starter.AbstractTest;
import org.apereo.cas.support.events.CasEventRepositoryFilter;
import org.apereo.cas.support.events.dao.CasEvent;
import org.junit.jupiter.api.Test;
import org.apache.syncope.common.rest.api.service.AuditService;
public class WAEventRepositoryTest extends AbstractTest {
private static AuditService auditService;
private static WARestClient getWaRestClient() {
WARestClient restClient = mock(WARestClient.class);
SyncopeClient syncopeClient = mock(SyncopeClient.class);
auditService = mock(AuditService.class);
when(restClient.getSyncopeClient()).thenReturn(syncopeClient);
when(syncopeClient.getService(AuditService.class)).thenReturn(auditService);
return restClient;
}
@Test
public void saveInternal() {
CasEvent event = new CasEvent(1L, "Auth", "principalId", "creationTime", Map.of("timestamp", "1"));
WAEventRepository eventRepository = new WAEventRepository(CasEventRepositoryFilter.noOp(),
getWaRestClient());
eventRepository.saveInternal(event);
verify(auditService).create(any(AuditEntry.class));
}
}