Merge "DownloadTest: Use enums from org.apache.http.HttpStatus"

This commit is contained in:
Matthias Sohn 2016-08-19 19:19:13 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 1bea0227e7
1 changed files with 8 additions and 3 deletions

View File

@ -42,6 +42,8 @@
*/
package org.eclipse.jgit.lfs.server.fs;
import static org.apache.http.HttpStatus.SC_NOT_FOUND;
import static org.apache.http.HttpStatus.SC_UNPROCESSABLE_ENTITY;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
@ -80,7 +82,8 @@ public void testDownloadInvalidPathInfo()
} catch (RuntimeException e) {
String error = String.format(
"Invalid pathInfo '/%s' does not match '/{SHA-256}'", id);
assertEquals(formatErrorMessage(422, error), e.getMessage());
assertEquals(formatErrorMessage(SC_UNPROCESSABLE_ENTITY, error),
e.getMessage());
}
}
@ -95,7 +98,8 @@ public void testDownloadInvalidId()
fail("expected RuntimeException");
} catch (RuntimeException e) {
String error = String.format("Invalid id: : %s", id);
assertEquals(formatErrorMessage(422, error), e.getMessage());
assertEquals(formatErrorMessage(SC_UNPROCESSABLE_ENTITY, error),
e.getMessage());
}
}
@ -110,7 +114,8 @@ public void testDownloadNotFound()
fail("expected RuntimeException");
} catch (RuntimeException e) {
String error = String.format("Object '%s' not found", id.getName());
assertEquals(formatErrorMessage(404, error), e.getMessage());
assertEquals(formatErrorMessage(SC_NOT_FOUND, error),
e.getMessage());
}
}