blob: be0e2c8fb69bf0cfdb9354a1c9acd805011dd84c [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.hadoop.hdds.scm.cli.container;
import org.apache.hadoop.hdds.protocol.proto.HddsProtos;
import org.apache.hadoop.hdds.scm.client.ScmClient;
import org.apache.hadoop.hdds.scm.container.ContainerID;
import org.apache.hadoop.hdds.scm.container.ReplicationManagerReport;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mockito;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;
/**
* Tests for the Container ReportSubCommand class.
*/
public class TestReportSubCommand {
private ReportSubcommand cmd;
private static final int SEED = 10;
private final ByteArrayOutputStream outContent = new ByteArrayOutputStream();
private final ByteArrayOutputStream errContent = new ByteArrayOutputStream();
private final PrintStream originalOut = System.out;
private final PrintStream originalErr = System.err;
private static final String DEFAULT_ENCODING = StandardCharsets.UTF_8.name();
@Before
public void setup() throws UnsupportedEncodingException {
cmd = new ReportSubcommand();
System.setOut(new PrintStream(outContent, false, DEFAULT_ENCODING));
System.setErr(new PrintStream(errContent, false, DEFAULT_ENCODING));
}
@After
public void tearDown() {
System.setOut(originalOut);
System.setErr(originalErr);
}
@Test
public void testCorrectValuesAppearInEmptyReport() throws IOException {
ScmClient scmClient = mock(ScmClient.class);
Mockito.when(scmClient.getReplicationManagerReport())
.thenAnswer(invocation -> new ReplicationManagerReport());
cmd.execute(scmClient);
for (HddsProtos.LifeCycleState state : HddsProtos.LifeCycleState.values()) {
Pattern p = Pattern.compile(
"^" + state.toString() + ": 0$", Pattern.MULTILINE);
Matcher m = p.matcher(outContent.toString(DEFAULT_ENCODING));
assertTrue(m.find());
}
for (ReplicationManagerReport.HealthState state :
ReplicationManagerReport.HealthState.values()) {
Pattern p = Pattern.compile(
"^" + state.toString() + ": 0$", Pattern.MULTILINE);
Matcher m = p.matcher(outContent.toString(DEFAULT_ENCODING));
assertTrue(m.find());
}
}
@Test
public void testCorrectValuesAppearInReport() throws IOException {
ScmClient scmClient = mock(ScmClient.class);
Mockito.when(scmClient.getReplicationManagerReport())
.thenAnswer(invocation -> createReport());
cmd.execute(scmClient);
int counter = SEED;
for (HddsProtos.LifeCycleState state : HddsProtos.LifeCycleState.values()) {
Pattern p = Pattern.compile(
"^" + state.toString() + ": " + counter + "$", Pattern.MULTILINE);
Matcher m = p.matcher(outContent.toString(DEFAULT_ENCODING));
assertTrue(m.find());
counter++;
}
counter = SEED;
for (ReplicationManagerReport.HealthState state :
ReplicationManagerReport.HealthState.values()) {
Pattern p = Pattern.compile(
"^" + state.toString() + ": " + counter + "$", Pattern.MULTILINE);
Matcher m = p.matcher(outContent.toString(DEFAULT_ENCODING));
assertTrue(m.find());
// Check the correct samples are returned
p = Pattern.compile(
"^First 100 " + state + " containers:\n"
+ containerList(0, counter) + "$", Pattern.MULTILINE);
m = p.matcher(outContent.toString(DEFAULT_ENCODING));
assertTrue(m.find());
counter++;
}
}
private ReplicationManagerReport createReport() {
ReplicationManagerReport report = new ReplicationManagerReport();
int counter = SEED;
for (HddsProtos.LifeCycleState state : HddsProtos.LifeCycleState.values()) {
for (int i = 0; i < counter; i++) {
report.increment(state);
}
counter++;
}
// Add samples
counter = SEED;
for (ReplicationManagerReport.HealthState state
: ReplicationManagerReport.HealthState.values()) {
for (int i = 0; i < counter; i++) {
report.incrementAndSample(state, ContainerID.valueOf(i));
}
counter++;
}
return report;
}
private String containerList(int start, int end) {
StringBuilder sb = new StringBuilder();
for (int i = start; i < end; i++) {
if (i != start) {
sb.append(", ");
}
sb.append("#" + i);
}
return sb.toString();
}
}