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 package org.eclipse.jgit.lib;
47
48 import static org.junit.Assert.assertEquals;
49 import static org.junit.Assert.assertFalse;
50 import static org.junit.Assert.assertTrue;
51
52 import org.eclipse.jgit.errors.InvalidObjectIdException;
53
54 import org.junit.Test;
55
56 public class ObjectIdTest {
57 @Test
58 public void test001_toString() {
59 final String x = "def4c620bc3713bb1bb26b808ec9312548e73946";
60 final ObjectId oid = ObjectId.fromString(x);
61 assertEquals(x, oid.name());
62 }
63
64 @Test
65 public void test002_toString() {
66 final String x = "ff00eedd003713bb1bb26b808ec9312548e73946";
67 final ObjectId oid = ObjectId.fromString(x);
68 assertEquals(x, oid.name());
69 }
70
71 @Test
72 public void test003_equals() {
73 final String x = "def4c620bc3713bb1bb26b808ec9312548e73946";
74 final ObjectId a = ObjectId.fromString(x);
75 final ObjectId b = ObjectId.fromString(x);
76 assertEquals(a.hashCode(), b.hashCode());
77 assertEquals("a and b are same", b, a);
78 }
79
80 @Test
81 public void test004_isId() {
82 assertTrue("valid id", ObjectId
83 .isId("def4c620bc3713bb1bb26b808ec9312548e73946"));
84 }
85
86 @Test
87 public void test005_notIsId() {
88 assertFalse("bob is not an id", ObjectId.isId("bob"));
89 }
90
91 @Test
92 public void test006_notIsId() {
93 assertFalse("39 digits is not an id", ObjectId
94 .isId("def4c620bc3713bb1bb26b808ec9312548e7394"));
95 }
96
97 @Test
98 public void test007_isId() {
99 assertTrue("uppercase is accepted", ObjectId
100 .isId("Def4c620bc3713bb1bb26b808ec9312548e73946"));
101 }
102
103 @Test
104 public void test008_notIsId() {
105 assertFalse("g is not a valid hex digit", ObjectId
106 .isId("gef4c620bc3713bb1bb26b808ec9312548e73946"));
107 }
108
109 @Test
110 public void test009_toString() {
111 final String x = "ff00eedd003713bb1bb26b808ec9312548e73946";
112 final ObjectId oid = ObjectId.fromString(x);
113 assertEquals(x, ObjectId.toString(oid));
114 }
115
116 @Test
117 public void test010_toString() {
118 final String x = "0000000000000000000000000000000000000000";
119 assertEquals(x, ObjectId.toString(null));
120 }
121
122 @Test
123 public void test011_toString() {
124 final String x = "0123456789ABCDEFabcdef1234567890abcdefAB";
125 final ObjectId oid = ObjectId.fromString(x);
126 assertEquals(x.toLowerCase(), oid.name());
127 }
128
129 @Test(expected = InvalidObjectIdException.class)
130 public void testFromString_short() {
131 ObjectId.fromString("cafe1234");
132 }
133
134 @Test(expected = InvalidObjectIdException.class)
135 public void testFromString_nonHex() {
136 ObjectId.fromString("0123456789abcdefghij0123456789abcdefghij");
137 }
138
139 @Test(expected = InvalidObjectIdException.class)
140 public void testFromString_shortNonHex() {
141 ObjectId.fromString("6789ghij");
142 }
143
144 @Test
145 public void testGetByte() {
146 byte[] raw = new byte[20];
147 for (int i = 0; i < 20; i++)
148 raw[i] = (byte) (0xa0 + i);
149 ObjectId id = ObjectId.fromRaw(raw);
150
151 assertEquals(raw[0] & 0xff, id.getFirstByte());
152 assertEquals(raw[0] & 0xff, id.getByte(0));
153 assertEquals(raw[1] & 0xff, id.getByte(1));
154
155 for (int i = 2; i < 20; i++)
156 assertEquals("index " + i, raw[i] & 0xff, id.getByte(i));
157 }
158
159 @Test
160 public void testSetByte() {
161 byte[] exp = new byte[20];
162 for (int i = 0; i < 20; i++)
163 exp[i] = (byte) (0xa0 + i);
164
165 MutableObjectId id = new MutableObjectId();
166 id.fromRaw(exp);
167 assertEquals(ObjectId.fromRaw(exp).name(), id.name());
168
169 id.setByte(0, 0x10);
170 assertEquals(0x10, id.getByte(0));
171 exp[0] = 0x10;
172 assertEquals(ObjectId.fromRaw(exp).name(), id.name());
173
174 for (int p = 1; p < 20; p++) {
175 id.setByte(p, 0x10 + p);
176 assertEquals(0x10 + p, id.getByte(p));
177 exp[p] = (byte) (0x10 + p);
178 assertEquals(ObjectId.fromRaw(exp).name(), id.name());
179 }
180
181 for (int p = 0; p < 20; p++) {
182 id.setByte(p, 0x80 + p);
183 assertEquals(0x80 + p, id.getByte(p));
184 exp[p] = (byte) (0x80 + p);
185 assertEquals(ObjectId.fromRaw(exp).name(), id.name());
186 }
187 }
188 }