blob: b4b546733fcd3b3b02b0a622f5e99af6b18279cc [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.tasks;
import org.apache.hadoop.ozone.om.OMMetadataManager;
import org.apache.hadoop.ozone.om.OmMetadataManagerImpl;
import org.apache.hadoop.ozone.om.helpers.OmKeyInfo;
import org.apache.hadoop.hdds.utils.db.TypedTable;
import org.junit.Test;
import java.io.IOException;
import static org.apache.hadoop.ozone.recon.tasks.OMDBUpdateEvent.OMDBUpdateAction.PUT;
import static org.junit.Assert.assertEquals;
import static org.mockito.ArgumentMatchers.anyLong;
import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.when;
/**
* Unit test for File Size Count Task.
*/
public class TestFileSizeCountTask {
@Test
public void testCalculateBinIndex() {
FileSizeCountTask fileSizeCountTask = mock(FileSizeCountTask.class);
when(fileSizeCountTask.getMaxFileSizeUpperBound()).
thenReturn(1125899906842624L); // 1 PB
when(fileSizeCountTask.getOneKB()).thenReturn(1024L);
when(fileSizeCountTask.getMaxBinSize()).thenReturn(42);
when(fileSizeCountTask.calculateBinIndex(anyLong())).thenCallRealMethod();
when(fileSizeCountTask.nextClosestPowerIndexOfTwo(
anyLong())).thenCallRealMethod();
long fileSize = 1024L; // 1 KB
int binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(1, binIndex);
fileSize = 1023L; // 1KB - 1B
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(0, binIndex);
fileSize = 562949953421312L; // 512 TB
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(40, binIndex);
fileSize = 562949953421313L; // (512 TB + 1B)
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(40, binIndex);
fileSize = 562949953421311L; // (512 TB - 1B)
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(39, binIndex);
fileSize = 1125899906842624L; // 1 PB - last (extra) bin
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(41, binIndex);
fileSize = 100000L;
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(7, binIndex);
fileSize = 1125899906842623L; // (1 PB - 1B)
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(40, binIndex);
fileSize = 1125899906842624L * 4; // 4 PB - last extra bin
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(41, binIndex);
fileSize = Long.MAX_VALUE; // extra bin
binIndex = fileSizeCountTask.calculateBinIndex(fileSize);
assertEquals(41, binIndex);
}
@Test
public void testFileCountBySizeReprocess() throws IOException {
OmKeyInfo omKeyInfo1 = mock(OmKeyInfo.class);
given(omKeyInfo1.getKeyName()).willReturn("key1");
given(omKeyInfo1.getDataSize()).willReturn(1000L);
OMMetadataManager omMetadataManager = mock(OmMetadataManagerImpl.class);
TypedTable<String, OmKeyInfo> keyTable = mock(TypedTable.class);
TypedTable.TypedTableIterator mockKeyIter = mock(TypedTable
.TypedTableIterator.class);
TypedTable.TypedKeyValue mockKeyValue = mock(
TypedTable.TypedKeyValue.class);
when(keyTable.iterator()).thenReturn(mockKeyIter);
when(omMetadataManager.getKeyTable()).thenReturn(keyTable);
when(mockKeyIter.hasNext()).thenReturn(true).thenReturn(false);
when(mockKeyIter.next()).thenReturn(mockKeyValue);
when(mockKeyValue.getValue()).thenReturn(omKeyInfo1);
FileSizeCountTask fileSizeCountTask = mock(FileSizeCountTask.class);
when(fileSizeCountTask.getMaxFileSizeUpperBound()).
thenReturn(4096L);
when(fileSizeCountTask.getOneKB()).thenReturn(1024L);
when(fileSizeCountTask.reprocess(omMetadataManager)).thenCallRealMethod();
//call reprocess()
fileSizeCountTask.reprocess(omMetadataManager);
verify(fileSizeCountTask, times(1)).
updateUpperBoundCount(omKeyInfo1, PUT);
verify(fileSizeCountTask,
times(1)).populateFileCountBySizeDB();
}
}