aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/com/android/volley/mock/MockHttpClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/android/volley/mock/MockHttpClient.java')
-rw-r--r--src/test/java/com/android/volley/mock/MockHttpClient.java114
1 files changed, 114 insertions, 0 deletions
diff --git a/src/test/java/com/android/volley/mock/MockHttpClient.java b/src/test/java/com/android/volley/mock/MockHttpClient.java
new file mode 100644
index 0000000..c2a36bc
--- /dev/null
+++ b/src/test/java/com/android/volley/mock/MockHttpClient.java
@@ -0,0 +1,114 @@
+/*
+ * 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.mock;
+
+import org.apache.http.HttpEntity;
+import org.apache.http.HttpHost;
+import org.apache.http.HttpRequest;
+import org.apache.http.HttpResponse;
+import org.apache.http.HttpStatus;
+import org.apache.http.ProtocolVersion;
+import org.apache.http.StatusLine;
+import org.apache.http.client.HttpClient;
+import org.apache.http.client.ResponseHandler;
+import org.apache.http.client.methods.HttpUriRequest;
+import org.apache.http.conn.ClientConnectionManager;
+import org.apache.http.message.BasicHttpResponse;
+import org.apache.http.message.BasicStatusLine;
+import org.apache.http.params.HttpParams;
+import org.apache.http.protocol.HttpContext;
+
+
+public class MockHttpClient implements HttpClient {
+ private int mStatusCode = HttpStatus.SC_OK;
+ private HttpEntity mResponseEntity = null;
+
+ public void setResponseData(HttpEntity entity) {
+ mStatusCode = HttpStatus.SC_OK;
+ mResponseEntity = entity;
+ }
+
+ public void setErrorCode(int statusCode) {
+ if (statusCode == HttpStatus.SC_OK) {
+ throw new IllegalArgumentException("statusCode cannot be 200 for an error");
+ }
+ mStatusCode = statusCode;
+ }
+
+ public HttpUriRequest requestExecuted = null;
+
+ // This is the only one we actually use.
+ @Override
+ public HttpResponse execute(HttpUriRequest request, HttpContext context) {
+ requestExecuted = request;
+ StatusLine statusLine = new BasicStatusLine(
+ new ProtocolVersion("HTTP", 1, 1), mStatusCode, "");
+ HttpResponse response = new BasicHttpResponse(statusLine);
+ response.setEntity(mResponseEntity);
+
+ return response;
+ }
+
+
+ // Unimplemented methods ahoy
+
+ @Override
+ public HttpResponse execute(HttpUriRequest request) {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public HttpResponse execute(HttpHost target, HttpRequest request) {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public <T> T execute(HttpUriRequest arg0, ResponseHandler<? extends T> arg1) {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public HttpResponse execute(HttpHost target, HttpRequest request, HttpContext context) {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public <T> T execute(HttpUriRequest arg0, ResponseHandler<? extends T> arg1, HttpContext arg2) {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public <T> T execute(HttpHost arg0, HttpRequest arg1, ResponseHandler<? extends T> arg2) {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public <T> T execute(HttpHost arg0, HttpRequest arg1, ResponseHandler<? extends T> arg2,
+ HttpContext arg3) {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public ClientConnectionManager getConnectionManager() {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public HttpParams getParams() {
+ throw new UnsupportedOperationException();
+ }
+}