# HG changeset patch # User Torsten Irländer # Date 1376042772 -7200 # Node ID 58cecc86c4548ad9d7a5560fd29e84798a11f878 # Parent e1d37195b92d709ef92df2b753024aea3971fb5f Rename TestCase to meet the Surfire requirement diff -r e1d37195b92d -r 58cecc86c454 src/test/java/de/intevation/lada/RestEasyClient.java --- a/src/test/java/de/intevation/lada/RestEasyClient.java Fri Aug 09 11:34:34 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,109 +0,0 @@ -package de.intevation.lada; - -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()); - } -} diff -r e1d37195b92d -r 58cecc86c454 src/test/java/de/intevation/lada/TestRestEasyClient.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/test/java/de/intevation/lada/TestRestEasyClient.java Fri Aug 09 12:06:12 2013 +0200 @@ -0,0 +1,109 @@ +package de.intevation.lada; + +import junit.framework.Assert; +import org.junit.Test; + +import org.jboss.resteasy.client.ClientRequest; +import org.jboss.resteasy.client.ClientResponse; + +public class TestRestEasyClient { + + 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()); + } +}