blob: 681fce487e2123b7e72abc835911e93c2e9006d3 (
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
|
/*
* Copyright (C) 2009, Google Inc. 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.assertTrue;
import org.eclipse.jgit.lib.Constants;
import org.junit.Test;
public class RawParseUtils_MatchTest {
@Test
public void testMatch_Equal() {
final byte[] src = Constants.encodeASCII(" differ\n");
final byte[] dst = Constants.encodeASCII("foo differ\n");
assertTrue(RawParseUtils.match(dst, 3, src) == 3 + src.length);
}
@Test
public void testMatch_NotEqual() {
final byte[] src = Constants.encodeASCII(" differ\n");
final byte[] dst = Constants.encodeASCII("a differ\n");
assertTrue(RawParseUtils.match(dst, 2, src) < 0);
}
@Test
public void testMatch_Prefix() {
final byte[] src = Constants.encodeASCII("author ");
final byte[] dst = Constants.encodeASCII("author A. U. Thor");
assertTrue(RawParseUtils.match(dst, 0, src) == src.length);
assertTrue(RawParseUtils.match(dst, 1, src) < 0);
}
@Test
public void testMatch_TooSmall() {
final byte[] src = Constants.encodeASCII("author ");
final byte[] dst = Constants.encodeASCII("author autho");
assertTrue(RawParseUtils.match(dst, src.length + 1, src) < 0);
}
}
|