2 * Copyright (C) 2007, Robin Rosenberg <robin.rosenberg@dewire.com>
3 * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org>
7 * Redistribution and use in source and binary forms, with or
8 * without modification, are permitted provided that the following
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
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
;
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
{
54 final PackedObjectLoader or
;
56 id
= ObjectId
.fromString("902d5476fa249b7abc9d84c611577a81381f0327");
57 pr
= new PackFile(db
, TEST_IDX
, TEST_PACK
);
60 assertEquals(id
, or
.getId());
61 assertEquals(Constants
.OBJ_TREE
, or
.getType());
62 assertEquals(35, or
.getSize());
63 assertEquals(7738, or
.getDataOffset());
67 public void test004_lookupDeltifiedObject() throws IOException
{
69 final ObjectLoader or
;
71 id
= ObjectId
.fromString("5b6e7c66c276e7610d4a73c70ec1a1f7c1003259");
72 or
= db
.openObject(id
);
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
);
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
,
92 copyFile(new File(todopack
, packname
+ ".idx"), new File(packDir
,
98 .mapTree(ObjectId
.fromString(
99 "aac9df07f653dd18b935298deb813e02c32d2e6f"));
104 .mapTree(ObjectId
.fromString(
105 "6b9ffbebe7b83ac6a61c9477ab941d999f5d0c96"));