aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst/org/eclipse/jgit/util/http/HttpCookiesMatcher.java
blob: 18faab5c9f3d21b882af136316e184739c53ec91 (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
112
113
114
115
116
117
/*
 * Copyright (C) 2018, Konrad Windszus <konrad_w@gmx.de> 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.http;

import java.net.HttpCookie;
import java.util.ArrayList;
import java.util.List;

import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
import org.hamcrest.collection.IsIterableContainingInOrder;

public final class HttpCookiesMatcher {
	public static Matcher<Iterable<? extends HttpCookie>> containsInOrder(
			Iterable<HttpCookie> expectedCookies) {
		return containsInOrder(expectedCookies, 0);
	}

	public static Matcher<Iterable<? extends HttpCookie>> containsInOrder(
			Iterable<HttpCookie> expectedCookies, int allowedMaxAgeDelta) {
		final List<Matcher<? super HttpCookie>> cookieMatchers = new ArrayList<>();
		for (HttpCookie cookie : expectedCookies) {
			cookieMatchers
					.add(new HttpCookieMatcher(cookie, allowedMaxAgeDelta));
		}
		return new IsIterableContainingInOrder<>(cookieMatchers);
	}

	/**
	 * The default {@link HttpCookie#equals(Object)} is not good enough for
	 * testing purposes. Also the {@link HttpCookie#toString()} only emits some
	 * of the cookie attributes. For testing a dedicated matcher is needed which
	 * takes into account all attributes.
	 */
	private static final class HttpCookieMatcher
			extends TypeSafeMatcher<HttpCookie> {

		private final HttpCookie cookie;

		private final int allowedMaxAgeDelta;

		public HttpCookieMatcher(HttpCookie cookie, int allowedMaxAgeDelta) {
			this.cookie = cookie;
			this.allowedMaxAgeDelta = allowedMaxAgeDelta;
		}

		@Override
		public void describeTo(Description description) {
			describeCookie(description, cookie);
		}

		@Override
		protected void describeMismatchSafely(HttpCookie item,
				Description mismatchDescription) {
			mismatchDescription.appendText("was ");
			describeCookie(mismatchDescription, item);
		}

		@Override
		protected boolean matchesSafely(HttpCookie otherCookie) {
			// the equals method in HttpCookie is not specific enough, we want
			// to consider all attributes!
			return (equals(cookie.getName(), otherCookie.getName())
					&& equals(cookie.getValue(), otherCookie.getValue())
					&& equals(cookie.getDomain(), otherCookie.getDomain())
					&& equals(cookie.getPath(), otherCookie.getPath())
					&& (cookie.getMaxAge() >= otherCookie.getMaxAge()
							- allowedMaxAgeDelta)
					&& (cookie.getMaxAge() <= otherCookie.getMaxAge()
							+ allowedMaxAgeDelta)
					&& cookie.isHttpOnly() == otherCookie.isHttpOnly()
					&& cookie.getSecure() == otherCookie.getSecure()
					&& cookie.getVersion() == otherCookie.getVersion());
		}

		private static boolean equals(String value1, String value2) {
			if (value1 == null && value2 == null) {
				return true;
			}
			if (value1 == null || value2 == null) {
				return false;
			}
			return value1.equals(value2);
		}

		@SuppressWarnings("boxing")
		protected static void describeCookie(Description description,
				HttpCookie cookie) {
			description.appendText("HttpCookie[");
			description.appendText("name: ").appendValue(cookie.getName())
					.appendText(", ");
			description.appendText("value: ").appendValue(cookie.getValue())
					.appendText(", ");
			description.appendText("domain: ").appendValue(cookie.getDomain())
					.appendText(", ");
			description.appendText("path: ").appendValue(cookie.getPath())
					.appendText(", ");
			description.appendText("maxAge: ").appendValue(cookie.getMaxAge())
					.appendText(", ");
			description.appendText("httpOnly: ")
					.appendValue(cookie.isHttpOnly()).appendText(", ");
			description.appendText("secure: ").appendValue(cookie.getSecure())
					.appendText(", ");
			description.appendText("version: ").appendValue(cookie.getVersion())
					.appendText(", ");
			description.appendText("]");
		}
	}
}