use of org.webpieces.webserver.test.HttpDummyRequest in project webpieces by deanhiller.
the class TestBeans method testPostFailDueToSecureTokenCheck.
@Test
public void testPostFailDueToSecureTokenCheck() {
HttpDummyRequest req = Requests.createPostRequest("/postuser", "user.firstName", "D&D", "user.lastName", "Hiller", "user.fullName", "Dean Hiller", "user.address.zipCode", "555", "user.address.street", "Coolness Dr.");
http11Socket.send(req);
FullResponse response = ResponseExtract.assertSingleResponse(http11Socket);
//We should change this to a 400 bad request
response.assertStatusCode(KnownStatusCode.HTTP_500_INTERNAL_SVR_ERROR);
}
use of org.webpieces.webserver.test.HttpDummyRequest in project webpieces by deanhiller.
the class TestBeans method testInvalidComplexBean.
@Test
public void testInvalidComplexBean() {
HttpDummyRequest 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");
http11Socket.send(req);
FullResponse response = ResponseExtract.assertSingleResponse(http11Socket);
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.HttpDummyRequest 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() {
HttpDummyRequest 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)
"");
http11Socket.send(req);
FullResponse response = ResponseExtract.assertSingleResponse(http11Socket);
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());
}
use of org.webpieces.webserver.test.HttpDummyRequest in project webpieces by deanhiller.
the class TestBeans method testArraySaved.
@Test
public void testArraySaved() {
HttpDummyRequest req = Requests.createPostRequest("/postArray2", "user.accounts[1].name", "Account2Name", "user.accounts[1].color", "green", "user.accounts[2].addresses[0].number", "56", "user.firstName", "D&D", "user.lastName", "Hiller", "user.fullName", "Dean Hiller");
http11Socket.send(req);
FullResponse response = ResponseExtract.assertSingleResponse(http11Socket);
response.assertStatusCode(KnownStatusCode.HTTP_303_SEEOTHER);
UserDto user = mockSomeLib.getUser();
Assert.assertEquals("D&D", user.getFirstName());
Assert.assertEquals(3, user.getAccounts().size());
Assert.assertEquals("Account2Name", user.getAccounts().get(1).getName());
Assert.assertEquals(56, user.getAccounts().get(2).getAddresses().get(0).getNumber());
}
use of org.webpieces.webserver.test.HttpDummyRequest in project webpieces by deanhiller.
the class TestBeans method testComplexBeanSaved.
@Test
public void testComplexBeanSaved() {
HttpDummyRequest req = Requests.createPostRequest("/postuser2", "user.firstName", "D&D", "user.lastName", "Hiller", "user.fullName", "Dean Hiller", "user.address.zipCode", "555", "user.address.street", "Coolness Dr.");
http11Socket.send(req);
FullResponse response = ResponseExtract.assertSingleResponse(http11Socket);
response.assertStatusCode(KnownStatusCode.HTTP_303_SEEOTHER);
UserDto user = mockSomeOtherLib.getUser();
Assert.assertEquals(555, user.getAddress().getZipCode());
Assert.assertEquals("D&D", user.getFirstName());
Assert.assertEquals("Coolness Dr.", user.getAddress().getStreet());
}
Aggregations