Kalle Stenflo
10 years ago
18 changed files with 22 additions and 78 deletions
@ -1,4 +1,4 @@ |
|||||||
package com.jayway.jsonpath.internal.spi.json; |
package com.jayway.jsonpath.spi.json; |
||||||
|
|
||||||
import com.fasterxml.jackson.databind.JsonNode; |
import com.fasterxml.jackson.databind.JsonNode; |
||||||
import com.fasterxml.jackson.databind.ObjectMapper; |
import com.fasterxml.jackson.databind.ObjectMapper; |
@ -1,4 +1,4 @@ |
|||||||
package com.jayway.jsonpath.internal.spi.mapper; |
package com.jayway.jsonpath.spi.mapper; |
||||||
|
|
||||||
public interface Factory<T> { |
public interface Factory<T> { |
||||||
|
|
@ -1,44 +0,0 @@ |
|||||||
package com.jayway.jsonpath.old; |
|
||||||
|
|
||||||
import com.jayway.jsonpath.internal.Utils; |
|
||||||
import com.jayway.jsonpath.spi.http.HttpProviderFactory; |
|
||||||
import org.junit.Ignore; |
|
||||||
import org.junit.Test; |
|
||||||
|
|
||||||
import java.io.IOException; |
|
||||||
import java.io.InputStream; |
|
||||||
import java.net.URL; |
|
||||||
|
|
||||||
import static junit.framework.Assert.assertEquals; |
|
||||||
|
|
||||||
public class HttpProviderTest { |
|
||||||
|
|
||||||
|
|
||||||
private static final String EXPECTED = "{\n" + |
|
||||||
" \"results\" : [],\n" + |
|
||||||
" \"status\" : \"ZERO_RESULTS\"\n" + |
|
||||||
"}"; |
|
||||||
|
|
||||||
@Test |
|
||||||
@Ignore |
|
||||||
public void http_get() throws Exception { |
|
||||||
|
|
||||||
URL url = new URL("http://maps.googleapis.com/maps/api/geocode/json?sensor=false"); |
|
||||||
|
|
||||||
InputStream inputStream = null; |
|
||||||
try { |
|
||||||
inputStream = HttpProviderFactory.getProvider().get(url); |
|
||||||
|
|
||||||
byte[] bytes = org.apache.commons.io.IOUtils.toByteArray(inputStream); |
|
||||||
|
|
||||||
String json = new String(bytes).trim(); |
|
||||||
|
|
||||||
assertEquals(EXPECTED, json); |
|
||||||
|
|
||||||
} catch (IOException e) { |
|
||||||
Utils.closeQuietly(inputStream); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
} |
|
Loading…
Reference in new issue