Search in sources :

Example 6 with DriveItemUploadableProperties

use of com.microsoft.graph.models.DriveItemUploadableProperties in project msgraph-beta-sdk-java by microsoftgraph.

the class OneDriveTests method downloadJsonFileFromOneDrive.

@Test
@Disabled
public void downloadJsonFileFromOneDrive() throws Exception {
    setUp();
    final DriveItemUploadableProperties item = new DriveItemUploadableProperties();
    item.name = "test.json";
    item.additionalDataManager().put("@microsoft.graph.conflictBehavior", new JsonPrimitive("replace"));
    final InputStream uploadFile = new ByteArrayInputStream("{\"hehe\":\"haha\"}".getBytes(StandardCharsets.UTF_8));
    final long fileSize = (long) uploadFile.available();
    final UploadSession session = testBase.graphClient.me().drive().root().itemWithPath(item.name).createUploadSession(DriveItemCreateUploadSessionParameterSet.newBuilder().withItem(item).build()).buildRequest().post();
    LargeFileUploadTask<DriveItem> chunkedUploadProvider = new LargeFileUploadTask<DriveItem>(session, testBase.graphClient, uploadFile, fileSize, DriveItem.class);
    final LargeFileUploadResult<DriveItem> result = chunkedUploadProvider.upload(0, null, callback);
    assertNotNull(result);
    final InputStream stream = testBase.graphClient.me().drive().root().itemWithPath(item.name).content().buildRequest().get();
    final String fileContent = CoreHttpProvider.streamToString(stream);
    assertTrue(fileContent.length() > 0);
}
Also used : DriveItem(com.microsoft.graph.models.DriveItem) DriveItemUploadableProperties(com.microsoft.graph.models.DriveItemUploadableProperties) JsonPrimitive(com.google.gson.JsonPrimitive) ByteArrayInputStream(java.io.ByteArrayInputStream) ByteArrayInputStream(java.io.ByteArrayInputStream) InputStream(java.io.InputStream) LargeFileUploadTask(com.microsoft.graph.tasks.LargeFileUploadTask) UploadSession(com.microsoft.graph.models.UploadSession) Test(org.junit.jupiter.api.Test) Disabled(org.junit.jupiter.api.Disabled)

Aggregations

DriveItemUploadableProperties (com.microsoft.graph.models.DriveItemUploadableProperties)6 Test (org.junit.jupiter.api.Test)6 JsonPrimitive (com.google.gson.JsonPrimitive)4 DriveItem (com.microsoft.graph.models.DriveItem)4 UploadSession (com.microsoft.graph.models.UploadSession)4 LargeFileUploadTask (com.microsoft.graph.tasks.LargeFileUploadTask)4 ByteArrayInputStream (java.io.ByteArrayInputStream)4 InputStream (java.io.InputStream)4 Disabled (org.junit.jupiter.api.Disabled)4 DriveItemCreateUploadSessionParameterSet (com.microsoft.graph.models.DriveItemCreateUploadSessionParameterSet)2