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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
/*
* Copyright (C) 2011, 2024 Leonard Broman <leonard.broman@gmail.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.util;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.fail;
import java.nio.charset.Charset;
import java.nio.charset.UnsupportedCharsetException;
import java.util.List;
import org.eclipse.jgit.lib.Constants;
import org.junit.Test;
import static java.nio.charset.StandardCharsets.UTF_8;
public class RawParseUtilsTest {
String commit = "tree e3a1035abd2b319bb01e57d69b0ba6cab289297e\n" +
"parent 54e895b87c0768d2317a2b17062e3ad9f76a8105\n" +
"committer A U Thor <author@example.com> 1528968566 +0200\n" +
"gpgsig -----BEGIN PGP SIGNATURE-----\n" +
" \n" +
" wsBcBAABCAAQBQJbGB4pCRBK7hj4Ov3rIwAAdHIIAENrvz23867ZgqrmyPemBEZP\n" +
" U24B1Tlq/DWvce2buaxmbNQngKZ0pv2s8VMc11916WfTIC9EKvioatmpjduWvhqj\n" +
" znQTFyiMor30pyYsfrqFuQZvqBW01o8GEWqLg8zjf9Rf0R3LlOEw86aT8CdHRlm6\n" +
" wlb22xb8qoX4RB+LYfz7MhK5F+yLOPXZdJnAVbuyoMGRnDpwdzjL5Hj671+XJxN5\n" +
" SasRdhxkkfw/ZnHxaKEc4juMz8Nziz27elRwhOQqlTYoXNJnsV//wy5Losd7aKi1\n" +
" xXXyUpndEOmT0CIcKHrN/kbYoVL28OJaxoBuva3WYQaRrzEe3X02NMxZe9gkSqA=\n" +
" =TClh\n" +
" -----END PGP SIGNATURE-----\n" +
"some other header\n\n" +
"commit message";
@Test
public void testParseEncoding_ISO8859_1_encoding() {
Charset result = RawParseUtils.parseEncoding(Constants
.encodeASCII("encoding ISO-8859-1\n"));
assertNotNull(result);
}
@Test
public void testParseEncoding_Accept_Latin_One_AsISO8859_1() {
Charset result = RawParseUtils.parseEncoding(Constants
.encodeASCII("encoding latin-1\n"));
assertNotNull(result);
assertEquals("ISO-8859-1", result.name());
}
@Test
public void testParseEncoding_badEncoding() {
try {
RawParseUtils.parseEncoding(Constants.encodeASCII("encoding xyz\n"));
fail("should throw an UnsupportedCharsetException: xyz");
} catch (UnsupportedCharsetException e) {
assertEquals("xyz", e.getMessage());
}
}
@Test
public void testHeaderStart() {
byte[] headerName = "some".getBytes(UTF_8);
byte[] commitBytes = commit.getBytes(UTF_8);
assertEquals(627,
RawParseUtils.headerStart(headerName, commitBytes, 0));
assertEquals(627,
RawParseUtils.headerStart(headerName, commitBytes, 4));
byte[] missingHeaderName = "missing".getBytes(UTF_8);
assertEquals(-1, RawParseUtils.headerStart(missingHeaderName,
commitBytes, 0));
byte[] fauxHeaderName = "other".getBytes(UTF_8);
assertEquals(-1, RawParseUtils.headerStart(fauxHeaderName, commitBytes,
627 + 4));
}
@Test
public void testHeaderEnd() {
byte[] commitBytes = commit.getBytes(UTF_8);
int[] expected = new int[] { 45, 93, 150, 621, 639 };
int start = 0;
for (int i = 0; i < expected.length; i++) {
start = RawParseUtils.headerEnd(commitBytes, start);
assertEquals(expected[i], start);
start += 1;
}
}
@Test
public void testHeaderValue() {
byte[] commitBytes = commit.getBytes(UTF_8);
List<String> headers = List.of(
"e3a1035abd2b319bb01e57d69b0ba6cab289297e",
"54e895b87c0768d2317a2b17062e3ad9f76a8105",
"A U Thor <author@example.com> 1528968566 +0200",
"-----BEGIN PGP SIGNATURE-----\n"
+ "\n"
+ "wsBcBAABCAAQBQJbGB4pCRBK7hj4Ov3rIwAAdHIIAENrvz23867ZgqrmyPemBEZP\n"
+ "U24B1Tlq/DWvce2buaxmbNQngKZ0pv2s8VMc11916WfTIC9EKvioatmpjduWvhqj\n"
+ "znQTFyiMor30pyYsfrqFuQZvqBW01o8GEWqLg8zjf9Rf0R3LlOEw86aT8CdHRlm6\n"
+ "wlb22xb8qoX4RB+LYfz7MhK5F+yLOPXZdJnAVbuyoMGRnDpwdzjL5Hj671+XJxN5\n"
+ "SasRdhxkkfw/ZnHxaKEc4juMz8Nziz27elRwhOQqlTYoXNJnsV//wy5Losd7aKi1\n"
+ "xXXyUpndEOmT0CIcKHrN/kbYoVL28OJaxoBuva3WYQaRrzEe3X02NMxZe9gkSqA=\n"
+ "=TClh\n"
+ "-----END PGP SIGNATURE-----",
"other header");
int start = 0;
for (String header : headers) {
int endOfTag = RawParseUtils.next(commitBytes, start, ' ');
int end = RawParseUtils.headerEnd(commitBytes, start);
assertEquals(header, new String(
RawParseUtils.headerValue(commitBytes, endOfTag, end),
UTF_8));
start = end + 1;
}
}
@Test
public void testLastHeaderEnd() {
byte[] raw = "headerA A header\nheaderB Another header".getBytes(UTF_8);
int bStart = RawParseUtils.headerStart("headerB".getBytes(UTF_8), raw,
0);
assertEquals(25, bStart);
int bEnd = RawParseUtils.nextLfSkippingSplitLines(raw, bStart);
assertEquals(raw.length, bEnd);
}
}
|