blob: a3265b82a6dc00469bfd7cde0b246ebbcfdc5d0d [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.api;
import org.hadoop.ozone.recon.schema.tables.daos.FileCountBySizeDao;
import org.hadoop.ozone.recon.schema.tables.pojos.FileCountBySize;
import org.junit.Test;
import javax.ws.rs.core.Response;
import java.util.ArrayList;
import java.util.List;
import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
/**
* Test for File size count service.
*/
public class TestUtilizationService {
private UtilizationService utilizationService;
private int maxBinSize = 42;
private List<FileCountBySize> setUpResultList() {
List<FileCountBySize> resultList = new ArrayList<>();
for (int i = 0; i < maxBinSize; i++) {
if (i == maxBinSize - 1) {
// for last bin file count is 41.
resultList.add(new FileCountBySize(Long.MAX_VALUE, (long) i));
} else {
// count of files of upperBound is equal to it's index.
resultList.add(new FileCountBySize((long) Math.pow(2, (10+i)),
(long) i));
}
}
return resultList;
}
@Test
public void testGetFileCounts() {
List<FileCountBySize> resultList = setUpResultList();
FileCountBySizeDao fileCountBySizeDao = mock(FileCountBySizeDao.class);
utilizationService = mock(UtilizationService.class);
when(utilizationService.getFileCounts()).thenCallRealMethod();
when(utilizationService.getDao()).thenReturn(fileCountBySizeDao);
when(fileCountBySizeDao.findAll()).thenReturn(resultList);
Response response = utilizationService.getFileCounts();
// get result list from Response entity
List<FileCountBySize> responseList =
(List<FileCountBySize>) response.getEntity();
verify(fileCountBySizeDao, times(1)).findAll();
assertEquals(maxBinSize, responseList.size());
assertEquals(resultList, responseList);
}
}