blob: 2fe958e07aee63200d05cf7f6fdfc9d6889627fe [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.pac4j.saml;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.doNothing;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.nio.charset.StandardCharsets;
import org.apache.commons.io.IOUtils;
import org.apache.syncope.client.lib.SyncopeClient;
import org.apache.syncope.common.lib.to.SAML2SPEntityTO;
import org.apache.syncope.wa.bootstrap.WARestClient;
import org.junit.jupiter.api.Test;
import org.pac4j.saml.client.SAML2Client;
import org.pac4j.saml.metadata.keystore.SAML2KeystoreGenerator;
import org.springframework.core.io.ClassPathResource;
import org.apache.syncope.common.rest.api.service.SAML2SPEntityService;
public class WASAML2ClientKeystoreGeneratorTest extends BaseWASAML2ClientTest {
private static WARestClient getWaRestClient() throws Exception {
WARestClient restClient = mock(WARestClient.class);
SAML2SPEntityTO keystoreTO = new SAML2SPEntityTO.Builder()
.key("CAS")
.keystore(getKeystoreAsString())
.metadata(IOUtils.toString(new ClassPathResource("sp-metadata.xml").getInputStream(),
StandardCharsets.UTF_8))
.build();
SAML2SPEntityService service = mock(SAML2SPEntityService.class);
when(service.get(anyString())).thenReturn(keystoreTO);
doNothing().when(service).set(any(SAML2SPEntityTO.class));
SyncopeClient syncopeClient = mock(SyncopeClient.class);
when(syncopeClient.getService(SAML2SPEntityService.class)).thenReturn(service);
when(restClient.getSyncopeClient()).thenReturn(syncopeClient);
return restClient;
}
@Test
public void generate() throws Exception {
SAML2Client client = getSAML2Client();
SAML2KeystoreGenerator generator = new WASAML2ClientKeystoreGenerator(getWaRestClient(), client);
assertDoesNotThrow(generator::generate);
}
}