Java tutorial
/** * Copyright Microsoft Open Technologies, Inc. * * All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS * OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION * ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A * PARTICULAR PURPOSE, MERCHANTABILITY OR NON-INFRINGEMENT. * * See the Apache License, Version 2.0 for the specific language * governing permissions and limitations under the License. */ package com.microsoft.office.integration.test; import java.lang.reflect.Method; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import org.apache.commons.lang3.StringUtils; import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.Futures; import com.microsoft.exchange.services.odata.model.Me; import com.microsoft.exchange.services.odata.model.types.IContact; import com.msopentech.odatajclient.engine.data.ODataEntity; import com.msopentech.odatajclient.engine.data.ODataProperty; public class ContactsAsyncTestCase extends AbstractAsyncTest { private IContact contact; private ODataEntity sourceContact; public void testCreate() { try { createAndCheck(); // clean-up removeContact(); } catch (Exception e) { reportError(e); } } public void testRead() { // create contact first prepareContact(); counter = new CountDownLatch(1); Futures.addCallback(Me.flushAsync(), new FutureCallback<Void>() { public void onFailure(Throwable t) { reportError(t); counter.countDown(); } public void onSuccess(Void result) { try { readAndCheck(); // clean-up removeContact(); } catch (Throwable t) { reportError(t); } counter.countDown(); } }); try { if (!counter.await(60000, TimeUnit.MILLISECONDS)) { fail("testRead() timed out"); } } catch (InterruptedException e) { fail("testRead() has been interrupted"); } } public void testUpdate() { counter = new CountDownLatch(1); // create contact first prepareContact(); Futures.addCallback(Me.flushAsync(), new FutureCallback<Void>() { public void onFailure(Throwable t) { reportError(t); counter.countDown(); } public void onSuccess(Void result) { try { updateAndCheck(); // clean up removeContact(); } catch (Throwable t) { reportError(t); } counter.countDown(); }; }); try { if (!counter.await(60000, TimeUnit.MILLISECONDS)) { fail("testUpdate() timed out"); } } catch (InterruptedException e) { fail("testUpdate() has been interrupted"); } } public void testDelete() { try { // create contact first prepareContact(); Me.flush(); // then remove deleteAndCheck(); } catch (Exception e) { reportError(e); } } private void deleteAndCheck() throws Exception { removeContact(); final CountDownLatch cdl = new CountDownLatch(1); Futures.addCallback(Me.getContacts().getAsync(contact.getId()), new FutureCallback<IContact>() { public void onFailure(Throwable t) { reportError(t); cdl.countDown(); } public void onSuccess(IContact result) { try { assertNull(result); } catch (Throwable t) { reportError(t); } cdl.countDown(); } }); cdl.await(); } private void updateAndCheck() throws Exception { final String newName = "new name"; contact.setGivenName(newName); Me.flushAsync().get(); assertEquals(newName, contact.getGivenName()); // ensure that changes were pushed to endpoint contact = Me.getContacts().getAsync(contact.getId()).get(); assertEquals(newName, contact.getGivenName()); } private void readAndCheck() throws Exception { // reread a contact final CountDownLatch cdl = new CountDownLatch(1); Futures.addCallback(Me.getContacts().getAsync(contact.getId()), new FutureCallback<IContact>() { public void onFailure(Throwable t) { reportError(t); cdl.countDown(); } public void onSuccess(IContact result) { contact = result; try { Class<?> cls = contact.getClass(); Class<?>[] emptyParametersArray = new Class<?>[0]; for (ODataProperty property : sourceContact.getProperties()) { try { Method getter = cls.getMethod("get" + property.getName(), emptyParametersArray); assertEquals(property.getPrimitiveValue().toValue(), getter.invoke(contact)); } catch (Exception e) { throw new RuntimeException(e); } } } catch (Throwable t) { reportError(t); } cdl.countDown(); } }); cdl.await(); } private void createAndCheck() throws Exception { prepareContact(); final CountDownLatch cdl = new CountDownLatch(1); Futures.addCallback(Me.flushAsync(), new FutureCallback<Void>() { public void onFailure(Throwable t) { reportError(t); cdl.countDown(); } public void onSuccess(Void result) { try { assertTrue(StringUtils.isNotEmpty(contact.getId())); } catch (Throwable t) { reportError(t); } cdl.countDown(); } }); cdl.await(); } private void removeContact() { Me.getContacts().delete(contact.getId()); Me.flush(); } private void prepareContact() { sourceContact = getEntityFromResource("testContact.json"); contact = Me.getContacts().newContact(); contact.setGivenName((String) sourceContact.getProperty("GivenName").getPrimitiveValue().toValue()); } }