/labs/savvis-symphonyvpdc/src/test/java/org/jclouds/savvis/vpdc/xml/OrgListHandlerTest.java

http://github.com/jclouds/jclouds · Java · 56 lines · 26 code · 7 blank · 23 comment · 0 complexity · ccc663c4904b709441cd40f66693a5c8 MD5 · raw file

  1. /**
  2. * Licensed to jclouds, Inc. (jclouds) under one or more
  3. * contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. jclouds licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package org.jclouds.savvis.vpdc.xml;
  20. import static org.testng.Assert.assertEquals;
  21. import java.io.InputStream;
  22. import java.net.URI;
  23. import java.util.Set;
  24. import org.jclouds.http.functions.ParseSax;
  25. import org.jclouds.http.functions.ParseSax.Factory;
  26. import org.jclouds.http.functions.config.SaxParserModule;
  27. import org.jclouds.savvis.vpdc.domain.Resource;
  28. import org.jclouds.savvis.vpdc.domain.ResourceImpl;
  29. import org.testng.annotations.Test;
  30. import com.google.common.collect.ImmutableSet;
  31. import com.google.inject.Guice;
  32. import com.google.inject.Injector;
  33. /**
  34. * Tests behavior of {@code OrgListHandler}
  35. *
  36. * @author Adrian Cole
  37. */
  38. @Test(groups = "unit")
  39. public class OrgListHandlerTest {
  40. public void testSavvis() {
  41. InputStream is = getClass().getResourceAsStream("/orglist.xml");
  42. Injector injector = Guice.createInjector(new SaxParserModule());
  43. Factory factory = injector.getInstance(ParseSax.Factory.class);
  44. Set<Resource> result = factory.create(injector.getInstance(OrgListHandler.class)).parse(is);
  45. assertEquals(result, ImmutableSet.of(new ResourceImpl("100000.0", "SAVVISStation Integration Testing",
  46. "application/vnd.vmware.vcloud.org+xml", URI
  47. .create("https://api.sandbox.savvis.net/rest/api/v0.8/org/100000.0"))));
  48. }
  49. }