Md5HasherTest.java
package azkaban.utils;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
import java.io.File;
import org.junit.Test;
public class Md5HasherTest {
private static final File ZIP_FILE = new File("src/test/resources/sample_flow_01.zip");
@Test
public void md5Hash() throws Exception {
assertThat(Md5Hasher.md5Hash(ZIP_FILE), is(new byte[]{
-59, -26, 22, -50, -80, -101, -57, -121, -27, 46, -71, -101, -85, -115, 42, -116}));
}
}