Search in sources :

Example 21 with Response

use of com.coveros.selenified.services.Response in project selenified by Coveros.

the class ResponseTest method checkNewResponseObjectCodeTest.

@Test
public void checkNewResponseObjectCodeTest() {
    JsonObject json = new JsonObject();
    Response response = new Response(5, json, "");
    Assert.assertEquals(response.getCode(), 5);
}
Also used : Response(com.coveros.selenified.services.Response) JsonObject(com.google.gson.JsonObject) Test(org.testng.annotations.Test)

Example 22 with Response

use of com.coveros.selenified.services.Response in project selenified by Coveros.

the class ResponseTest method checkSetObjectTest.

@Test
public void checkSetObjectTest() {
    JsonObject json = new JsonObject();
    Response response = new Response(5, json, "");
    Assert.assertEquals(response.getObjectData(), json);
    json.addProperty("name", "john");
    response.setObjectData(json);
    Assert.assertEquals(response.getObjectData(), json);
}
Also used : Response(com.coveros.selenified.services.Response) JsonObject(com.google.gson.JsonObject) Test(org.testng.annotations.Test)

Example 23 with Response

use of com.coveros.selenified.services.Response in project selenified by Coveros.

the class ResponseTest method confirmEqualsCodePassTest.

@Test
public void confirmEqualsCodePassTest() throws IOException {
    JsonObject json = new JsonObject();
    json.addProperty("name", "john");
    Response response = new Response(5, json, "");
    response.setOutputFile(outputFile);
    response.assertEquals(5);
    String content = Files.toString(file, Charsets.UTF_8);
    Assert.assertTrue(content.matches("[.\\s\\S]+   <tr>\n    <td align='center'>1.</td>\n    <td> </td>\n    <td>Expected to find a response code of <b>5</b></td>\n    <td>Found a response code of <b>5</b></td>\n    <td>[0-9]+ms / [0-9]+ms</td>\n    <td class='pass'>Pass</td>\n   </tr>\n"));
}
Also used : Response(com.coveros.selenified.services.Response) JsonObject(com.google.gson.JsonObject) Test(org.testng.annotations.Test)

Example 24 with Response

use of com.coveros.selenified.services.Response in project selenified by Coveros.

the class ResponseTest method confirmEqualsArrayPassTest.

@Test
public void confirmEqualsArrayPassTest() throws IOException {
    JsonArray json = new JsonArray();
    json.add("name");
    Response response = new Response(5, json, "");
    response.setOutputFile(outputFile);
    response.assertEquals(json);
    String content = Files.toString(file, Charsets.UTF_8);
    Assert.assertTrue(content.matches("[.\\s\\S]+   <tr>\n    <td align='center'>1.</td>\n    <td> </td>\n    <td>Expected to find a response of:<div><i>\\[<br/>\\&nbsp;\\&nbsp;\"name\"<br/>\\]</i></div></td>\n    <td>Found a response of:<div><i>\\[<br/>\\&nbsp;\\&nbsp;\"name\"<br/>\\]</i></div></td>\n    <td>[0-9]+ms / [0-9]+ms</td>\n    <td class='pass'>Pass</td>\n   </tr>\n"));
}
Also used : JsonArray(com.google.gson.JsonArray) Response(com.coveros.selenified.services.Response) Test(org.testng.annotations.Test)

Example 25 with Response

use of com.coveros.selenified.services.Response in project selenified by Coveros.

the class ResponseTest method checkNewResponseFileArrayTest.

@Test
public void checkNewResponseFileArrayTest() {
    Response response = new Response(outputFile);
    Assert.assertNull(response.getArrayData());
}
Also used : Response(com.coveros.selenified.services.Response) Test(org.testng.annotations.Test)

Aggregations

Response (com.coveros.selenified.services.Response)44 Test (org.testng.annotations.Test)44 JsonObject (com.google.gson.JsonObject)24 JsonArray (com.google.gson.JsonArray)17 HashMap (java.util.HashMap)3 OutputFile (com.coveros.selenified.OutputFile)1