blob: c665c52acb9b33f7928fafa11593c0678009c932 [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.safeguard.ft.tck;
import java.util.stream.Stream;
import javax.enterprise.inject.spi.CDI;
import org.apache.safeguard.impl.circuitbreaker.CircuitBreakerInterceptor;
import org.apache.webbeans.spi.ContainerLifecycle;
import org.eclipse.microprofile.metrics.MetricRegistry;
import org.jboss.arquillian.container.test.spi.client.deployment.ApplicationArchiveProcessor;
import org.jboss.arquillian.core.api.Instance;
import org.jboss.arquillian.core.api.annotation.Inject;
import org.jboss.arquillian.core.api.annotation.Observes;
import org.jboss.arquillian.core.spi.LoadableExtension;
import org.jboss.arquillian.test.spi.event.suite.After;
public class SafeguardTCKExtension implements LoadableExtension {
@Override
public void register(final ExtensionBuilder extensionBuilder) {
extensionBuilder.service(ApplicationArchiveProcessor.class, ArchiveAppender.class)
.observer(LeakingTCKWorkaround.class);
}
public static class LeakingTCKWorkaround {
@Inject
private Instance<ContainerLifecycle> lifecycle;
public void clearCache(@Observes(precedence = -1) final After event) {
final CDI<Object> cdi = CDI.current();
final MetricRegistry registry = cdi.select(MetricRegistry.class).get();
cdi.select(CircuitBreakerInterceptor.Cache.class).get().getCircuitBreakers().clear();
Stream.concat(registry.getGauges().keySet().stream(), registry.getCounters().keySet().stream())
.filter(it -> it.startsWith("ft.") && it.startsWith(".circuitbreaker."))
.forEach(registry::remove);
}
}
}