use of org.webpieces.webserver.test.ResponseWrapper in project webpieces by deanhiller.
the class TestBeans method testInvalidComplexBean.
@Test
public void testInvalidComplexBean() {
HttpFullRequest req = Requests.createPostRequest("/postuser2", "user.firstName", "D&D", "user.lastName", "Hiller", "user.fullName", "Dean Hiller", "user.address.zipCode", "This test value invalid since not an int", "user.address.street", "Coolness Dr.", "password", "should be hidden from flash");
XFuture<HttpFullResponse> respFuture = http11Socket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
response.assertStatusCode(KnownStatusCode.HTTP_303_SEEOTHER);
UserDto savedUser = mockSomeOtherLib.getUser();
// user was not
Assert.assertEquals(null, savedUser);
UserDto user = mockSomeLib.getUser();
// this is not set since it was invalid
Assert.assertEquals(0, user.getAddress().getZipCode());
Assert.assertEquals("D&D", user.getFirstName());
Assert.assertEquals("Coolness Dr.", user.getAddress().getStreet());
}
use of org.webpieces.webserver.test.ResponseWrapper in project webpieces by deanhiller.
the class TestBeans method testPageParam.
@Test
public void testPageParam() {
HttpFullRequest req = Requests.createRequest(KnownHttpMethod.GET, "/pageparam");
XFuture<HttpFullResponse> respFuture = http11Socket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
response.assertStatusCode(KnownStatusCode.HTTP_200_OK);
response.assertContains("Hi Dean Hiller, this is testing");
response.assertContains("Or we can try to get a flash: testflashvalue");
}
use of org.webpieces.webserver.test.ResponseWrapper in project webpieces by deanhiller.
the class TestBeans method testPostFailDueToSecureTokenCheck.
@Test
public void testPostFailDueToSecureTokenCheck() {
HttpFullRequest req = Requests.createPostRequest("/postuser", "user.firstName", "D&D", "user.lastName", "Hiller", "user.fullName", "Dean Hiller", "user.address.zipCode", "555", "user.address.street", "Coolness Dr.");
XFuture<HttpFullResponse> respFuture = http11Socket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
// We should change this to a 400 bad request
response.assertStatusCode(KnownStatusCode.HTTP_500_INTERNAL_SVR_ERROR);
}
use of org.webpieces.webserver.test.ResponseWrapper in project webpieces by deanhiller.
the class TestBeans method testArrayForm.
@Test
public void testArrayForm() {
HttpFullRequest req = Requests.createRequest(KnownHttpMethod.GET, "/arrayForm");
XFuture<HttpFullResponse> respFuture = http11Socket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
response.assertStatusCode(KnownStatusCode.HTTP_200_OK);
response.assertContains("value=`FirstAccName`".replace('`', '"'));
response.assertContains("value=`SecondAccName`".replace('`', '"'));
response.assertContains("value=`someStreet2-0`".replace('`', '"'));
response.assertContains("value=`someStreet2-1`".replace('`', '"'));
// default labels are there...
response.assertContains("First NameX");
response.assertContains("StreetX");
}
use of org.webpieces.webserver.test.ResponseWrapper in project webpieces by deanhiller.
the class TestBeans method testNullIdFromForm.
/**
* Found this bug where it blew up translating 'null' to 'null' and tried to convert it
* to int instead, so added test then fixed
*/
@Test
public void testNullIdFromForm() {
HttpFullRequest req = Requests.createPostRequest("/postuser2", // multipart is "" and nearly all webservers convert that to null(including ours)
"user.id", // multipart is "" and nearly all webservers convert that to null(including ours)
"");
XFuture<HttpFullResponse> respFuture = http11Socket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
response.assertStatusCode(KnownStatusCode.HTTP_303_SEEOTHER);
// should not have any errors and should redirect back to list of users page..
Assert.assertEquals("http://myhost.com/listusers", response.getRedirectUrl());
}
Aggregations