use of org.webpieces.httpclient11.api.HttpFullRequest in project webpieces by deanhiller.
the class TestDomainMatching method testDomain2RequestDomain1Route.
@Test
public void testDomain2RequestDomain1Route() {
HttpFullRequest req = Requests.createGetRequest("domain2.com", "/domain1");
XFuture<HttpFullResponse> respFuture = httpsSocket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
response.assertStatusCode(KnownStatusCode.HTTP_404_NOTFOUND);
response.assertContains("Your page was not found");
}
use of org.webpieces.httpclient11.api.HttpFullRequest in project webpieces by deanhiller.
the class TestDomainMatching method testDomain1RequestDomain1Route.
@Test
public void testDomain1RequestDomain1Route() {
HttpFullRequest req = Requests.createGetRequest("mydomain.com", "/domain1");
XFuture<HttpFullResponse> respFuture = httpsSocket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
response.assertStatusCode(KnownStatusCode.HTTP_200_OK);
response.assertContains("This is domain1");
}
use of org.webpieces.httpclient11.api.HttpFullRequest in project webpieces by deanhiller.
the class TestDomainMatching method testDomain2RequestDomain2Route.
@Test
public void testDomain2RequestDomain2Route() {
HttpFullRequest req = Requests.createGetRequest("domain2.com", "/domain2");
XFuture<HttpFullResponse> respFuture = httpsSocket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
response.assertStatusCode(KnownStatusCode.HTTP_200_OK);
response.assertContains("This is domain2");
}
use of org.webpieces.httpclient11.api.HttpFullRequest in project webpieces by deanhiller.
the class TestDevRefreshPageWithNoRestarting method testInternalErrorModifiedAndControllerModified.
@Test
public void testInternalErrorModifiedAndControllerModified() throws IOException {
HttpFullRequest req1 = Requests.createRequest(KnownHttpMethod.GET, "/causeError");
XFuture<HttpFullResponse> respFuture1 = http11Socket.send(req1);
ResponseWrapper response1 = ResponseExtract.waitResponseAndWrap(respFuture1);
response1.assertStatusCode(KnownStatusCode.HTTP_500_INTERNAL_SVR_ERROR);
// There should be a callback url to render what shows in production
response1.assertContains("/causeError?webpiecesShowInternalErrorPage=true");
HttpFullRequest req2 = Requests.createRequest(KnownHttpMethod.GET, "/causeError?webpiecesShowInternalErrorPage=true");
XFuture<HttpFullResponse> respFuture2 = http11Socket.send(req2);
ResponseWrapper response2 = ResponseExtract.waitResponseAndWrap(respFuture2);
response2.assertStatusCode(KnownStatusCode.HTTP_500_INTERNAL_SVR_ERROR);
response2.assertContains("InternalError1=error1");
simulateDeveloperMakesChanges("src/test/devServerTest/internalError");
XFuture<HttpFullResponse> respFuture3 = http11Socket.send(req1);
ResponseWrapper response3 = ResponseExtract.waitResponseAndWrap(respFuture3);
response3.assertStatusCode(KnownStatusCode.HTTP_500_INTERNAL_SVR_ERROR);
// There should be a callback url to render what shows in production
response3.assertContains("/causeError?webpiecesShowInternalErrorPage=true");
XFuture<HttpFullResponse> respFuture4 = http11Socket.send(req2);
ResponseWrapper response4 = ResponseExtract.waitResponseAndWrap(respFuture4);
response4.assertStatusCode(KnownStatusCode.HTTP_500_INTERNAL_SVR_ERROR);
response4.assertContains("InternalError2=error2");
}
use of org.webpieces.httpclient11.api.HttpFullRequest in project webpieces by deanhiller.
the class TestDevRefreshPageWithNoRestarting method testNotFoundFilterModifiedAndInvalidRoute.
@Test
public void testNotFoundFilterModifiedAndInvalidRoute() throws IOException {
HttpFullRequest req = Requests.createRequest(KnownHttpMethod.GET, "/enableFilter?webpiecesShowPage=true");
XFuture<HttpFullResponse> respFuture1 = http11Socket.send(req);
verify303(respFuture1, "http://myhost.com/home");
simulateDeveloperMakesChanges("src/test/devServerTest/notFoundNewInvalidRoute");
XFuture<HttpFullResponse> respFuture = http11Socket.send(req);
ResponseWrapper response = ResponseExtract.waitResponseAndWrap(respFuture);
response.assertStatusCode(KnownStatusCode.HTTP_500_INTERNAL_SVR_ERROR);
response.assertContains("You are in the WebPieces Development Server. You appear to have a bug in your application.");
// Encountered a bug that can't happen in production as prod server won't even start...
response.assertContains("The above looks like an issue that cannot happen in production so we can't display a production page here");
}
Aggregations