# HG changeset patch # User Torsten Irländer # Date 1375955701 -7200 # Node ID 8a66802aa09bddbd2baee88931125617750bb91e # Parent aadc0bb0dc1df81f09aeb0952005f416c1355267# Parent 758a12cd0dd55b2bf083253bfdfd3c529ec284f7 Merged diff -r aadc0bb0dc1d -r 8a66802aa09b pom.xml --- a/pom.xml Tue Aug 06 14:27:01 2013 +0200 +++ b/pom.xml Thu Aug 08 11:55:01 2013 +0200 @@ -161,7 +161,6 @@ arquillian-protocol-servlet test - @@ -274,6 +273,26 @@ - + + unit-tests + + + junit + junit + 4.10 + test + + + org.jboss.resteasy + resteasy-jaxrs + 2.2.2.GA + + + org.apache.httpcomponents + httpcore + 4.1.4 + + + diff -r aadc0bb0dc1d -r 8a66802aa09b src/main/java/de/intevation/lada/test/RestEasyClient.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/de/intevation/lada/test/RestEasyClient.java Thu Aug 08 11:55:01 2013 +0200 @@ -0,0 +1,109 @@ +package de.intevation.lada.test; + +import junit.framework.Assert; +import org.junit.Test; + +import org.jboss.resteasy.client.ClientRequest; +import org.jboss.resteasy.client.ClientResponse; + +public class RestEasyClient { + +public static String baseURL = "https://bfs-lada.intevation.de/lada/server/rest/"; + +public ClientResponse getResponse(String url, boolean header){ + ClientRequest request = new ClientRequest(url); + if(header) + request.header("Authorization", "Basic dGVzdGVpbnM6TjVKOENmSm5iOA=="); + ClientResponse response = null; + try { + response = request.get(String.class); + } + catch(Exception e) { + e.printStackTrace(); + } + return response; +} + +public void checkResponse(ClientResponse response){ + Assert.assertEquals(true, response.getEntity().contains("\"message\":\"200\"")); +} + +public void testHttpOK(String url) { + ClientResponse response = getResponse(url, true); + Assert.assertNotNull("Response shouldnot be null", response); + Assert.assertEquals(200, response.getStatus()); + checkResponse(response); +} + +public void testHttpForbidden(String url) { + ClientResponse response = getResponse(url, false); + Assert.assertNotNull("Response shouldnot be null", response); + Assert.assertEquals(401, response.getStatus()); +} + +@Test +public void testLOrtService(){ + testHttpOK(baseURL + "ort?probeId=000007587685X"); + testHttpForbidden(baseURL + "ort"); + ClientResponse response = getResponse(baseURL + "ort/000007587685X", true); + Assert.assertNotNull(response); + Assert.assertEquals(404, response.getStatus()); +} +@Test +public void testLMessKommentarService() { + testHttpOK(baseURL + "messkommentare?probeId=000007587685X&messungsId=1"); + testHttpForbidden(baseURL + "messkommentare"); + ClientResponse response = getResponse(baseURL + "messkommentare/000007587685X", true); + Assert.assertNotNull(response); + Assert.assertEquals(404, response.getStatus()); +} +@Test +public void testLKommentarService() { + testHttpOK(baseURL + "kommentare?probeId=000007587685X"); + testHttpForbidden(baseURL + "kommentare"); + ClientResponse response = getResponse(baseURL + "kommentare/000007587685X", true); + Assert.assertNotNull(response); + Assert.assertEquals(404, response.getStatus()); +} +@Test +public void testMessungService() { + testHttpOK(baseURL + "messung?probeId=000007587685X"); + testHttpForbidden(baseURL + "messung"); + ClientResponse response = getResponse(baseURL + "messung/000007587685X", true); + Assert.assertNotNull(response); + Assert.assertEquals(404, response.getStatus()); +} +@Test +public void testLMesswertService() { + testHttpOK(baseURL + "messwert?probeId=000007587685X&messungsId=1"); + testHttpForbidden(baseURL + "messwert"); + ClientResponse response = getResponse(baseURL + "messungwert/000007587685X", true); + Assert.assertNotNull(response); + Assert.assertEquals(404, response.getStatus()); +} +@Test +public void testLProbenService() { + testHttpOK(baseURL + "proben?mstId=06010&umwId=N24"); + testHttpForbidden(baseURL + "proben?mstId=06010&umwId=N24"); + ClientResponse response = getResponse(baseURL + "proben/000007587685X", true); + Assert.assertNotNull(response); + Assert.assertEquals(200, response.getStatus()); + checkResponse(response); +} +@Test +public void testLStatusService() { + testHttpOK(baseURL + "status?probeId=000007587685X&messungsId=1"); + testHttpForbidden(baseURL + "status"); + ClientResponse response = getResponse(baseURL + "status/000007587685X", true); + Assert.assertNotNull(response); + Assert.assertEquals(404, response.getStatus()); +} +@Test +public void testLZusatzwertService() { + testHttpOK(baseURL + "zusatzwert?probeId=000007587685X"); + testHttpForbidden(baseURL + "zusatzwert"); + ClientResponse response = getResponse(baseURL + "zusatzwert/000007587685X", true); + Assert.assertNotNull(response); + Assert.assertEquals(404, response.getStatus()); +} +} \ No newline at end of file