mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-15 18:28:47 +00:00
Picture tests addec
This commit is contained in:
parent
8385888075
commit
337c2e117b
@ -19,7 +19,7 @@ public class PictureGetter implements CallHandler {
|
|||||||
@Override
|
@Override
|
||||||
public Object conductAction(Map<String, Object> bodyMap, HashMap<String, String> queryMap, String cognitoID) throws SQLException {
|
public Object conductAction(Map<String, Object> bodyMap, HashMap<String, String> queryMap, String cognitoID) throws SQLException {
|
||||||
PreparedStatement statement = connection.prepareStatement(GET_ITEM);
|
PreparedStatement statement = connection.prepareStatement(GET_ITEM);
|
||||||
if (!queryMap.get("id").toString().equals("profile")) {
|
if (!queryMap.containsKey("id") || !queryMap.get("id").toString().equals("profile")) {
|
||||||
throw new IllegalArgumentException("Only profile pictures are currently supported.");
|
throw new IllegalArgumentException("Only profile pictures are currently supported.");
|
||||||
}
|
}
|
||||||
statement.setString(1, cognitoID);
|
statement.setString(1, cognitoID);
|
||||||
|
|||||||
@ -18,6 +18,9 @@ public class PicturePutter implements CallHandler {
|
|||||||
|
|
||||||
public Object conductAction(Map<String, Object> bodyMap, HashMap<String, String> queryString, String cognitoID) throws SQLException {
|
public Object conductAction(Map<String, Object> bodyMap, HashMap<String, String> queryString, String cognitoID) throws SQLException {
|
||||||
PreparedStatement storePicture = connection.prepareStatement(STORE_PICTURE_SQL);
|
PreparedStatement storePicture = connection.prepareStatement(STORE_PICTURE_SQL);
|
||||||
|
if(!bodyMap.containsKey("base64EncodedImage")) {
|
||||||
|
throw new IllegalArgumentException("Base64EncodedImage not found");
|
||||||
|
}
|
||||||
storePicture.setString(1, cognitoID);
|
storePicture.setString(1, cognitoID);
|
||||||
storePicture.setString(2, bodyMap.get("base64EncodedImage").toString());
|
storePicture.setString(2, bodyMap.get("base64EncodedImage").toString());
|
||||||
System.out.println(storePicture);
|
System.out.println(storePicture);
|
||||||
|
|||||||
43
Lambdas/Lists/Picture/test/TestPictureGetter.java
Normal file
43
Lambdas/Lists/Picture/test/TestPictureGetter.java
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import org.junit.Test;
|
||||||
|
import org.mockito.Mockito;
|
||||||
|
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class TestPictureGetter {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPictureGetterValid() {
|
||||||
|
testPictureGetter(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPictureGetterError() {
|
||||||
|
testPictureGetter(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testPictureGetter(boolean shouldThrow) {
|
||||||
|
StatementInjector injector;
|
||||||
|
try {
|
||||||
|
injector = new StatementInjector(null, null, shouldThrow);
|
||||||
|
} catch (SQLException throwables) {
|
||||||
|
throwables.printStackTrace();
|
||||||
|
assert false; //Error in test infrastructure
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
PictureGetter pictureGetter = Mockito.spy(new PictureGetter(injector, "cognitoID"));
|
||||||
|
Map<String, Object> ignore = new HashMap<>();
|
||||||
|
Map<String, Object> body = TestInputUtils.addBody(ignore);
|
||||||
|
body.put("id", 1);
|
||||||
|
body.put("profile", 1);
|
||||||
|
|
||||||
|
try {
|
||||||
|
Object rawIDReturn = pictureGetter.conductAction(body, TestInputUtils.addQueryParams(ignore), "cognitoID");
|
||||||
|
assert (rawIDReturn != null);
|
||||||
|
} catch (SQLException throwables) {
|
||||||
|
assert shouldThrow;
|
||||||
|
throwables.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
40
Lambdas/Lists/Picture/test/TestPicturePutter.java
Normal file
40
Lambdas/Lists/Picture/test/TestPicturePutter.java
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
import org.junit.Test;
|
||||||
|
import org.mockito.Mockito;
|
||||||
|
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class TestPicturePutter {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPicturePutterValid() {
|
||||||
|
testPicturePutter(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPicturePutterError() {
|
||||||
|
testPicturePutter(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testPicturePutter(boolean shouldThrow) {
|
||||||
|
StatementInjector injector;
|
||||||
|
try {
|
||||||
|
injector = new StatementInjector(null, null, shouldThrow);
|
||||||
|
} catch (SQLException throwables) {
|
||||||
|
throwables.printStackTrace();
|
||||||
|
assert false; //Error in test infrastructure
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
PicturePutter picturePutter = Mockito.spy(new PicturePutter(injector, "cognitoID"));
|
||||||
|
Map<String, Object> ignore = new HashMap<>();
|
||||||
|
Map<String, Object> body = TestInputUtils.addBody(ignore);
|
||||||
|
try {
|
||||||
|
Object rawIDReturn = picturePutter.conductAction(body, TestInputUtils.addQueryParams(ignore), "cognitoID");
|
||||||
|
assert (rawIDReturn == null);
|
||||||
|
} catch (SQLException throwables) {
|
||||||
|
assert shouldThrow;
|
||||||
|
throwables.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user