Add unit test for HttpRequestAccessor.
[Sone.git] / src / test / java / net / pterodactylus / sone / template / HttpRequestAccessorTest.java
1 /*
2  * Sone - HttpRequestAccessorTest.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.template;
19
20 import static java.lang.Integer.valueOf;
21 import static org.hamcrest.MatcherAssert.assertThat;
22 import static org.hamcrest.Matchers.is;
23 import static org.mockito.Mockito.mock;
24 import static org.mockito.Mockito.when;
25
26 import freenet.support.api.HTTPRequest;
27 import org.junit.Before;
28 import org.junit.Test;
29
30 /**
31  * Unit test for {@link HttpRequestAccessor}.
32  *
33  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34  */
35 public class HttpRequestAccessorTest {
36
37         private final HTTPRequest httpRequest = mock(HTTPRequest.class);
38         private final HttpRequestAccessor httpRequestAccessor = new HttpRequestAccessor();
39
40         @Before
41         public void setup() {
42                 when(httpRequest.getHeader("KeyA")).thenReturn("ValueA");
43         }
44
45         @Test
46         public void headerFieldsCanBeAccessed() {
47                 String headerValue = (String) httpRequestAccessor.get(null, httpRequest, "KeyA");
48                 assertThat(headerValue, is("ValueA"));
49         }
50
51         @Test
52         public void normalMethodsAreCheckedFirst() {
53                 Object hashCode = httpRequestAccessor.get(null, httpRequest, "hashCode");
54                 assertThat(hashCode, is((Object) valueOf(httpRequest.hashCode())));
55         }
56
57 }