BAEL_3760-Introduction-to-Takes (#8767)

* Initial commit

* Intro to Takes

* Takes - code

* Code changes

* Takes - unit and integration test

* Takes - hit-refresh feature

* Takes - renamed hit-refresh to reload

* Takes - review changes
This commit is contained in:
Anshul Bansal
2020-03-01 15:07:50 +02:00
committed by GitHub
parent 511a235c0a
commit e7dc4751d9
8 changed files with 227 additions and 2 deletions

View File

@@ -0,0 +1,36 @@
package com.baeldung.takes;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.net.URI;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
import org.junit.Test;
import org.takes.http.FtRemote;
public class TakesAppIntegrationTest {
@Test
public void givenTake_whenRunRemoteServer_thenRespond() throws Exception {
new FtRemote(new TakesContact()).exec(
new FtRemote.Script() {
@Override
public void exec(final URI home) throws IOException {
HttpClient client = HttpClientBuilder.create().build();
HttpResponse response = client.execute(new HttpGet(home));
int statusCode = response.getStatusLine().getStatusCode();
HttpEntity entity = response.getEntity();
String result = EntityUtils.toString(entity);
assertEquals(200, statusCode);
assertEquals("Contact us at https://www.baeldung.com", result);
}
});
}
}