blob: 6090d5efbece08c8f61e50094704490b78d240bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
* Copyright (C) 2012, Matthias Sohn <matthias.sohn@sap.com> 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.api;
import static org.junit.Assert.assertTrue;
import java.time.Instant;
import java.util.Properties;
import org.eclipse.jgit.junit.RepositoryTestCase;
import org.eclipse.jgit.util.GitTimeParser;
import org.junit.Before;
import org.junit.Test;
public class GarbageCollectCommandTest extends RepositoryTestCase {
private Git git;
@Override
@Before
public void setUp() throws Exception {
super.setUp();
git = new Git(db);
String path = "a.txt";
writeTrashFile(path, "content");
git.add().addFilepattern(path).call();
git.commit().setMessage("commit").call();
}
@Test
public void testGConeCommit() throws Exception {
Instant expireNow = GitTimeParser.parseInstant("now");
Properties res = git.gc().setExpire(expireNow).call();
assertTrue(res.size() == 8);
}
@Test
public void testGCmoreCommits() throws Exception {
writeTrashFile("a.txt", "a couple of words for gc to pack");
writeTrashFile("b.txt", "a couple of words for gc to pack 2");
writeTrashFile("c.txt", "a couple of words for gc to pack 3");
git.commit().setAll(true).setMessage("commit2").call();
writeTrashFile("a.txt", "a couple of words for gc to pack more");
writeTrashFile("b.txt", "a couple of words for gc to pack more 2");
writeTrashFile("c.txt", "a couple of words for gc to pack more 3");
git.commit().setAll(true).setMessage("commit3").call();
Instant expireNow = GitTimeParser.parseInstant("now");
Properties res = git.gc().setExpire(expireNow).call();
assertTrue(res.size() == 8);
}
}
|