Hi all,
I have tested a web service with
SOAP UI, the Get method works properly.
I am trying to
test it with Rest asssured, looks like the credentials and authentication are missing.
This is how it appears in SOAPUI
In my TestClass I am using the next code:
@Before
public void setup() {
// Test Setup
RestUtil.setBaseURI("http://localhost:9080/cloudAlerts"); // Setup
// Base
// URI
RestUtil.setBasePath("/g1/users/123123123/newsList/
"); // Setup
// Base
// Path
RestUtil.setContentType(ContentType.JSON); // Setup Content Type
RestUtil.createSearchQueryPath("news", "newsList_colleague_id eq '12122'", "", "");
res = RestUtil.getResponse(); // Get response
jp = RestUtil.getJsonPath(res); // Get JsonPath
}
@Test
public void T01_StatusCodeTest() { // Verify the http response
// status returned. Check Status Code is 200?
HelperMethods.checkStatusIs200(res);
}
I get an warning like this
and the error: