aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/com/android/volley/RequestTest.java
blob: cced39fdb9e32846ae09b7d0a268dd86255f758d (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
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
226
227
228
229
230
231
232
/*
 * Copyright (C) 2011 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.volley;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoMoreInteractions;
import static org.mockito.MockitoAnnotations.initMocks;

import com.android.volley.Request.Method;
import com.android.volley.Request.Priority;
import com.android.volley.toolbox.NoCache;
import java.util.Collections;
import java.util.Map;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.robolectric.RobolectricTestRunner;

@RunWith(RobolectricTestRunner.class)
public class RequestTest {
    private @Mock ResponseDelivery mDelivery;
    private @Mock Network mNetwork;

    @Before
    public void setUp() throws Exception {
        initMocks(this);
    }

    @Test
    public void compareTo() {
        int sequence = 0;
        TestRequest low = new TestRequest(Priority.LOW);
        low.setSequence(sequence++);
        TestRequest low2 = new TestRequest(Priority.LOW);
        low2.setSequence(sequence++);
        TestRequest high = new TestRequest(Priority.HIGH);
        high.setSequence(sequence++);
        TestRequest immediate = new TestRequest(Priority.IMMEDIATE);
        immediate.setSequence(sequence++);

        // "Low" should sort higher because it's really processing order.
        assertTrue(low.compareTo(high) > 0);
        assertTrue(high.compareTo(low) < 0);
        assertTrue(low.compareTo(low2) < 0);
        assertTrue(low.compareTo(immediate) > 0);
        assertTrue(immediate.compareTo(high) < 0);
    }

    private static class TestRequest extends Request<Object> {
        private Priority mPriority = Priority.NORMAL;

        public TestRequest(Priority priority) {
            super(Request.Method.GET, "", null);
            mPriority = priority;
        }

        @Override
        public Priority getPriority() {
            return mPriority;
        }

        @Override
        protected void deliverResponse(Object response) {}

        @Override
        protected Response<Object> parseNetworkResponse(NetworkResponse response) {
            return null;
        }
    }

    @Test
    public void urlParsing() {
        UrlParseRequest nullUrl = new UrlParseRequest(null);
        assertEquals(0, nullUrl.getTrafficStatsTag());
        UrlParseRequest emptyUrl = new UrlParseRequest("");
        assertEquals(0, emptyUrl.getTrafficStatsTag());
        UrlParseRequest noHost = new UrlParseRequest("http:///");
        assertEquals(0, noHost.getTrafficStatsTag());
        UrlParseRequest badProtocol = new UrlParseRequest("bad:http://foo");
        assertEquals(0, badProtocol.getTrafficStatsTag());
        UrlParseRequest goodProtocol = new UrlParseRequest("http://foo");
        assertFalse(0 == goodProtocol.getTrafficStatsTag());
    }

    @Test
    public void getCacheKey() {
        assertEquals(
                "http://example.com",
                new UrlParseRequest(Method.GET, "http://example.com").getCacheKey());
        assertEquals(
                "http://example.com",
                new UrlParseRequest(Method.DEPRECATED_GET_OR_POST, "http://example.com")
                        .getCacheKey());
        assertEquals(
                "1-http://example.com",
                new UrlParseRequest(Method.POST, "http://example.com").getCacheKey());
        assertEquals(
                "2-http://example.com",
                new UrlParseRequest(Method.PUT, "http://example.com").getCacheKey());
    }

    private static class UrlParseRequest extends Request<Object> {
        UrlParseRequest(String url) {
            this(Method.GET, url);
        }

        UrlParseRequest(int method, String url) {
            super(method, url, null);
        }

        @Override
        protected void deliverResponse(Object response) {}

        @Override
        protected Response<Object> parseNetworkResponse(NetworkResponse response) {
            return null;
        }
    }

    @Test
    public void nullKeyInPostParams() throws Exception {
        Request<Object> request =
                new Request<Object>(Method.POST, "url", null) {
                    @Override
                    protected void deliverResponse(Object response) {}

                    @Override
                    protected Response<Object> parseNetworkResponse(NetworkResponse response) {
                        return null;
                    }

                    @Override
                    protected Map<String, String> getParams() {
                        return Collections.singletonMap(null, "value");
                    }

                    @Override
                    protected Map<String, String> getPostParams() {
                        return Collections.singletonMap(null, "value");
                    }
                };
        try {
            request.getBody();
        } catch (IllegalArgumentException e) {
            // expected
        }
        try {
            request.getPostBody();
        } catch (IllegalArgumentException e) {
            // expected
        }
    }

    @Test
    public void nullValueInPostParams() throws Exception {
        Request<Object> request =
                new Request<Object>(Method.POST, "url", null) {
                    @Override
                    protected void deliverResponse(Object response) {}

                    @Override
                    protected Response<Object> parseNetworkResponse(NetworkResponse response) {
                        return null;
                    }

                    @Override
                    protected Map<String, String> getParams() {
                        return Collections.singletonMap("key", null);
                    }

                    @Override
                    protected Map<String, String> getPostParams() {
                        return Collections.singletonMap("key", null);
                    }
                };
        try {
            request.getBody();
        } catch (IllegalArgumentException e) {
            // expected
        }
        try {
            request.getPostBody();
        } catch (IllegalArgumentException e) {
            // expected
        }
    }

    @Test
    public void sendEvent_notifiesListeners() throws Exception {
        RequestQueue.RequestEventListener listener = mock(RequestQueue.RequestEventListener.class);
        RequestQueue queue = new RequestQueue(new NoCache(), mNetwork, 0, mDelivery);
        queue.addRequestEventListener(listener);

        Request<Object> request =
                new Request<Object>(Method.POST, "url", null) {
                    @Override
                    protected void deliverResponse(Object response) {}

                    @Override
                    protected Response<Object> parseNetworkResponse(NetworkResponse response) {
                        return null;
                    }
                };
        request.setRequestQueue(queue);

        request.sendEvent(RequestQueue.RequestEvent.REQUEST_NETWORK_DISPATCH_STARTED);

        verify(listener)
                .onRequestEvent(
                        request, RequestQueue.RequestEvent.REQUEST_NETWORK_DISPATCH_STARTED);
        verifyNoMoreInteractions(listener);
    }
}