Search in sources :

Example 11 with ErrorRS

use of com.epam.ta.reportportal.ws.model.ErrorRS in project service-api by reportportal.

the class UserFilterControllerValidationTest method updateFilterShouldReturnErrorWhenNameIsNull.

@Test
public void updateFilterShouldReturnErrorWhenNameIsNull() throws Exception {
    // GIVEN
    UpdateUserFilterRQ userFilterRQ = prepareFilter();
    // WHEN
    MvcResult mvcResult = mockMvc.perform(put(DEFAULT_PROJECT_BASE_URL + FILTER_PATH + ID_PATH).with(token(oAuthHelper.getDefaultToken())).content(objectMapper.writeValueAsBytes(userFilterRQ)).contentType(APPLICATION_JSON)).andExpect(status().isBadRequest()).andReturn();
    // THEN
    ErrorRS error = objectMapper.readValue(mvcResult.getResponse().getContentAsString(), ErrorRS.class);
    assertEquals(INCORRECT_REQUEST, error.getErrorType());
    assertEquals(INCORRECT_REQUEST_MESSAGE + FIELD_NAME_IS_NULL_MESSAGE, error.getMessage());
}
Also used : UpdateUserFilterRQ(com.epam.ta.reportportal.ws.model.filter.UpdateUserFilterRQ) ErrorRS(com.epam.ta.reportportal.ws.model.ErrorRS) MvcResult(org.springframework.test.web.servlet.MvcResult) BaseMvcTest(com.epam.ta.reportportal.ws.BaseMvcTest) Test(org.junit.jupiter.api.Test)

Example 12 with ErrorRS

use of com.epam.ta.reportportal.ws.model.ErrorRS in project service-api by reportportal.

the class LaunchControllerValidationTest method createLaunchShouldReturnErrorWhenNameIsNull.

@Test
public void createLaunchShouldReturnErrorWhenNameIsNull() throws Exception {
    // GIVEN
    StartLaunchRQ startLaunchRQ = prepareLaunch();
    // WHEN
    MvcResult mvcResult = mockMvc.perform(post(DEFAULT_PROJECT_BASE_URL + LAUNCH_PATH).with(token(oAuthHelper.getDefaultToken())).content(objectMapper.writeValueAsBytes(startLaunchRQ)).contentType(APPLICATION_JSON)).andExpect(status().isBadRequest()).andReturn();
    // THEN
    ErrorRS error = objectMapper.readValue(mvcResult.getResponse().getContentAsString(), ErrorRS.class);
    assertEquals(INCORRECT_REQUEST, error.getErrorType());
    assertEquals(INCORRECT_REQUEST_MESSAGE + FIELD_NAME_IS_NULL_MESSAGE, error.getMessage());
}
Also used : StartLaunchRQ(com.epam.ta.reportportal.ws.model.launch.StartLaunchRQ) ErrorRS(com.epam.ta.reportportal.ws.model.ErrorRS) MvcResult(org.springframework.test.web.servlet.MvcResult) BaseMvcTest(com.epam.ta.reportportal.ws.BaseMvcTest) Test(org.junit.jupiter.api.Test)

Example 13 with ErrorRS

use of com.epam.ta.reportportal.ws.model.ErrorRS in project service-api by reportportal.

the class LaunchControllerValidationTest method createLaunchShouldReturnErrorWhenNameIsEmpty.

@Test
public void createLaunchShouldReturnErrorWhenNameIsEmpty() throws Exception {
    // GIVEN
    StartLaunchRQ startLaunchRQ = prepareLaunch();
    startLaunchRQ.setName(EMPTY);
    // WHEN
    MvcResult mvcResult = mockMvc.perform(post(DEFAULT_PROJECT_BASE_URL + LAUNCH_PATH).with(token(oAuthHelper.getDefaultToken())).content(objectMapper.writeValueAsBytes(startLaunchRQ)).contentType(APPLICATION_JSON)).andExpect(status().isBadRequest()).andReturn();
    // THEN
    ErrorRS error = objectMapper.readValue(mvcResult.getResponse().getContentAsString(), ErrorRS.class);
    assertEquals(INCORRECT_REQUEST, error.getErrorType());
    assertEquals(INCORRECT_REQUEST_MESSAGE + "[" + FIELD_NAME_IS_BLANK_MESSAGE + " " + FIELD_NAME_SIZE_MESSAGE + "] ", error.getMessage());
}
Also used : StartLaunchRQ(com.epam.ta.reportportal.ws.model.launch.StartLaunchRQ) ErrorRS(com.epam.ta.reportportal.ws.model.ErrorRS) MvcResult(org.springframework.test.web.servlet.MvcResult) BaseMvcTest(com.epam.ta.reportportal.ws.BaseMvcTest) Test(org.junit.jupiter.api.Test)

Example 14 with ErrorRS

use of com.epam.ta.reportportal.ws.model.ErrorRS in project service-api by reportportal.

the class LaunchControllerValidationTest method mergeLaunchShouldReturnErrorWhenNameIsEmpty.

