Java tutorial
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc. and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.openxdm.xcap.client.test.error; import static org.junit.Assert.assertTrue; import java.io.IOException; import java.util.LinkedList; import javax.xml.bind.JAXBException; import junit.framework.JUnit4TestAdapter; import org.apache.commons.httpclient.HttpException; import org.junit.Test; import org.openxdm.xcap.client.Response; import org.openxdm.xcap.client.test.AbstractXDMJunitOldClientTest; import org.openxdm.xcap.common.error.PreconditionFailedException; import org.openxdm.xcap.common.key.UserAttributeUriKey; import org.openxdm.xcap.common.key.UserDocumentUriKey; import org.openxdm.xcap.common.key.UserElementUriKey; import org.openxdm.xcap.common.resource.AttributeResource; import org.openxdm.xcap.common.resource.ElementResource; import org.openxdm.xcap.common.uri.AttributeSelector; import org.openxdm.xcap.common.uri.ElementSelector; import org.openxdm.xcap.common.uri.ElementSelectorStep; import org.openxdm.xcap.common.uri.ElementSelectorStepByPos; public class PreconditionFailedTest extends AbstractXDMJunitOldClientTest { public static junit.framework.Test suite() { return new JUnit4TestAdapter(PreconditionFailedTest.class); } @Test public void test() throws HttpException, IOException, JAXBException, InterruptedException { // exception for response codes PreconditionFailedException exception = new PreconditionFailedException(); // create content for tests String documentContent = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + "<resource-lists xmlns=\"urn:ietf:params:xml:ns:resource-lists\">" + "<list/>" + "</resource-lists>"; String attrContent = "enemies"; String elementContent = "<list xmlns=\"urn:ietf:params:xml:ns:resource-lists\" name='friends'/>"; // 1. replace document if match // create uri UserDocumentUriKey documentKey = new UserDocumentUriKey(appUsage.getAUID(), user, documentName); // send put request and get response Response response = client.put(documentKey, appUsage.getMimetype(), documentContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be 201", response.getCode() == 201); String eTag = response.getETag(); // send put request and get response response = client.putIfMatch(documentKey, eTag + "z", appUsage.getMimetype(), documentContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 2. replace document if none match // send put request and get response response = client.putIfNoneMatch(documentKey, eTag, appUsage.getMimetype(), documentContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 3. delete document if match // send delete request and get response response = client.deleteIfMatch(documentKey, eTag + "z", null); // check delete response assertTrue("Delete response must exists", response != null); assertTrue("Delete response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 4. delete document if none match // send delete request and get response response = client.deleteIfNoneMatch(documentKey, eTag, null); // check delete response assertTrue("Delete response must exists", response != null); assertTrue("Delete response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 5. put new element if match // create uri LinkedList<ElementSelectorStep> elementSelectorSteps = new LinkedList<ElementSelectorStep>(); ElementSelectorStep step1 = new ElementSelectorStep("resource-lists"); ElementSelectorStep step2 = new ElementSelectorStepByPos("list", 2); elementSelectorSteps.add(step1); elementSelectorSteps.addLast(step2); ElementSelector elementSelector = new ElementSelector(elementSelectorSteps); UserElementUriKey elementKey = new UserElementUriKey(appUsage.getAUID(), user, documentName, elementSelector, null); // send put request and get response response = client.putIfMatch(elementKey, eTag + "z", ElementResource.MIMETYPE, elementContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 6. put new element if none match // send put request and get response response = client.putIfNoneMatch(elementKey, eTag, ElementResource.MIMETYPE, elementContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 7. replace element if match // send put request and get response response = client.put(elementKey, ElementResource.MIMETYPE, elementContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be 201", response.getCode() == 201); eTag = response.getETag(); // send put request and get response response = client.putIfMatch(elementKey, eTag + "z", ElementResource.MIMETYPE, elementContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 8. replace element if none match // send put request and get response response = client.putIfNoneMatch(elementKey, eTag, ElementResource.MIMETYPE, elementContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 9. delete element if match // send delete request and get response response = client.deleteIfMatch(elementKey, eTag + "z", null); // check delete response assertTrue("Delete response must exists", response != null); assertTrue("Delete response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 10. delete element if none match // send delete request and get response response = client.deleteIfNoneMatch(elementKey, eTag, null); // check delete response assertTrue("Delete response must exists", response != null); assertTrue("Delete response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 11. put new attr if match UserAttributeUriKey attrKey = new UserAttributeUriKey(appUsage.getAUID(), user, documentName, new ElementSelector(elementSelectorSteps), new AttributeSelector("name"), null); // send put request and get response response = client.putIfMatch(attrKey, eTag + "z", AttributeResource.MIMETYPE, attrContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 12. put new attr if none match // send put request and get response response = client.putIfNoneMatch(attrKey, eTag, AttributeResource.MIMETYPE, attrContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 13. replace attr if match // send put request and get response response = client.put(attrKey, AttributeResource.MIMETYPE, attrContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be 200", response.getCode() == 200); eTag = response.getETag(); // send put request and get response response = client.putIfMatch(attrKey, eTag + "z", AttributeResource.MIMETYPE, attrContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 14. replace attr if none match // send put request and get response response = client.putIfNoneMatch(attrKey, eTag, AttributeResource.MIMETYPE, attrContent, null); // check put response assertTrue("Put response must exists", response != null); assertTrue("Put response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 15. delete attr if match // send delete request and get response response = client.deleteIfMatch(attrKey, eTag + "z", null); // check delete response assertTrue("Delete response must exists", response != null); assertTrue("Delete response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // 16. delete attr if none match // send delete request and get response response = client.deleteIfNoneMatch(attrKey, eTag, null); // check delete response assertTrue("Delete response must exists", response != null); assertTrue("Delete response code should be " + exception.getResponseStatus(), response.getCode() == exception.getResponseStatus()); // clean up client.delete(documentKey, null); } }