GithubFilterTest.java 7.24 KB
Newer Older
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package de.hftstuttgart.unifiedticketing.systems.github;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ArrayNode;
import de.hftstuttgart.unifiedticketing.core.Logging;
import de.hftstuttgart.unifiedticketing.exceptions.DeserializationException;
import de.hftstuttgart.unifiedticketing.exceptions.HttpResponseException;
import okhttp3.*;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;

import java.io.IOException;
import java.util.*;
import java.util.logging.Level;
import java.util.stream.Collectors;

import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;

public class GithubFilterTest
{
    public GithubFilter instance;
    public Call call;
    public ArgumentCaptor<Request> requestCaptor;
    public Response.Builder responseBuilder;

    @BeforeAll
    public static void initBeforeAll()
    {
        Logging.setLevel(Level.ALL);
    }

    @BeforeEach
    public void initBeforeEach()
    {
        GithubTicketSystem parent =
            spy(new GithubTicketSystem("someHeader", "https://api.github.com"));
        instance = spy(new GithubFilter(parent));

        OkHttpClient client = mock(OkHttpClient.class);
        call = mock(Call.class);
        requestCaptor = ArgumentCaptor.forClass(Request.class);
        responseBuilder = new Response.Builder()
            .request(new Request.Builder().url("http://test.some.tld/").build())
            .protocol(Protocol.HTTP_1_1)
            .message("some message");

        doReturn(client).when(instance).getHttpClient();
        doReturn(call).when(client).newCall(requestCaptor.capture());
    }

    @Test
    public void testGetServerError() throws IOException
    {
        doReturn(responseBuilder.code(500).build()).when(call).execute();
        assertThrows(HttpResponseException.class, () -> instance.get());
    }

    @Test
    public void testGetClientError() throws IOException
    {
        doReturn(responseBuilder.code(400).build()).when(call).execute();
        assertThrows(HttpResponseException.class, () -> instance.get());
    }

    @Test
    public void testGetNullBody() throws IOException
    {
        doReturn(responseBuilder.code(200).build()).when(call).execute();
        assertThrows(HttpResponseException.class, () -> instance.get());
    }

    @Test
    public void testGetNoJsonBody() throws IOException
    {
        doReturn(
            responseBuilder
                .code(200)
                .body(ResponseBody.create("somestrangething", MediaType.get("application/json")))
                .build())
            .when(call).execute();
        assertThrows(DeserializationException.class, () -> instance.get());
    }

    @Test
    public void testGetRequestParamsPart1() throws IOException
    {
        doReturn(
            responseBuilder
                .code(200)
                .body(ResponseBody.create("[]".getBytes(), MediaType.get("application/json")))
                .build())
            .when(call).execute();

        String[] values = new String[]
            {
                "bug",
                "label1",
                "2",
                "50",
            };

        instance
            .withLabel(values[0])
            .withLabel(values[1])
            .setPage(Integer.parseInt(values[2]))
            .setPageSize(Integer.parseInt(values[3]))
            .isOpen()
            .get();

        HttpUrl url = requestCaptor.getValue().url();
        assertAll(
            () -> assertEquals(String.format("%s,%s", values[0], values[1]), url.queryParameter("labels")),
            () -> assertEquals(values[2], url.queryParameter("page")),
            () -> assertEquals(values[3], url.queryParameter("per_page")),
            () -> assertEquals("open", url.queryParameter("state"))
        );
    }

    @Test
    public void testGetRequestParamsPart2() throws IOException
    {
        doReturn(
            responseBuilder
                .code(200)
                .body(ResponseBody.create("[]".getBytes(), MediaType.get("application/json")))
                .build())
            .when(call).execute();

        instance
            .isClosed()
            .get();

        HttpUrl url = requestCaptor.getValue().url();
        assertAll(
            () -> assertEquals("closed", url.queryParameter("state"))
        );
    }

    @Test
    public void testGetLocalFilter() throws IOException
    {
        GithubTicketResponse res = new GithubTicketResponse();
        res.number = 5;
        res.title = "some title";
        res.body = "descriptive text";
        res.assignees = new HashSet<>();
        res.state = "open";
        res.labels = Arrays.stream(new String[]{"unifiedticketing", "bug"})
            .map(l -> {
                GithubTicketResponse.Label label = new GithubTicketResponse.Label();
                label.name = l;
                return label;
            })
            .collect(Collectors.toSet());

        ObjectMapper mapper = new ObjectMapper();
        ArrayNode arrayNode = mapper.createArrayNode();
        arrayNode.add(mapper.valueToTree(res));

        res.number = 8;
        res.title = "some special title";
        arrayNode.add(mapper.valueToTree(res));

        res.number = 94;
        res.body = "description with @username marked";
        arrayNode.add(mapper.valueToTree(res));

        doReturn(
            responseBuilder
                .code(200)
                .body(ResponseBody.create(arrayNode.toString().getBytes(), MediaType.get("application/json")))
                .build())
            .when(call).execute();

        List<GithubTicket> result = instance
            .withTitleMatch("^.*special.*$")
            .withDescriptionMatch("^.*@username.*$")
            .get();

        assertAll(
            () -> assertEquals(1, result.size()),
            () -> Assertions.assertEquals("94", result.get(0).getId())
        );
    }

    @Test
    public void testGetDeserialization() throws IOException
    {
        GithubTicketResponse res = new GithubTicketResponse();
        res.number = 99;
        res.title = "some title";
        res.body = "descriptive text";
        res.assignees = new HashSet<>();
        res.state = "open";
        res.labels = Arrays.stream(new String[]{"unifiedticketing", "feature-request"})
            .map(l -> {
                GithubTicketResponse.Label label = new GithubTicketResponse.Label();
                label.name = l;
                return label;
            })
            .collect(Collectors.toSet());

        ObjectMapper mapper = new ObjectMapper();
        ArrayNode arrayNode = mapper.createArrayNode();
        arrayNode.add(mapper.valueToTree(res));

        doReturn(
            responseBuilder
                .code(200)
                .body(ResponseBody.create(arrayNode.toString().getBytes(), MediaType.get("application/json")))
                .build())
            .when(call).execute();

        List<GithubTicket> expected = new LinkedList<>(
            Collections.singleton(GithubTicket.fromTicketResponse(instance.parent, res)));
        List<GithubTicket> actual = instance.get();

        assertEquals(expected, actual);
        assertTrue(expected.get(0).deepEquals(actual.get(0)));
    }
}