Hamcrest - Is there a way to ignore fields in validation response body while using a file?











up vote
0
down vote

favorite












I am starting with API's automation testing and I have a doubt: I am validating a method POST of a Restfull API, and when I do a POST the API return some content, but some of the fields of the content changes in every request per example the ID.



I am using a file for assert the response body, but I would like to know:



1) Is there anyway of using hamcrest to ignore some fields for assert while I am using a file with all the fields?



2) Is there a better way to do what I want?



My code:



import java.io.File;
import java.util.HashMap;
import java.util.Map;

import org.junit.Test;

import io.restassured.RestAssured;
import io.restassured.path.json.JsonPath;
import static org.hamcrest.Matchers.equalTo;

public class APICriaContatoTests {

/*VARIAVEIS PARA A REQUEST*/

@Test
public void insereInformandoTodosOsDados()
{
JsonPath expectedJson = new JsonPath(new File("arquivos\jsonInsereInformandoTodosOsDados.json"));

//Criando dados para a requisição

jsonAsMap.put("name", "Teste de Nome 4");
jsonAsMap.put("last-name", "Nome Completo 4");
jsonAsMap.put("email", "abc14@emailfake.com");
jsonAsMap.put("age", "25");
jsonAsMap.put("phone", "5519864666664");
jsonAsMap.put("address", "Rua 4");
jsonAsMap.put("state", "Estado 4");
jsonAsMap.put("city", "Cidade 4");

//executando a requisicao

RestAssured.given().accept(ACCEPT).contentType(TYPE)
.body(jsonAsMap)
.when()
.post(ENDPOINT_POST_CRIA_CONTATOS)
.then()
.statusCode(201)
.body("", equalTo(expectedJson.getMap("")));
}
}


The data of the file that I am using for assert my response body



{
"data": {
"id": "12",
"type": "contacts",
"attributes": {
"name": "Teste de Nome 4",
"last-name": "Nome Completo 4",
"email": "abc14@emailfake.com",
"age": 25,
"phone": "5519864666664",
"address": "Rua 4",
"state": "Estado 4",
"city": "Cidade 4"
}
}
}









