use of org.datatransferproject.spi.transfer.idempotentexecutor.InMemoryIdempotentImportExecutor in project data-transfer-project by google.
the class GoogleVideosImporterTest method importTwoVideos.
@Test
public void importTwoVideos() throws Exception {
PhotosLibraryClient photosLibraryClient = mock(PhotosLibraryClient.class);
// Mock uploads
when(photosLibraryClient.uploadMediaItem(any())).thenReturn(UploadMediaItemResponse.newBuilder().setUploadToken("token1").build(), UploadMediaItemResponse.newBuilder().setUploadToken("token2").build());
// Mock creation response
final NewMediaItemResult newMediaItemResult = NewMediaItemResult.newBuilder().setStatus(Status.newBuilder().setCode(Code.OK_VALUE).build()).setMediaItem(MediaItem.newBuilder().setId("RESULT_ID_1").build()).setUploadToken("token1").build();
final NewMediaItemResult newMediaItemResult2 = NewMediaItemResult.newBuilder().setStatus(Status.newBuilder().setCode(Code.OK_VALUE).build()).setMediaItem(MediaItem.newBuilder().setId("RESULT_ID_2").build()).setUploadToken("token2").build();
BatchCreateMediaItemsResponse response = BatchCreateMediaItemsResponse.newBuilder().addNewMediaItemResults(newMediaItemResult).addNewMediaItemResults(newMediaItemResult2).build();
when(photosLibraryClient.batchCreateMediaItems(ArgumentMatchers.anyList())).thenReturn(response);
InMemoryIdempotentImportExecutor executor = new InMemoryIdempotentImportExecutor(mock(Monitor.class));
long length = googleVideosImporter.importVideoBatch(Lists.newArrayList(new VideoModel(VIDEO_TITLE, VIDEO_URI, VIDEO_DESCRIPTION, MP4_MEDIA_TYPE, VIDEO_ID, null, false), new VideoModel(VIDEO_TITLE, VIDEO_URI, VIDEO_DESCRIPTION, MP4_MEDIA_TYPE, "myId2", null, false)), photosLibraryClient, executor);
assertEquals("Expected the number of bytes to be the two files of 32L.", 64L, length);
assertEquals("Expected executor to have no errors.", 0, executor.getErrors().size());
}
use of org.datatransferproject.spi.transfer.idempotentexecutor.InMemoryIdempotentImportExecutor in project data-transfer-project by google.
the class GoogleVideosImporterTest method skipNotFoundVideo.
@Test
public void skipNotFoundVideo() throws Exception {
PhotosLibraryClient photosLibraryClient = mock(PhotosLibraryClient.class);
HttpURLConnection httpURLConnection = mock(HttpURLConnection.class);
when(httpURLConnection.getInputStream()).thenThrow(new FileNotFoundException());
when(streamProvider.getConnection(any())).thenReturn(httpURLConnection);
InMemoryIdempotentImportExecutor executor = new InMemoryIdempotentImportExecutor(mock(Monitor.class));
long length = googleVideosImporter.importVideoBatch(Lists.newArrayList(new VideoModel(VIDEO_TITLE, VIDEO_URI, VIDEO_DESCRIPTION, MP4_MEDIA_TYPE, VIDEO_ID, null, false)), photosLibraryClient, executor);
assertEquals("Expected the number of bytes to be 0L.", 0L, length);
assertEquals("Expected executor to have no errors.", 0, executor.getErrors().size());
}
use of org.datatransferproject.spi.transfer.idempotentexecutor.InMemoryIdempotentImportExecutor in project data-transfer-project by google.
the class GoogleVideosImporterTest method failOneVideo.
@Test
public void failOneVideo() throws Exception {
PhotosLibraryClient photosLibraryClient = mock(PhotosLibraryClient.class);
// Mock uploads
when(photosLibraryClient.uploadMediaItem(any())).thenReturn(UploadMediaItemResponse.newBuilder().setUploadToken("token1").build(), UploadMediaItemResponse.newBuilder().setUploadToken("token2").build());
// Mock creation response
final NewMediaItemResult newMediaItemResult = NewMediaItemResult.newBuilder().setStatus(Status.newBuilder().setCode(Code.OK_VALUE).build()).setMediaItem(MediaItem.newBuilder().setId("RESULT_ID_1").build()).setUploadToken("token1").build();
final NewMediaItemResult newMediaItemResult2 = NewMediaItemResult.newBuilder().setStatus(Status.newBuilder().setCode(Code.INVALID_ARGUMENT_VALUE).build()).setUploadToken("token2").build();
BatchCreateMediaItemsResponse response = BatchCreateMediaItemsResponse.newBuilder().addNewMediaItemResults(newMediaItemResult).addNewMediaItemResults(newMediaItemResult2).build();
when(photosLibraryClient.batchCreateMediaItems(ArgumentMatchers.anyList())).thenReturn(response);
InMemoryIdempotentImportExecutor executor = new InMemoryIdempotentImportExecutor(mock(Monitor.class));
long length = googleVideosImporter.importVideoBatch(Lists.newArrayList(new VideoModel(VIDEO_TITLE, VIDEO_URI, VIDEO_DESCRIPTION, MP4_MEDIA_TYPE, VIDEO_ID, null, false), new VideoModel(VIDEO_TITLE, VIDEO_URI, VIDEO_DESCRIPTION, MP4_MEDIA_TYPE, "myId2", null, false)), photosLibraryClient, executor);
assertEquals("Expected the number of bytes to be the one files of 32L.", 32L, length);
assertEquals("Expected executor to have one error.", 1, executor.getErrors().size());
ErrorDetail errorDetail = executor.getErrors().iterator().next();
assertEquals("myId2", errorDetail.id());
assertThat(errorDetail.exception(), CoreMatchers.containsString("Video item could not be created."));
}
use of org.datatransferproject.spi.transfer.idempotentexecutor.InMemoryIdempotentImportExecutor in project data-transfer-project by google.
the class GooglePhotosImporterTest method setUp.
@Before
public void setUp() throws IOException, InvalidTokenException, PermissionDeniedException {
googlePhotosInterface = Mockito.mock(GooglePhotosInterface.class);
monitor = Mockito.mock(Monitor.class);
executor = new InMemoryIdempotentImportExecutor(monitor);
Mockito.when(googlePhotosInterface.makePostRequest(anyString(), any(), any(), eq(NewMediaItemResult.class))).thenReturn(Mockito.mock(NewMediaItemResult.class));
JobStore jobStore = new LocalJobStore();
InputStream inputStream = Mockito.mock(InputStream.class);
imageStreamProvider = Mockito.mock(ImageStreamProvider.class);
HttpURLConnection conn = Mockito.mock(HttpURLConnection.class);
Mockito.when(imageStreamProvider.getConnection(anyString())).thenReturn(conn);
Mockito.when(conn.getInputStream()).thenReturn(inputStream);
Mockito.when(conn.getContentLengthLong()).thenReturn(32L);
googlePhotosImporter = new GooglePhotosImporter(null, jobStore, null, null, googlePhotosInterface, imageStreamProvider, monitor, 1.0);
}
Aggregations