Tests and fixes for dereferencing tags in Repository.resolve()
[egit/fonseca.git] / org.spearce.jgit.test / tst / org / spearce / jgit / lib / T0004_PackReader.java
blob8288e56836ec6f38cb3803553e7d1654b9741212
1 /*
2 * Copyright (C) 2007, Robin Rosenberg <robin.rosenberg@dewire.com>
3 * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org>
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or
8 * without modification, are permitted provided that the following
9 * conditions are met:
11 * - Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * - Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
19 * - Neither the name of the Git Development Community nor the
20 * names of its contributors may be used to endorse or promote
21 * products derived from this software without specific prior
22 * written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
25 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
26 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
29 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
34 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 package org.spearce.jgit.lib;
41 import java.io.File;
42 import java.io.IOException;
44 import org.spearce.jgit.util.JGitTestUtil;
46 public class T0004_PackReader extends RepositoryTestCase {
47 private static final String PACK_NAME = "pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f";
48 private static final File TEST_PACK = JGitTestUtil.getTestResourceFile(PACK_NAME + ".pack");
49 private static final File TEST_IDX = JGitTestUtil.getTestResourceFile(PACK_NAME + ".idx");
51 public void test003_lookupCompressedObject() throws IOException {
52 final PackFile pr;
53 final ObjectId id;
54 final PackedObjectLoader or;
56 id = ObjectId.fromString("902d5476fa249b7abc9d84c611577a81381f0327");
57 pr = new PackFile(db, TEST_IDX, TEST_PACK);
58 or = pr.get(id);
59 assertNotNull(or);
60 assertEquals(id, or.getId());
61 assertEquals(Constants.OBJ_TREE, or.getType());
62 assertEquals(35, or.getSize());
63 assertEquals(7738, or.getDataOffset());
64 pr.close();
67 public void test004_lookupDeltifiedObject() throws IOException {
68 final ObjectId id;
69 final ObjectLoader or;
71 id = ObjectId.fromString("5b6e7c66c276e7610d4a73c70ec1a1f7c1003259");
72 or = db.openObject(id);
73 assertNotNull(or);
74 assertTrue(or instanceof PackedObjectLoader);
75 assertEquals(id, or.getId());
76 assertEquals(Constants.OBJ_BLOB, or.getType());
77 assertEquals(18009, or.getSize());
78 assertEquals(537, ((PackedObjectLoader) or).getDataOffset());
81 public void test005_todopack() throws IOException {
82 final File todopack = JGitTestUtil.getTestResourceFile("todopack");
83 if (!todopack.isDirectory()) {
84 System.err.println("Skipping " + getName() + ": no " + todopack);
85 return;
88 final File packDir = new File(db.getObjectsDirectory(), "pack");
89 final String packname = "pack-2e71952edc41f3ce7921c5e5dd1b64f48204cf35";
90 copyFile(new File(todopack, packname + ".pack"), new File(packDir,
91 packname + ".pack"));
92 copyFile(new File(todopack, packname + ".idx"), new File(packDir,
93 packname + ".idx"));
94 db.scanForPacks();
95 Tree t;
97 t = db
98 .mapTree(ObjectId.fromString(
99 "aac9df07f653dd18b935298deb813e02c32d2e6f"));
100 assertNotNull(t);
101 t.memberCount();
103 t = db
104 .mapTree(ObjectId.fromString(
105 "6b9ffbebe7b83ac6a61c9477ab941d999f5d0c96"));
106 assertNotNull(t);
107 t.memberCount();