share|improve this question


























    up vote
    0
    down vote

    favorite












    I am starting with API's automation testing and I have a doubt: I am validating a method POST of a Restfull API, and when I do a POST the API return some content, but some of the fields of the content changes in every request per example the ID.



    I am using a file for assert the response body, but I would like to know:



    1) Is there anyway of using hamcrest to ignore some fields for assert while I am using a file with all the fields?



    2) Is there a better way to do what I want?



    My code:



    import java.io.File;
    import java.util.HashMap;
    import java.util.Map;

    import org.junit.Test;

    import io.restassured.RestAssured;
    import io.restassured.path.json.JsonPath;
    import static org.hamcrest.Matchers.equalTo;

    public class APICriaContatoTests {

    /*VARIAVEIS PARA A REQUEST*/

    @Test
    public void insereInformandoTodosOsDados()
    {
    JsonPath expectedJson = new JsonPath(new File("arquivos\jsonInsereInformandoTodosOsDados.json"));

    //Criando dados para a requisição

    jsonAsMap.put("name", "Teste de Nome 4");
    jsonAsMap.put("last-name", "Nome Completo 4");
    jsonAsMap.put("email", "abc14@emailfake.com");
    jsonAsMap.put("age", "25");
    jsonAsMap.put("phone", "5519864666664");
    jsonAsMap.put("address", "Rua 4");
    jsonAsMap.put("state", "Estado 4");
    jsonAsMap.put("city", "Cidade 4");

    //executando a requisicao

    RestAssured.given().accept(ACCEPT).contentType(TYPE)
    .body(jsonAsMap)
    .when()
    .post(ENDPOINT_POST_CRIA_CONTATOS)
    .then()
    .statusCode(201)
    .body("", equalTo(expectedJson.getMap("")));
    }
    }


    The data of the file that I am using for assert my response body



    {
    "data": {
    "id": "12",
    "type": "contacts",
    "attributes": {
    "name": "Teste de Nome 4",
    "last-name": "Nome Completo 4",
    "email": "abc14@emailfake.com",
    "age": 25,
    "phone": "5519864666664",
    "address": "Rua 4",
    "state": "Estado 4",
    "city": "Cidade 4"
    }
    }
    }









    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am starting with API's automation testing and I have a doubt: I am validating a method POST of a Restfull API, and when I do a POST the API return some content, but some of the fields of the content changes in every request per example the ID.



      I am using a file for assert the response body, but I would like to know:



      1) Is there anyway of using hamcrest to ignore some fields for assert while I am using a file with all the fields?



      2) Is there a better way to do what I want?



      My code:



      import java.io.File;
      import java.util.HashMap;
      import java.util.Map;

      import org.junit.Test;

      import io.restassured.RestAssured;
      import io.restassured.path.json.JsonPath;
      import static org.hamcrest.Matchers.equalTo;

      public class APICriaContatoTests {

      /*VARIAVEIS PARA A REQUEST*/

      @Test
      public void insereInformandoTodosOsDados()
      {
      JsonPath expectedJson = new JsonPath(new File("arquivos\jsonInsereInformandoTodosOsDados.json"));

      //Criando dados para a requisição

      jsonAsMap.put("name", "Teste de Nome 4");
      jsonAsMap.put("last-name", "Nome Completo 4");
      jsonAsMap.put("email", "abc14@emailfake.com");
      jsonAsMap.put("age", "25");
      jsonAsMap.put("phone", "5519864666664");
      jsonAsMap.put("address", "Rua 4");
      jsonAsMap.put("state", "Estado 4");
      jsonAsMap.put("city", "Cidade 4");

      //executando a requisicao

      RestAssured.given().accept(ACCEPT).contentType(TYPE)
      .body(jsonAsMap)
      .when()
      .post(ENDPOINT_POST_CRIA_CONTATOS)
      .then()
      .statusCode(201)
      .body("", equalTo(expectedJson.getMap("")));
      }
      }


      The data of the file that I am using for assert my response body



      {
      "data": {
      "id": "12",
      "type": "contacts",
      "attributes": {
      "name": "Teste de Nome 4",
      "last-name": "Nome Completo 4",
      "email": "abc14@emailfake.com",
      "age": 25,
      "phone": "5519864666664",
      "address": "Rua 4",
      "state": "Estado 4",
      "city": "Cidade 4"
      }
      }
      }









      share|improve this question













      I am starting with API's automation testing and I have a doubt: I am validating a method POST of a Restfull API, and when I do a POST the API return some content, but some of the fields of the content changes in every request per example the ID.



      I am using a file for assert the response body, but I would like to know:



      1) Is there anyway of using hamcrest to ignore some fields for assert while I am using a file with all the fields?



      2) Is there a better way to do what I want?



      My code:



      import java.io.File;
      import java.util.HashMap;
      import java.util.Map;

      import org.junit.Test;

      import io.restassured.RestAssured;
      import io.restassured.path.json.JsonPath;
      import static org.hamcrest.Matchers.equalTo;

      public class APICriaContatoTests {

      /*VARIAVEIS PARA A REQUEST*/

      @Test
      public void insereInformandoTodosOsDados()
      {
      JsonPath expectedJson = new JsonPath(new File("arquivos\jsonInsereInformandoTodosOsDados.json"));

      //Criando dados para a requisição

      jsonAsMap.put("name", "Teste de Nome 4");
      jsonAsMap.put("last-name", "Nome Completo 4");
      jsonAsMap.put("email", "abc14@emailfake.com");
      jsonAsMap.put("age", "25");
      jsonAsMap.put("phone", "5519864666664");
      jsonAsMap.put("address", "Rua 4");
      jsonAsMap.put("state", "Estado 4");
      jsonAsMap.put("city", "Cidade 4");

      //executando a requisicao

      RestAssured.given().accept(ACCEPT).contentType(TYPE)
      .body(jsonAsMap)
      .when()
      .post(ENDPOINT_POST_CRIA_CONTATOS)
      .then()
      .statusCode(201)
      .body("", equalTo(expectedJson.getMap("")));
      }
      }


      The data of the file that I am using for assert my response body



      {
      "data": {
      "id": "12",
      "type": "contacts",
      "attributes": {
      "name": "Teste de Nome 4",
      "last-name": "Nome Completo 4",
      "email": "abc14@emailfake.com",
      "age": 25,
      "phone": "5519864666664",
      "address": "Rua 4",
      "state": "Estado 4",
      "city": "Cidade 4"
      }
      }
      }






      testing automation rest-assured hamcrest






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 9 at 20:58









      Jacqueline Costa

      11




      11





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233196%2fhamcrest-is-there-a-way-to-ignore-fields-in-validation-response-body-while-usi%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233196%2fhamcrest-is-there-a-way-to-ignore-fields-in-validation-response-body-while-usi%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Schultheiß

          Liste der Kulturdenkmale in Wilsdruff

          Android Play Services Check