blob: ca3977d86ddf6dff9f1d1903ae7572cac2815b73 [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.ignite.internal.processors.monitoring.opencensus;
import java.util.HashMap;
import java.util.Map;
import org.apache.ignite.spi.tracing.Scope;
import org.apache.ignite.spi.tracing.TracingSpi;
import org.apache.ignite.spi.tracing.TracingConfigurationCoordinates;
import org.apache.ignite.spi.tracing.TracingConfigurationParameters;
import org.apache.ignite.spi.tracing.opencensus.OpenCensusTracingSpi;
import org.apache.ignite.spi.tracing.TracingConfigurationManager;
import org.junit.Test;
import static org.apache.ignite.spi.tracing.Scope.TX;
/**
* Tests for OpenCensus based {@link TracingConfigurationManager#resetAll(Scope)}.
*/
public class OpenCensusTracingConfigurationResetAllTest extends AbstractTracingTest {
/** {@inheritDoc} */
@Override protected TracingSpi getTracingSpi() {
return new OpenCensusTracingSpi();
}
/**
* Ensure that resetAll() default tracing configuration doesn't effect it.
*/
@Test
public void testThatResetAllDefaultTracingConfigurationDoesNotEffectIt() {
grid(0).tracingConfiguration().resetAll(TX);
grid(0).tracingConfiguration().resetAll(null);
assertEquals(
DFLT_CONFIG_MAP,
grid(0).tracingConfiguration().getAll(null));
}
/**
* Ensure that resetAll(scope) resets specified scope and only specified scope.
*/
@Test
public void testThatResetAllWithSpecificScopeResetsOnlySpecificScopeBasedConfiguration() {
grid(0).tracingConfiguration().set(TX_SCOPE_SPECIFIC_COORDINATES, SOME_SCOPE_SPECIFIC_PARAMETERS);
grid(0).tracingConfiguration().set(TX_LABEL_SPECIFIC_COORDINATES, SOME_LABEL_SPECIFIC_PARAMETERS);
grid(0).tracingConfiguration().set(EXCHANGE_SCOPE_SPECIFIC_COORDINATES, SOME_SCOPE_SPECIFIC_PARAMETERS);
// Reset scope specific configuration.
grid(0).tracingConfiguration().resetAll(TX);
Map<TracingConfigurationCoordinates, TracingConfigurationParameters> expTracingCfg =
new HashMap<>(DFLT_CONFIG_MAP);
expTracingCfg.put(EXCHANGE_SCOPE_SPECIFIC_COORDINATES, SOME_SCOPE_SPECIFIC_PARAMETERS);
assertEquals(
expTracingCfg,
grid(0).tracingConfiguration().getAll(null));
}
/**
* Ensure that resetAll(null) resets configuration of all scopes.
*/
@Test
public void testThatResetAllResetsAllTracingConfigurations() {
grid(0).tracingConfiguration().set(TX_SCOPE_SPECIFIC_COORDINATES, SOME_SCOPE_SPECIFIC_PARAMETERS);
grid(0).tracingConfiguration().set(TX_LABEL_SPECIFIC_COORDINATES, SOME_LABEL_SPECIFIC_PARAMETERS);
grid(0).tracingConfiguration().set(EXCHANGE_SCOPE_SPECIFIC_COORDINATES, SOME_SCOPE_SPECIFIC_PARAMETERS);
// Reset scope specific configuration.
grid(0).tracingConfiguration().resetAll(null);
assertEquals(
DFLT_CONFIG_MAP,
grid(0).tracingConfiguration().getAll(null));
}
}