@Test
@Ignore
public void run() throws Exception {
String keyString = "hoge";
tester.addBlobKey("formFile", keyString);
BlobstoreService bs = BlobstoreServiceFactory.getBlobstoreService();
Map<String, List<BlobKey>> blobs = bs.getUploads(tester.request);
List<BlobKey> blobKeyList = blobs.get("formFile");
Key key = null;
if (blobKeyList != null && blobKeyList.size() > 0) {
key =
Datastore.createKey(Blobstore.class, blobKeyList