@Test
public void mergeLaunchShouldReturnErrorWhenNameIsEmpty() throws Exception {
    // GIVEN
    MergeLaunchesRQ mergeLaunchesRQ = prepareLaunchesMerge();
    mergeLaunchesRQ.setName(EMPTY);
    // WHEN
    MvcResult mvcResult = mockMvc.perform(post(DEFAULT_PROJECT_BASE_URL + LAUNCH_PATH + MERGE_PATH).with(token(oAuthHelper.getDefaultToken())).content(objectMapper.writeValueAsBytes(mergeLaunchesRQ)).contentType(APPLICATION_JSON)).andExpect(status().isBadRequest()).andReturn();
    // THEN
    ErrorRS error = objectMapper.readValue(mvcResult.getResponse().getContentAsString(), ErrorRS.class);
    assertEquals(INCORRECT_REQUEST, error.getErrorType());
    assertEquals(INCORRECT_REQUEST_MESSAGE + "[" + FIELD_NAME_IS_BLANK_MESSAGE + " " + FIELD_NAME_SIZE_MESSAGE + "] ", error.getMessage());
}
Also used : MergeLaunchesRQ(com.epam.ta.reportportal.ws.model.launch.MergeLaunchesRQ) ErrorRS(com.epam.ta.reportportal.ws.model.ErrorRS) MvcResult(org.springframework.test.web.servlet.MvcResult) BaseMvcTest(com.epam.ta.reportportal.ws.BaseMvcTest) Test(org.junit.jupiter.api.Test)

Example 15 with ErrorRS

use of com.epam.ta.reportportal.ws.model.ErrorRS in project service-api by reportportal.

the class LaunchControllerValidationTest method mergeLaunchShouldReturnErrorWhenNameIsGreaterThanTwoHundredAndFiftySixCharacters.

@Test
public void mergeLaunchShouldReturnErrorWhenNameIsGreaterThanTwoHundredAndFiftySixCharacters() throws Exception {
    // GIVEN
    MergeLaunchesRQ mergeLaunchesRQ = prepareLaunchesMerge();
    mergeLaunchesRQ.setName(LONG_NAME_VALUE);
    // WHEN
    MvcResult mvcResult = mockMvc.perform(post(DEFAULT_PROJECT_BASE_URL + LAUNCH_PATH + MERGE_PATH).with(token(oAuthHelper.getDefaultToken())).content(objectMapper.writeValueAsBytes(mergeLaunchesRQ)).contentType(APPLICATION_JSON)).andExpect(status().isBadRequest()).andReturn();
    // THEN
    ErrorRS error = objectMapper.readValue(mvcResult.getResponse().getContentAsString(), ErrorRS.class);
    assertEquals(INCORRECT_REQUEST, error.getErrorType());
    assertEquals(INCORRECT_REQUEST_MESSAGE + "[" + FIELD_NAME_SIZE_MESSAGE + "] ", error.getMessage());
}
Also used : MergeLaunchesRQ(com.epam.ta.reportportal.ws.model.launch.MergeLaunchesRQ) ErrorRS(com.epam.ta.reportportal.ws.model.ErrorRS) MvcResult(org.springframework.test.web.servlet.MvcResult) BaseMvcTest(com.epam.ta.reportportal.ws.BaseMvcTest) Test(org.junit.jupiter.api.Test)

Aggregations

BaseMvcTest (com.epam.ta.reportportal.ws.BaseMvcTest)52 ErrorRS (com.epam.ta.reportportal.ws.model.ErrorRS)52 Test (org.junit.jupiter.api.Test)52 MvcResult (org.springframework.test.web.servlet.MvcResult)52 CreateDashboardRQ (com.epam.ta.reportportal.ws.model.dashboard.CreateDashboardRQ)10 UpdateUserFilterRQ (com.epam.ta.reportportal.ws.model.filter.UpdateUserFilterRQ)10 WidgetRQ (com.epam.ta.reportportal.ws.model.widget.WidgetRQ)10 StartTestItemRQ (com.epam.ta.reportportal.ws.model.StartTestItemRQ)8 MergeLaunchesRQ (com.epam.ta.reportportal.ws.model.launch.MergeLaunchesRQ)4 StartLaunchRQ (com.epam.ta.reportportal.ws.model.launch.StartLaunchRQ)4 Issue (com.epam.ta.reportportal.ws.model.issue.Issue)3 LinkExternalIssueRQ (com.epam.ta.reportportal.ws.model.item.LinkExternalIssueRQ)2 UnlinkExternalIssueRQ (com.epam.ta.reportportal.ws.model.item.UnlinkExternalIssueRQ)2 BtsExtension (com.epam.reportportal.extension.bugtracking.BtsExtension)1 Integration (com.epam.ta.reportportal.entity.integration.Integration)1 INCORRECT_REQUEST_MESSAGE (com.epam.ta.reportportal.ws.controller.constants.ValidationTestsConstants.INCORRECT_REQUEST_MESSAGE)1 INCORRECT_REQUEST (com.epam.ta.reportportal.ws.model.ErrorType.INCORRECT_REQUEST)1 com.epam.ta.reportportal.ws.model.externalsystem (com.epam.ta.reportportal.ws.model.externalsystem)1 IntegrationRQ (com.epam.ta.reportportal.ws.model.integration.IntegrationRQ)1 DefineIssueRQ (com.epam.ta.reportportal.ws.model.issue.DefineIssueRQ)1