blob: ccc1c80569a6a8191b10f47960395b3b63f48b48 [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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.ozone.recon.scm;
import static org.apache.hadoop.hdds.protocol.MockDatanodeDetails.randomDatanodeDetails;
import static org.apache.hadoop.hdds.protocol.proto.HddsProtos.LifeCycleState.OPEN;
import static org.apache.hadoop.hdds.protocol.proto.HddsProtos.ReplicationFactor.ONE;
import static org.apache.hadoop.hdds.protocol.proto.HddsProtos.ReplicationType.STAND_ALONE;
import static org.apache.hadoop.ozone.recon.OMMetadataManagerTestUtils.getRandomPipeline;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.util.List;
import java.util.NavigableSet;
import org.apache.hadoop.hdds.protocol.DatanodeDetails;
import org.apache.hadoop.hdds.scm.container.ContainerID;
import org.apache.hadoop.hdds.scm.container.ContainerInfo;
import org.apache.hadoop.hdds.scm.container.common.helpers.ContainerWithPipeline;
import org.apache.hadoop.hdds.scm.pipeline.Pipeline;
import org.junit.Test;
/**
* Test Recon Container Manager.
*/
public class TestReconContainerManager
extends AbstractReconContainerManagerTest {
@Test
public void testAddNewContainer() throws IOException {
ContainerID containerID = new ContainerID(100L);
Pipeline pipeline = getRandomPipeline();
ReconPipelineManager pipelineManager = getPipelineManager();
pipelineManager.addPipeline(pipeline);
ContainerInfo containerInfo =
new ContainerInfo.Builder()
.setContainerID(containerID.getId())
.setNumberOfKeys(10)
.setPipelineID(pipeline.getId())
.setReplicationFactor(ONE)
.setOwner("test")
.setState(OPEN)
.setReplicationType(STAND_ALONE)
.build();
ContainerWithPipeline containerWithPipeline =
new ContainerWithPipeline(containerInfo, pipeline);
ReconContainerManager containerManager = getContainerManager();
assertFalse(containerManager.exists(containerID));
containerManager.addNewContainer(
containerID.getId(), containerWithPipeline);
assertTrue(containerManager.exists(containerID));
List<ContainerInfo> containers = containerManager.getContainers(OPEN);
assertEquals(1, containers.size());
assertEquals(containerInfo, containers.get(0));
NavigableSet<ContainerID> containersInPipeline =
pipelineManager.getContainersInPipeline(pipeline.getId());
assertEquals(1, containersInPipeline.size());
assertEquals(containerID, containersInPipeline.first());
}
@Test
public void testCheckAndAddNewContainer() throws IOException {
ContainerID containerID = new ContainerID(100L);
ReconContainerManager containerManager = getContainerManager();
assertFalse(containerManager.exists(containerID));
DatanodeDetails datanodeDetails = randomDatanodeDetails();
containerManager.checkAndAddNewContainer(containerID, datanodeDetails);
assertTrue(containerManager.exists(containerID));
// Doing it one more time should not change any state.
containerManager.checkAndAddNewContainer(containerID, datanodeDetails);
assertTrue(containerManager.exists(containerID));
}
}