Search in sources :

Example 6 with FileAttachment

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

the class CollectionPageSerializerTests method getFileAttachment.

private FileAttachment getFileAttachment() throws Exception {
    FileAttachment fileAttachment = new FileAttachment();
    fileAttachment.name = "document.pdf";
    fileAttachment.contentBytes = "data".getBytes(StandardCharsets.UTF_8);
    fileAttachment.oDataType = "#microsoft.graph.fileAttachment";
    fileAttachment.id = "54321";
    return fileAttachment;
}
Also used : FileAttachment(com.microsoft.graph.models.FileAttachment)

Example 7 with FileAttachment

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

the class DefaultSerializerTests method testDeserializeDerivedType.

@Test
public void testDeserializeDerivedType() throws Exception {
    final DefaultSerializer serializer = new DefaultSerializer(new DefaultLogger());
    final String source = "{\"@odata.context\": \"/attachments/$entity\",\"@odata.type\": \"#microsoft.graph.fileAttachment\",\"id\": \"AAMkAGQ0MjBmNWVkLTYxZjUtNDRmYi05Y2NiLTBlYjIwNzJjNmM1NgBGAAAAAAC6ff7latYeQqu_gLrhSAIhBwCF7iGjpaOmRqVwbZc-xXzwAAAAAAEMAACF7iGjpaOmRqVwbZc-xXzwAABQStA0AAABEgAQAFbGmeisbjtLnQdp7kC_9Fk=\",\"lastModifiedDateTime\": \"2018-01-23T21:50:22Z\",\"name\": \"Test Book.xlsx\",\"contentType\": \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\",\"size\": 8457,\"isInline\": false,\"contentId\": null,\"contentLocation\": null,\"contentBytes\": \"bytedata\"}";
    final Attachment result = serializer.deserializeObject(source, Attachment.class);
    assert (result instanceof FileAttachment);
    final FileAttachment fileAttachment = (FileAttachment) result;
    assertNotNull(fileAttachment.contentBytes);
    assertEquals("#microsoft.graph.fileAttachment", fileAttachment.oDataType);
}
Also used : DefaultSerializer(com.microsoft.graph.serializer.DefaultSerializer) FileAttachment(com.microsoft.graph.models.FileAttachment) Attachment(com.microsoft.graph.models.Attachment) FileAttachment(com.microsoft.graph.models.FileAttachment) DefaultLogger(com.microsoft.graph.logger.DefaultLogger) Test(org.junit.jupiter.api.Test)

Example 8 with FileAttachment

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

the class OutlookTests method getFileAttachment.

private FileAttachment getFileAttachment() throws Exception {
    FileAttachment fileAttachment = new FileAttachment();
    fileAttachment.name = "document.pdf";
    File pdfFile = new File("src/test/resources/document.pdf");
    InputStream fileStream = new FileInputStream(pdfFile);
    fileAttachment.contentBytes = OutlookTests.getByteArray(fileStream);
    fileAttachment.oDataType = "#microsoft.graph.fileAttachment";
    fileAttachment.id = "54321";
    return fileAttachment;
}
Also used : FileInputStream(java.io.FileInputStream) InputStream(java.io.InputStream) FileAttachment(com.microsoft.graph.models.FileAttachment) File(java.io.File) FileInputStream(java.io.FileInputStream)

Example 9 with FileAttachment

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

the class DefaultSerializerTests method testDeserializeDerivedType.

@Test
public void testDeserializeDerivedType() throws Exception {
    final DefaultSerializer serializer = new DefaultSerializer(new DefaultLogger());
    final String source = "{\"@odata.context\": \"/attachments/$entity\",\"@odata.type\": \"#microsoft.graph.fileAttachment\",\"id\": \"AAMkAGQ0MjBmNWVkLTYxZjUtNDRmYi05Y2NiLTBlYjIwNzJjNmM1NgBGAAAAAAC6ff7latYeQqu_gLrhSAIhBwCF7iGjpaOmRqVwbZc-xXzwAAAAAAEMAACF7iGjpaOmRqVwbZc-xXzwAABQStA0AAABEgAQAFbGmeisbjtLnQdp7kC_9Fk=\",\"lastModifiedDateTime\": \"2018-01-23T21:50:22Z\",\"name\": \"Test Book.xlsx\",\"contentType\": \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\",\"size\": 8457,\"isInline\": false,\"contentId\": null,\"contentLocation\": null,\"contentBytes\": \"bytedata\"}";
    final Attachment result = serializer.deserializeObject(source, Attachment.class);
    assert (result instanceof FileAttachment);
    final FileAttachment fileAttachment = (FileAttachment) result;
    assertNotNull(fileAttachment.contentBytes);
    assertEquals("#microsoft.graph.fileAttachment", fileAttachment.oDataType);
}
Also used : DefaultSerializer(com.microsoft.graph.serializer.DefaultSerializer) FileAttachment(com.microsoft.graph.models.FileAttachment) Attachment(com.microsoft.graph.models.Attachment) FileAttachment(com.microsoft.graph.models.FileAttachment) DefaultLogger(com.microsoft.graph.logger.DefaultLogger) Test(org.junit.jupiter.api.Test)

Example 10 with FileAttachment

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

the class CollectionPageSerializerTests method testAttachmentCollectionPageDeserialization.

@Test
public void testAttachmentCollectionPageDeserialization() throws Exception {
    String jsonString = "[{\"contentBytes\":\"ZGF0YQ==\",\"name\":\"document.pdf\",\"@odata.type\":\"#microsoft.graph.fileAttachment\",\"id\":\"54321\"},{\"@odata.type\":\"#microsoft.graph.itemAttachment\",\"name\":\"Holiday event\",\"id\":null,\"isInline\":null,\"size\":null,\"item\":{\"subject\":\"Test Event Subject\",\"start\":{\"dateTime\":\"2018-10-16T06:15:26.544Z\",\"timeZone\":\"UTC\"},\"end\":{\"dateTime\":\"2018-11-18T07:30:26.544Z\",\"timeZone\":\"UTC\"},\"@odata.type\":\"microsoft.graph.event\",\"id\":\"1234\"}},{\"@odata.type\":\"#microsoft.graph.itemAttachment\",\"name\":\"Attachment name\",\"id\":null,\"isInline\":null,\"size\":null,\"item\":{\"displayName\":\"displayname\",\"officeLocation\":\"Montreal\",\"@odata.type\":\"microsoft.graph.contact\"}}]";
    JsonElement jsonElement = JsonParser.parseString(jsonString);
    BaseCollectionPage<Attachment, ?> attachmentCollectionPage = CollectionPageSerializer.deserialize(jsonElement, AttachmentCollectionPage.class, logger);
    for (Attachment attachment : attachmentCollectionPage.getCurrentPage()) {
        if (attachment instanceof FileAttachment) {
            FileAttachment fileAttachment = (FileAttachment) attachment;
            assertEquals(fileAttachment.name, getFileAttachment().name);
            String actual = ByteArraySerializer.serialize(fileAttachment.contentBytes);
            String expected = ByteArraySerializer.serialize(getFileAttachment().contentBytes);
            assertEquals(expected, actual);
        } else if (attachment instanceof ItemAttachment) {
            ItemAttachment itemAttachment = (ItemAttachment) attachment;
            if (itemAttachment.item instanceof Event) {
                Event event = (Event) itemAttachment.item;
                assertEquals(getEvent().subject, event.subject);
            } else if (itemAttachment.item instanceof Contact) {
                Contact actual = (Contact) itemAttachment.item;
                Contact expected = (Contact) getItemAttachmentWithContact().item;
                assertEquals(expected.officeLocation, actual.officeLocation);
            }
        }
    }
}
Also used : JsonElement(com.google.gson.JsonElement) FileAttachment(com.microsoft.graph.models.FileAttachment) Event(com.microsoft.graph.models.Event) ItemAttachment(com.microsoft.graph.models.ItemAttachment) Attachment(com.microsoft.graph.models.Attachment) FileAttachment(com.microsoft.graph.models.FileAttachment) ItemAttachment(com.microsoft.graph.models.ItemAttachment) Contact(com.microsoft.graph.models.Contact) Test(org.junit.jupiter.api.Test)

Aggregations

FileAttachment (com.microsoft.graph.models.FileAttachment)10 Attachment (com.microsoft.graph.models.Attachment)6 Test (org.junit.jupiter.api.Test)6 ItemAttachment (com.microsoft.graph.models.ItemAttachment)4 JsonElement (com.google.gson.JsonElement)2 DefaultLogger (com.microsoft.graph.logger.DefaultLogger)2 Contact (com.microsoft.graph.models.Contact)2 Event (com.microsoft.graph.models.Event)2 AttachmentCollectionPage (com.microsoft.graph.requests.AttachmentCollectionPage)2 DefaultSerializer (com.microsoft.graph.serializer.DefaultSerializer)2 File (java.io.File)2 FileInputStream (java.io.FileInputStream)2 InputStream (java.io.InputStream)2