001/**
002 * Copyright (C) 2006-2022 Talend Inc. - www.talend.com
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.talend.sdk.component.junit.environment;
017
018import org.junit.runner.Description;
019import org.junit.runner.notification.RunNotifier;
020import org.junit.runners.model.InitializationError;
021import org.talend.sdk.component.junit.delegate.DelegatingRunner;
022
023public class MultiEnvironmentsRunner extends DelegatingRunner {
024
025    private final EnvironmentsConfigurationParser configuration;
026
027    public MultiEnvironmentsRunner(final Class<?> testClass) throws InitializationError {
028        super(testClass);
029        configuration = new EnvironmentsConfigurationParser(testClass);
030    }
031
032    @Override
033    public void run(final RunNotifier notifier) {
034        configuration.stream().forEach(e -> {
035            if (DecoratingEnvironmentProvider.class.isInstance(e)) {
036                final DecoratingEnvironmentProvider dep = DecoratingEnvironmentProvider.class.cast(e);
037                if (!dep.isActive()) {
038                    notifier.fireTestFinished(Description.createTestDescription(getTestClass(), dep.getName()));
039                    return;
040                }
041            }
042            try (final AutoCloseable ignored = e.start(getTestClass(), getTestClass().getAnnotations())) {
043                MultiEnvironmentsRunner.super.run(notifier);
044            } catch (final Exception e1) {
045                throw new IllegalStateException(e1);
046            }
047        });
048    }
049}