aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst/org/eclipse/jgit/util/RawParseUtils_ParsePersonIdentTest.java
blob: ee3ce8d98ccc0bf1708b81b251c91665c47d4218 (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
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
/*
 * Copyright (C) 2010, Marc Strapetz <marc.strapetz@syntevo.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 java.util.Date;
import java.util.TimeZone;

import org.eclipse.jgit.lib.PersonIdent;
import org.junit.Test;

public class RawParseUtils_ParsePersonIdentTest {

	@Test
	public void testParsePersonIdent_legalCases() {
		final Date when = new Date(1234567890000l);
		final TimeZone tz = TimeZone.getTimeZone("GMT-7");

		assertPersonIdent("Me <me@example.com> 1234567890 -0700",
				new PersonIdent("Me", "me@example.com", when, tz));

		assertPersonIdent(" Me <me@example.com> 1234567890 -0700",
				new PersonIdent(" Me", "me@example.com", when, tz));

		assertPersonIdent("A U Thor <author@example.com> 1234567890 -0700",
				new PersonIdent("A U Thor", "author@example.com", when, tz));

		assertPersonIdent("A U Thor<author@example.com> 1234567890 -0700",
				new PersonIdent("A U Thor", "author@example.com", when, tz));

		assertPersonIdent("A U Thor<author@example.com>1234567890 -0700",
				new PersonIdent("A U Thor", "author@example.com", when, tz));

		assertPersonIdent(
				" A U Thor   < author@example.com > 1234567890 -0700",
				new PersonIdent(" A U Thor  ", " author@example.com ", when, tz));

		assertPersonIdent("A U Thor<author@example.com>1234567890 -0700",
				new PersonIdent("A U Thor", "author@example.com", when, tz));
	}

	@Test
	public void testParsePersonIdent_fuzzyCases() {
		final Date when = new Date(1234567890000l);
		final TimeZone tz = TimeZone.getTimeZone("GMT-7");

		assertPersonIdent(
				"A U Thor <author@example.com>,  C O. Miter <comiter@example.com> 1234567890 -0700",
				new PersonIdent("A U Thor", "author@example.com", when, tz));

		assertPersonIdent(
				"A U Thor <author@example.com> and others 1234567890 -0700",
				new PersonIdent("A U Thor", "author@example.com", when, tz));
	}

	@Test
	public void testParsePersonIdent_incompleteCases() {
		final Date when = new Date(1234567890000l);
		final TimeZone tz = TimeZone.getTimeZone("GMT-7");

		assertPersonIdent("Me <> 1234567890 -0700", new PersonIdent("Me", "",
				when, tz));

		assertPersonIdent(" <me@example.com> 1234567890 -0700",
				new PersonIdent("", "me@example.com", when, tz));

		assertPersonIdent(" <> 1234567890 -0700", new PersonIdent("", "", when,
				tz));

		assertPersonIdent("<>", new PersonIdent("", "", 0, 0));

		assertPersonIdent(" <>", new PersonIdent("", "", 0, 0));

		assertPersonIdent("<me@example.com>", new PersonIdent("",
				"me@example.com", 0, 0));

		assertPersonIdent(" <me@example.com>", new PersonIdent("",
				"me@example.com", 0, 0));

		assertPersonIdent("Me <>", new PersonIdent("Me", "", 0, 0));

		assertPersonIdent("Me <me@example.com>", new PersonIdent("Me",
				"me@example.com", 0, 0));

		assertPersonIdent("Me <me@example.com> 1234567890", new PersonIdent(
				"Me", "me@example.com", 0, 0));

		assertPersonIdent("Me <me@example.com> 1234567890 ", new PersonIdent(
				"Me", "me@example.com", 0, 0));
	}

	@Test
	public void testParsePersonIdent_malformedCases() {
		assertPersonIdent("Me me@example.com> 1234567890 -0700", null);
		assertPersonIdent("Me <me@example.com 1234567890 -0700", null);
	}

	private static void assertPersonIdent(String line, PersonIdent expected) {
		PersonIdent actual = RawParseUtils.parsePersonIdent(line);
		assertEquals(expected, actual);
	}
}