Search in sources :

Example 1 with List

use of com.google.api.services.drive.Drive.Files.List in project components by Talend.

the class GoogleDriveListReaderTest method setUp.

@Before
public void setUp() throws Exception {
    super.setUp();
    // stubbing
    mockList = mock(List.class, RETURNS_DEEP_STUBS);
    when(drive.files().list()).thenReturn(mockList);
    when(drive.files().list().setQ(eq(qA)).execute()).thenReturn(createFolderFileList("A", false));
    when(drive.files().list().setQ(eq(qGSA)).execute()).thenReturn(createFolderFileList("A", false));
    when(drive.files().list().setQ(eq(qB)).execute()).thenReturn(createFolderFileList("B", false));
    when(drive.files().list().setQ(eq(qC)).execute()).thenReturn(createFolderFileList("C", false));
    // 
    properties = new GoogleDriveListProperties("test");
    properties.setupProperties();
    properties = (GoogleDriveListProperties) setupConnectionWithInstalledApplicationWithIdAndSecret(properties);
    properties.folder.setValue(FOLDER_ROOT);
}
Also used : List(com.google.api.services.drive.Drive.Files.List) FileList(com.google.api.services.drive.model.FileList) GoogleDriveListProperties(org.talend.components.google.drive.list.GoogleDriveListProperties) Before(org.junit.Before)

Example 2 with List

use of com.google.api.services.drive.Drive.Files.List in project components by Talend.

the class GoogleDriveInputReaderTest method testAdvance.

@Test
public void testAdvance() throws Exception {
    dataSource = spy(dataSource);
    Drive drive = mock(Drive.class, RETURNS_DEEP_STUBS);
    GoogleDriveUtils utils = mock(GoogleDriveUtils.class, RETURNS_DEEP_STUBS);
    doReturn(drive).when(dataSource).getDriveService();
    doReturn(utils).when(dataSource).getDriveUtils();
    List mockList = mock(List.class, RETURNS_DEEP_STUBS);
    when(drive.files().list()).thenReturn(mockList);
    // 
    // String qA = "name='A' and 'root' in parents and mimeType='application/vnd.google-apps.folder' and trashed=false";
    // 
    // when(drive.files().list().setQ(eq(qA)).execute()).thenReturn(createFolderFileList("A", false));
    // 
    // GoogleDriveAbstractListReader alr = mock(GoogleDriveAbstractListReader.class);
    // doReturn(true).when(alr).start();
    inputProperties.getDatasetProperties().folder.setValue("A");
    FileList fileList = new FileList();
    File f = new File();
    f.setName("sd");
    f.setMimeType("text/text");
    f.setId("id-1");
    f.setModifiedTime(com.google.api.client.util.DateTime.parseRfc3339("2017-09-29T10:00:00"));
    f.setSize(100L);
    f.setKind("drive#fileName");
    f.setTrashed(false);
    f.setParents(Collections.singletonList(FOLDER_ROOT));
    f.setWebViewLink("https://toto.com");
    fileList.setFiles(Arrays.asList(f, f, f, f, f));
    when(mockList.execute()).thenReturn(fileList);
    dataSource.initialize(container, inputProperties);
    reader = (GoogleDriveInputReader) dataSource.createReader(container);
    reader.setLimit(2);
    assertTrue(reader.start());
    reader.getCurrent();
    assertTrue(reader.advance());
    reader.getCurrent();
    assertFalse(reader.advance());
}
Also used : FileList(com.google.api.services.drive.model.FileList) Drive(com.google.api.services.drive.Drive) GoogleDriveUtils(org.talend.components.google.drive.runtime.GoogleDriveUtils) List(com.google.api.services.drive.Drive.Files.List) FileList(com.google.api.services.drive.model.FileList) File(com.google.api.services.drive.model.File) Test(org.junit.Test)

Aggregations

List (com.google.api.services.drive.Drive.Files.List)2 FileList (com.google.api.services.drive.model.FileList)2 Drive (com.google.api.services.drive.Drive)1 File (com.google.api.services.drive.model.File)1 Before (org.junit.Before)1 Test (org.junit.Test)1 GoogleDriveListProperties (org.talend.components.google.drive.list.GoogleDriveListProperties)1 GoogleDriveUtils (org.talend.components.google.drive.runtime.GoogleDriveUtils)1