blob: ea5787309bebb94ed02fed299b3d98a4fd0bf0db [file] [log] [blame]
/*
* Copyright (C) 2019, Google LLC. and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.internal.storage.dfs;
import static org.junit.Assert.assertEquals;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.zip.Deflater;
import org.eclipse.jgit.internal.storage.pack.PackExt;
import org.eclipse.jgit.internal.storage.pack.PackOutputStream;
import org.eclipse.jgit.internal.storage.pack.PackWriter;
import org.eclipse.jgit.junit.JGitTestUtil;
import org.eclipse.jgit.junit.TestRng;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.NullProgressMonitor;
import org.junit.Before;
import org.junit.Test;
public class DfsPackFileTest {
InMemoryRepository db;
boolean bypassCache;
boolean clearCache;
@Before
public void setUp() {
db = new InMemoryRepository(new DfsRepositoryDescription("test"));
}
@Test
public void testCopyPackBypassCachesSmallCached() throws IOException {
bypassCache = true;
clearCache = false;
setupPack(512, 256);
assertPackSize();
}
@Test
public void testCopyPackBypassCacheSmallNoCache() throws IOException {
bypassCache = true;
clearCache = true;
setupPack(512, 256);
assertPackSize();
}
@Test
public void testCopyPackBypassCacheLargeCached() throws IOException {
bypassCache = true;
clearCache = false;
setupPack(512, 8000);
assertPackSize();
}
@Test
public void testCopyPackBypassCacheLargeNoCache() throws IOException {
bypassCache = true;
clearCache = true;
setupPack(512, 8000);
assertPackSize();
}
@Test
public void testCopyPackThroughCacheSmallCached() throws IOException {
bypassCache = false;
clearCache = false;
setupPack(512, 256);
assertPackSize();
}
@Test
public void testCopyPackThroughCacheSmallNoCache() throws IOException {
bypassCache = false;
clearCache = true;
setupPack(512, 256);
assertPackSize();
}
@Test
public void testCopyPackThroughCacheLargeCached() throws IOException {
bypassCache = false;
clearCache = false;
setupPack(512, 8000);
assertPackSize();
}
@Test
public void testCopyPackThroughCacheLargeNoCache() throws IOException {
bypassCache = false;
clearCache = true;
setupPack(512, 8000);
assertPackSize();
}
private void setupPack(int bs, int ps) throws IOException {
DfsBlockCacheConfig cfg = new DfsBlockCacheConfig().setBlockSize(bs)
.setBlockLimit(bs * 100).setStreamRatio(bypassCache ? 0F : 1F);
DfsBlockCache.reconfigure(cfg);
byte[] data = new TestRng(JGitTestUtil.getName()).nextBytes(ps);
DfsInserter ins = (DfsInserter) db.newObjectInserter();
ins.setCompressionLevel(Deflater.NO_COMPRESSION);
ins.insert(Constants.OBJ_BLOB, data);
ins.flush();
if (clearCache) {
DfsBlockCache.reconfigure(cfg);
db.getObjectDatabase().clearCache();
}
}
private void assertPackSize() throws IOException {
try (DfsReader ctx = db.getObjectDatabase().newReader();
PackWriter pw = new PackWriter(ctx);
ByteArrayOutputStream os = new ByteArrayOutputStream();
PackOutputStream out = new PackOutputStream(
NullProgressMonitor.INSTANCE, os, pw)) {
DfsPackFile pack = db.getObjectDatabase().getPacks()[0];
long packSize = pack.getPackDescription().getFileSize(PackExt.PACK);
pack.copyPackAsIs(out, ctx);
assertEquals(packSize - (12 + 20), os.size());
}
}
}