org.apache.directory.scim.compliance.junit.EmbeddedServerExtension Maven / Gradle / Ivy
The newest version!
/*
* 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.directory.scim.compliance.junit;
import org.apache.commons.lang3.reflect.FieldUtils;
import org.junit.jupiter.api.extension.AfterAllCallback;
import org.junit.jupiter.api.extension.BeforeAllCallback;
import org.junit.jupiter.api.extension.BeforeEachCallback;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.Field;
import java.net.ServerSocket;
import java.net.URI;
import java.util.Arrays;
import java.util.List;
import java.util.ServiceLoader;
public class EmbeddedServerExtension implements BeforeAllCallback, BeforeEachCallback, AfterAllCallback {
private static final Logger logger = LoggerFactory.getLogger(EmbeddedServerExtension.class);
private ScimTestServer server;
private URI uri;
@Override
public void beforeAll(ExtensionContext context) throws Exception {
ServiceLoader serviceLoader = ServiceLoader.load(ScimTestServer.class);
if (serviceLoader.findFirst().isPresent()) {
server = serviceLoader.findFirst().get();
uri = server.start(randomPort());
} else {
logger.info("Could not find implementation of ScimTestServer via ServiceLoader, assuming server is started using different technique");
}
}
@Override
public void beforeEach(ExtensionContext context) throws Exception {
if (uri != null) {
final List