Tests OkHttp integration
This commit is contained in:
parent
af7d70cfd8
commit
f3035d827b
@ -10,6 +10,7 @@ dependencies {
|
|||||||
testCompile 'junit:junit:4.11'
|
testCompile 'junit:junit:4.11'
|
||||||
testCompile 'org.mockito:mockito-all:1.9.5'
|
testCompile 'org.mockito:mockito-all:1.9.5'
|
||||||
testCompile 'org.easytesting:fest-assert-core:2.0M10'
|
testCompile 'org.easytesting:fest-assert-core:2.0M10'
|
||||||
|
testCompile 'com.squareup.okhttp:mockwebserver:1.5.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
@ -27,6 +27,10 @@ public class OkHttpEngine implements HttpEngine {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean sendRequest(UrlTileSource tileSource, Tile tile) throws IOException {
|
public boolean sendRequest(UrlTileSource tileSource, Tile tile) throws IOException {
|
||||||
|
if (tile == null) {
|
||||||
|
throw new IllegalArgumentException("Tile cannot be null.");
|
||||||
|
}
|
||||||
|
|
||||||
final URL requestUrl = new URL(baseUrl.toString()
|
final URL requestUrl = new URL(baseUrl.toString()
|
||||||
+ "/"
|
+ "/"
|
||||||
+ Byte.toString(tile.zoomLevel)
|
+ Byte.toString(tile.zoomLevel)
|
||||||
@ -65,6 +69,7 @@ public class OkHttpEngine implements HttpEngine {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean requestCompleted(boolean success) {
|
public boolean requestCompleted(boolean success) {
|
||||||
return true;
|
close();
|
||||||
|
return success;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
97
vtm/test/org/oscim/tiling/source/OkHttpEngineTest.java
Normal file
97
vtm/test/org/oscim/tiling/source/OkHttpEngineTest.java
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
package org.oscim.tiling.source;
|
||||||
|
|
||||||
|
import com.squareup.okhttp.mockwebserver.MockResponse;
|
||||||
|
import com.squareup.okhttp.mockwebserver.MockWebServer;
|
||||||
|
import com.squareup.okhttp.mockwebserver.RecordedRequest;
|
||||||
|
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.oscim.core.Tile;
|
||||||
|
import org.oscim.tiling.source.oscimap4.OSciMap4TileSource;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
import java.net.URL;
|
||||||
|
|
||||||
|
import static org.fest.assertions.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
public class OkHttpEngineTest {
|
||||||
|
private OkHttpEngine engine;
|
||||||
|
private MockWebServer server;
|
||||||
|
private MockResponse mockResponse;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() throws Exception {
|
||||||
|
mockResponse = new MockResponse();
|
||||||
|
mockResponse.setBody("TEST RESPONSE".getBytes());
|
||||||
|
server = new MockWebServer();
|
||||||
|
server.enqueue(mockResponse);
|
||||||
|
server.play();
|
||||||
|
engine = new OkHttpEngine(server.getUrl("/tiles/vtm"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown() throws Exception {
|
||||||
|
server.shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void shouldNotBeNull() throws Exception {
|
||||||
|
assertThat(engine).isNotNull();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class)
|
||||||
|
public void sendRequest_shouldRejectNullTile() throws Exception {
|
||||||
|
engine.sendRequest(null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void sendRequest_shouldAppendXYZToPath() throws Exception {
|
||||||
|
engine.sendRequest(new OSciMap4TileSource("http://www.example.org/tiles/vtm"),
|
||||||
|
new Tile(1, 2, new Integer(3).byteValue()));
|
||||||
|
|
||||||
|
RecordedRequest request = server.takeRequest();
|
||||||
|
assertThat(request.getPath()).isEqualTo("/tiles/vtm/3/1/2.vtm");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void read_shouldReturnResponseStream() throws Exception {
|
||||||
|
engine.sendRequest(new OSciMap4TileSource("http://www.example.org/tiles/vtm"),
|
||||||
|
new Tile(1, 2, new Integer(3).byteValue()));
|
||||||
|
|
||||||
|
InputStream responseStream = engine.read();
|
||||||
|
String response = new BufferedReader(new InputStreamReader(responseStream)).readLine();
|
||||||
|
assertThat(response).isEqualTo("TEST RESPONSE");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IOException.class)
|
||||||
|
public void close_shouldCloseInputStream() throws Exception {
|
||||||
|
engine.sendRequest(new OSciMap4TileSource("http://www.example.org/tiles/vtm"),
|
||||||
|
new Tile(1, 2, new Integer(3).byteValue()));
|
||||||
|
engine.close();
|
||||||
|
|
||||||
|
// Calling read after the stream is closed should throw an exception.
|
||||||
|
InputStream responseStream = engine.read();
|
||||||
|
responseStream.read();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IOException.class)
|
||||||
|
public void requestCompleted_shouldCloseInputStream() throws Exception {
|
||||||
|
engine.sendRequest(new OSciMap4TileSource("http://www.example.org/tiles/vtm"),
|
||||||
|
new Tile(1, 2, new Integer(3).byteValue()));
|
||||||
|
engine.requestCompleted(true);
|
||||||
|
|
||||||
|
// Calling read after the stream is closed should throw an exception.
|
||||||
|
InputStream responseStream = engine.read();
|
||||||
|
responseStream.read();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void requestCompleted_shouldReturnValueGiven() throws Exception {
|
||||||
|
assertThat(engine.requestCompleted(true)).isTrue();
|
||||||
|
assertThat(engine.requestCompleted(false)).isFalse();
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user