blob: be026ee8a4835c0763e5d6a3d2e5ec7d92349b74 [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.geode.management.internal.cli.commands;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.mockito.Mockito;
import org.apache.geode.management.internal.cli.AbstractCliAroundInterceptor;
import org.apache.geode.management.internal.cli.GfshParseResult;
import org.apache.geode.management.internal.cli.result.model.ResultModel;
import org.apache.geode.test.junit.categories.GfshTest;
import org.apache.geode.test.junit.categories.LoggingTest;
@Category({GfshTest.class, LoggingTest.class})
public class LogLevelInterceptorTest {
private final List<AbstractCliAroundInterceptor> interceptors = new ArrayList<>();
private GfshParseResult parseResult;
private ResultModel result;
@Before
public void before() {
interceptors.add(new ExportLogsInterceptor());
interceptors.add(new AlterRuntimeConfigCommand.AlterRuntimeInterceptor());
interceptors.add(new ChangeLogLevelCommand.ChangeLogLevelCommandInterceptor());
parseResult = Mockito.mock(GfshParseResult.class);
when(parseResult.getParamValue("logs-only")).thenReturn(true);
when(parseResult.getParamValue("stats-only")).thenReturn(false);
}
@Test
public void testInvalidLogLevel() {
when(parseResult.getParamValueAsString("log-level")).thenReturn("test");
when(parseResult.getParamValueAsString("loglevel")).thenReturn("test");
for (AbstractCliAroundInterceptor interceptor : interceptors) {
result = (ResultModel) interceptor.preExecution(parseResult);
assertThat(result.getInfoSection("info").getContent())
.containsOnly("Invalid log level: test");
}
}
@Test
public void testGeodeLogLevel() {
when(parseResult.getParamValueAsString("log-level")).thenReturn("fine");
when(parseResult.getParamValueAsString("loglevel")).thenReturn("fine");
for (AbstractCliAroundInterceptor interceptor : interceptors) {
result = (ResultModel) interceptor.preExecution(parseResult);
assertThat(result.getInfoSection("info").getContent()).containsOnly("");
}
}
@Test
public void testLog4JLevel() {
when(parseResult.getParamValueAsString("log-level")).thenReturn("trace");
when(parseResult.getParamValueAsString("loglevel")).thenReturn("trace");
for (AbstractCliAroundInterceptor interceptor : interceptors) {
result = (ResultModel) interceptor.preExecution(parseResult);
assertThat(result.getInfoSection("info").getContent()).containsOnly("");
}
}
}