Skip to content

Instantly share code, notes, and snippets.

@slawekradzyminski
Created June 4, 2016 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slawekradzyminski/9327458e8d35b518ee5501196c6e0f88 to your computer and use it in GitHub Desktop.
Save slawekradzyminski/9327458e8d35b518ee5501196c6e0f88 to your computer and use it in GitHub Desktop.
import org.fluentlenium.adapter.FluentTestNg;
import org.testng.annotations.Test;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URISyntaxException;
import static org.apache.commons.codec.digest.DigestUtils.md5Hex;
import static org.apache.http.HttpStatus.SC_OK;
import static org.assertj.core.api.Assertions.assertThat;
public class FileDownloadTest extends FluentTestNg {
private static final String EXPECTED_MD5 = "c3fb273e2843808968d68120121f2c74";
private static final String FILE_TO_DL_SELECTOR = "ul li a";
private static final String URL = "http://www.developsense.com";
@Test
public void statusCode200() throws IOException, URISyntaxException {
Request request = prepareRequest();
assertThat(request.getHTTPStatusCodeFromResponse()).isEqualTo(SC_OK);
}
@Test
public void getDownload() throws Exception {
Request request = prepareRequest();
File downloadedFile = request.downloadFile();
assertThat(downloadedFile).isNotNull();
}
@Test
public void getDownloadPlusMd5() throws Exception {
Request request = prepareRequest();
File downloadedFile = request.downloadFile();
assertThat(calculateMd5(downloadedFile)).isEqualTo(EXPECTED_MD5);
}
private Request prepareRequest() throws MalformedURLException, URISyntaxException {
String fileUrl = getUrlFromSite();
Request request = new Request(getDriver());
request.setURIToCheck(fileUrl);
return request;
}
private String getUrlFromSite() {
goTo(URL);
await().until(FILE_TO_DL_SELECTOR).isEnabled();
return findFirst(FILE_TO_DL_SELECTOR).getAttribute("href");
}
private String calculateMd5(File downloadedFile) throws IOException {
FileInputStream fis = new FileInputStream(downloadedFile);
String md5 = md5Hex(fis);
fis.close();
return md5;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment