use of com.microsoft.graph.models.FileAttachment in project msgraph-sdk-java by microsoftgraph.
the class OutlookTests method testAttachments.
@Test
public void testAttachments() throws Exception {
final TestBase testBase = new TestBase();
final AttachmentCollectionPage page = testBase.graphClient.me().messages("AAMkADc5NmMyYjUxLTQ0ZDEtNGM3Yi1iY2JkLTgyZWYwZjgzNDI3NwBGAAAAAADVwiXSJFUqQrTdi_SlUV7QBwCD0ThbORwuS5hfVs_PIdoqAAAAAAENAACD0ThbORwuS5hfVs_PIdoqAAZ6u3D_AAA=").attachments().buildRequest().get();
final List<Attachment> attchs = page.getCurrentPage();
assertEquals(1, attchs.size());
assertTrue(attchs.get(0) instanceof FileAttachment);
}
use of com.microsoft.graph.models.FileAttachment in project msgraph-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;
}
use of com.microsoft.graph.models.FileAttachment in project msgraph-beta-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;
}
use of com.microsoft.graph.models.FileAttachment in project msgraph-beta-sdk-java by microsoftgraph.
the class OutlookTests method testAttachments.
@Test
public void testAttachments() throws Exception {
final TestBase testBase = new TestBase();
final AttachmentCollectionPage page = testBase.graphClient.me().messages("AAMkADc5NmMyYjUxLTQ0ZDEtNGM3Yi1iY2JkLTgyZWYwZjgzNDI3NwBGAAAAAADVwiXSJFUqQrTdi_SlUV7QBwCD0ThbORwuS5hfVs_PIdoqAAAAAAENAACD0ThbORwuS5hfVs_PIdoqAAZ6u3D_AAA=").attachments().buildRequest().get();
final List<Attachment> attchs = page.getCurrentPage();
assertEquals(1, attchs.size());
assertTrue(attchs.get(0) instanceof FileAttachment);
}
use of com.microsoft.graph.models.FileAttachment in project msgraph-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\",\"mobilePhone\":\"123456890\",\"@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.mobilePhone, actual.mobilePhone);
}
}
}
}
Aggregations