changeset 280:0701c6b6182d

Fixed indention
author torsten
date Fri, 09 Aug 2013 10:11:01 +0200
parents 0d3966077415
children cba1e9bef7c2
files src/main/java/de/intevation/lada/test/RestEasyClient.java
diffstat 1 files changed, 96 insertions(+), 96 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/de/intevation/lada/test/RestEasyClient.java	Fri Aug 09 10:10:43 2013 +0200
+++ b/src/main/java/de/intevation/lada/test/RestEasyClient.java	Fri Aug 09 10:11:01 2013 +0200
@@ -8,102 +8,102 @@
 
 public class RestEasyClient {
 
-public static String baseURL = "https://bfs-lada.intevation.de/lada/server/rest/";
-
-public ClientResponse<String> getResponse(String url, boolean header){
-	ClientRequest request = new ClientRequest(url);
-	if(header)
-		request.header("Authorization", "Basic dGVzdGVpbnM6TjVKOENmSm5iOA==");
-	ClientResponse<String> response = null;
-	try {
-		response = request.get(String.class);
-	}
-	catch(Exception e) {
-		e.printStackTrace();
-	}
-	return response;
-}
-
-public void checkResponse(ClientResponse<String> response){
-	Assert.assertEquals(true, response.getEntity().contains("\"message\":\"200\""));
-}
+    public static String baseURL = "https://bfs-lada.intevation.de/lada/server/rest/";
 
-public void testHttpOK(String url) {
-	ClientResponse<String> response = getResponse(url, true);
-	Assert.assertNotNull("Response shouldnot be null", response);
-	Assert.assertEquals(200, response.getStatus());
-	checkResponse(response);
-}
-
-public void testHttpForbidden(String url) {
-	ClientResponse<String> response = getResponse(url, false);
-	Assert.assertNotNull("Response shouldnot be null", response);
-	Assert.assertEquals(401, response.getStatus());
-}
+    public ClientResponse<String> getResponse(String url, boolean header){
+        ClientRequest request = new ClientRequest(url);
+        if(header)
+            request.header("Authorization", "Basic dGVzdGVpbnM6TjVKOENmSm5iOA==");
+        ClientResponse<String> response = null;
+        try {
+            response = request.get(String.class);
+        }
+        catch(Exception e) {
+            e.printStackTrace();
+        }
+        return response;
+    }
 
-@Test
-public void testLOrtService(){
-	testHttpOK(baseURL + "ort?probeId=000007587685X");
-	testHttpForbidden(baseURL + "ort");
-	ClientResponse<String> 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<String> response = getResponse(baseURL + "messkommentare/000007587685X", true);
-	Assert.assertNotNull(response);
-	Assert.assertEquals(404, response.getStatus());
+    public void checkResponse(ClientResponse<String> response){
+        Assert.assertEquals(true, response.getEntity().contains("\"message\":\"200\""));
+    }
+
+    public void testHttpOK(String url) {
+        ClientResponse<String> response = getResponse(url, true);
+        Assert.assertNotNull("Response shouldnot be null", response);
+        Assert.assertEquals(200, response.getStatus());
+        checkResponse(response);
+    }
+
+    public void testHttpForbidden(String url) {
+        ClientResponse<String> 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<String> 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<String> 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<String> 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<String> 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<String> 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<String> 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<String> 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<String> response = getResponse(baseURL + "zusatzwert/000007587685X", true);
+        Assert.assertNotNull(response);
+        Assert.assertEquals(404, response.getStatus());
+    }
 }
-@Test
-public void testLKommentarService() {
-	testHttpOK(baseURL + "kommentare?probeId=000007587685X");
-	testHttpForbidden(baseURL + "kommentare");
-	ClientResponse<String> 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<String> 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<String> 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<String> 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<String> 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<String> response = getResponse(baseURL + "zusatzwert/000007587685X", true);
-	Assert.assertNotNull(response);
-	Assert.assertEquals(404, response.getStatus());
-}
-}
\ No newline at end of file
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)