TestBlockInfo.java
/**
* 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.hdfs.server.blockmanagement;
import static org.apache.hadoop.hdfs.server.namenode.INodeId.INVALID_INODE_ID;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Random;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import org.apache.hadoop.fs.StorageType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.hadoop.hdfs.DFSTestUtil;
import org.apache.hadoop.hdfs.protocol.Block;
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStorageInfo.AddBlockResult;
import org.apache.hadoop.hdfs.server.common.GenerationStamp;
import org.apache.hadoop.hdfs.server.protocol.DatanodeStorage;
import org.junit.jupiter.api.Test;
import org.mockito.Mockito;
/**
* This class provides tests for BlockInfo class, which is used in BlocksMap.
* The test covers BlockList.listMoveToHead, used for faster block report
* processing in DatanodeDescriptor.reportDiff.
*/
public class TestBlockInfo {
private static final Logger LOG = LoggerFactory
.getLogger("org.apache.hadoop.hdfs.TestBlockInfo");
@Test
public void testIsDeleted() {
BlockInfo blockInfo = new BlockInfoContiguous((short) 3);
BlockCollection bc = Mockito.mock(BlockCollection.class);
blockInfo.setBlockCollectionId(1000);
assertFalse(blockInfo.isDeleted());
blockInfo.setBlockCollectionId(INVALID_INODE_ID);
assertTrue(blockInfo.isDeleted());
}
@Test
public void testAddStorage() throws Exception {
BlockInfo blockInfo = new BlockInfoContiguous((short) 3);
final DatanodeStorageInfo storage = DFSTestUtil.createDatanodeStorageInfo(
"storageID", "127.0.0.1");
boolean added = blockInfo.addStorage(storage, blockInfo);
assertTrue(added);
assertEquals(storage, blockInfo.getStorageInfo(0));
}
@Test
public void testAddProvidedStorage() throws Exception {
// block with only provided storage
BlockInfo blockInfo = new BlockInfoContiguous((short) 3);
DatanodeStorageInfo providedStorage = mock(DatanodeStorageInfo.class);
when(providedStorage.getStorageType()).thenReturn(StorageType.PROVIDED);
boolean added = blockInfo.addStorage(providedStorage, blockInfo);
assertTrue(added);
assertEquals(providedStorage, blockInfo.getStorageInfo(0));
assertTrue(blockInfo.isProvided());
}
@Test
public void testAddTwoStorageTypes() throws Exception {
// block with only disk storage
BlockInfo blockInfo = new BlockInfoContiguous((short) 3);
DatanodeStorageInfo diskStorage = mock(DatanodeStorageInfo.class);
DatanodeDescriptor mockDN = mock(DatanodeDescriptor.class);
when(diskStorage.getDatanodeDescriptor()).thenReturn(mockDN);
when(diskStorage.getStorageType()).thenReturn(StorageType.DISK);
boolean added = blockInfo.addStorage(diskStorage, blockInfo);
assertTrue(added);
assertEquals(diskStorage, blockInfo.getStorageInfo(0));
assertFalse(blockInfo.isProvided());
// now add provided storage
DatanodeStorageInfo providedStorage = mock(DatanodeStorageInfo.class);
when(providedStorage.getStorageType()).thenReturn(StorageType.PROVIDED);
added = blockInfo.addStorage(providedStorage, blockInfo);
assertTrue(added);
assertTrue(blockInfo.isProvided());
}
@Test
public void testReplaceStorage() throws Exception {
// Create two dummy storages.
final DatanodeStorageInfo storage1 = DFSTestUtil.createDatanodeStorageInfo(
"storageID1", "127.0.0.1");
final DatanodeStorageInfo storage2 = new DatanodeStorageInfo(
storage1.getDatanodeDescriptor(), new DatanodeStorage("storageID2"));
final int NUM_BLOCKS = 10;
BlockInfo[] blockInfos = new BlockInfo[NUM_BLOCKS];
// Create a few dummy blocks and add them to the first storage.
for (int i = 0; i < NUM_BLOCKS; ++i) {
blockInfos[i] = new BlockInfoContiguous((short) 3);
storage1.addBlock(blockInfos[i]);
}
// Try to move one of the blocks to a different storage.
boolean added =
storage2.addBlock(blockInfos[NUM_BLOCKS / 2]) == AddBlockResult.ADDED;
assertThat(added).isEqualTo(false);
assertThat(blockInfos[NUM_BLOCKS / 2].getStorageInfo(0)).isEqualTo(storage2);
}
@Test
public void testAddStorageWithDifferentBlock() throws Exception {
assertThrows(IllegalArgumentException.class, () -> {
BlockInfo blockInfo1 = new BlockInfoContiguous(new Block(1000L), (short) 3);
BlockInfo blockInfo2 = new BlockInfoContiguous(new Block(1001L), (short) 3);
final DatanodeStorageInfo storage = DFSTestUtil.createDatanodeStorageInfo(
"storageID", "127.0.0.1");
blockInfo1.addStorage(storage, blockInfo2);
});
}
@Test
public void testBlockListMoveToHead() throws Exception {
LOG.info("BlockInfo moveToHead tests...");
final int maxBlocks = 10;
DatanodeStorageInfo dd =
DFSTestUtil.createDatanodeStorageInfo("s1", "1.1.1.1");
ArrayList<Block> blockList = new ArrayList<Block>(maxBlocks);
ArrayList<BlockInfo> blockInfoList = new ArrayList<BlockInfo>();
int headIndex;
int curIndex;
LOG.info("Building block list...");
for (int i = 0; i < maxBlocks; i++) {
blockList.add(new Block(i, 0, GenerationStamp.LAST_RESERVED_STAMP));
blockInfoList.add(new BlockInfoContiguous(blockList.get(i), (short) 3));
dd.addBlock(blockInfoList.get(i));
// index of the datanode should be 0
assertEquals(0, blockInfoList.get(i).findStorageInfo(dd),
"Find datanode should be 0");
}
// list length should be equal to the number of blocks we inserted
LOG.info("Checking list length...");
assertEquals(maxBlocks, dd.numBlocks(), "Length should be MAX_BLOCK");
Iterator<BlockInfo> it = dd.getBlockIterator();
int len = 0;
while (it.hasNext()) {
it.next();
len++;
}
assertEquals(maxBlocks, len, "There should be MAX_BLOCK blockInfo's");
headIndex = dd.getBlockListHeadForTesting().findStorageInfo(dd);
LOG.info("Moving each block to the head of the list...");
for (int i = 0; i < maxBlocks; i++) {
curIndex = blockInfoList.get(i).findStorageInfo(dd);
headIndex = dd.moveBlockToHead(blockInfoList.get(i), curIndex, headIndex);
// the moved element must be at the head of the list
assertEquals(blockInfoList.get(i), dd.getBlockListHeadForTesting(),
"Block should be at the head of the list now.");
}
// move head of the list to the head - this should not change the list
LOG.info("Moving head to the head...");
BlockInfo temp = dd.getBlockListHeadForTesting();
curIndex = 0;
headIndex = 0;
dd.moveBlockToHead(temp, curIndex, headIndex);
assertEquals(temp, dd.getBlockListHeadForTesting(),
"Moving head to the head of the list shopuld not change the list");
// check all elements of the list against the original blockInfoList
LOG.info("Checking elements of the list...");
temp = dd.getBlockListHeadForTesting();
assertNotNull(temp, "Head should not be null");
int c = maxBlocks - 1;
while (temp != null) {
assertEquals(blockInfoList.get(c--), temp, "Expected element is not on the list");
temp = temp.getNext(0);
}
LOG.info("Moving random blocks to the head of the list...");
headIndex = dd.getBlockListHeadForTesting().findStorageInfo(dd);
Random rand = new Random();
for (int i = 0; i < maxBlocks; i++) {
int j = rand.nextInt(maxBlocks);
curIndex = blockInfoList.get(j).findStorageInfo(dd);
headIndex = dd.moveBlockToHead(blockInfoList.get(j), curIndex, headIndex);
// the moved element must be at the head of the list
assertEquals(blockInfoList.get(j), dd.getBlockListHeadForTesting(),
"Block should be at the head of the list now.");
}
}
}