/apis/openstack-keystone/src/test/java/org/jclouds/openstack/keystone/v2_0/parse/ParseRackspaceApiMetadataTest.java

http://github.com/jclouds/jclouds · Java · 68 lines · 43 code · 8 blank · 17 comment · 0 complexity · 8fa4c567f1089135bb4c9cbcf03a8723 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jclouds.openstack.keystone.v2_0.parse;
  18. import java.net.URI;
  19. import javax.ws.rs.Consumes;
  20. import javax.ws.rs.core.MediaType;
  21. import org.jclouds.date.internal.SimpleDateFormatDateService;
  22. import org.jclouds.json.BaseItemParserTest;
  23. import org.jclouds.json.config.GsonModule;
  24. import org.jclouds.openstack.keystone.v2_0.config.KeystoneParserModule;
  25. import org.jclouds.openstack.keystone.v2_0.domain.ApiMetadata;
  26. import org.jclouds.openstack.v2_0.domain.Link;
  27. import org.jclouds.rest.annotations.SelectJson;
  28. import org.testng.annotations.Test;
  29. import com.google.common.collect.ImmutableSet;
  30. import com.google.inject.Guice;
  31. import com.google.inject.Injector;
  32. @Test(groups = "unit", testName = "ParseApiMetadataTest")
  33. public class ParseRackspaceApiMetadataTest extends BaseItemParserTest<ApiMetadata> {
  34. @Override
  35. public String resource() {
  36. return "/raxVersion.json";
  37. }
  38. // http://docs.openstack.org/api/openstack-identity-service/2.0/content/Versions-d1e472.html
  39. @Override
  40. @SelectJson("version")
  41. @Consumes(MediaType.APPLICATION_JSON)
  42. public ApiMetadata expected() {
  43. return ApiMetadata.builder().id("v2.0")
  44. .links(ImmutableSet.of(Link.builder().relation(Link.Relation.SELF).href(URI.create("https://identity.api.rackspacecloud.com/v2.0")).build(),
  45. Link.builder().relation(Link.Relation.DESCRIBEDBY).type("application/pdf").href(URI.create("http://docs.rackspacecloud.com/auth/api/v2.0/auth-client-devguide-latest.pdf")).build(),
  46. Link.builder().relation(Link.Relation.DESCRIBEDBY).type("application/vnd.sun.wadl+xml").href(URI.create("http://docs.rackspacecloud.com/auth/api/v2.0/auth.wadl")).build()
  47. ))
  48. .status("BETA")
  49. .updated(new SimpleDateFormatDateService().iso8601SecondsDateParse("2012-01-21T11:33:21-06:00"))
  50. .mediaTypes(ImmutableSet.of(
  51. org.jclouds.openstack.keystone.v2_0.domain.MediaType.builder().base("application/xml").type("application/vnd.openstack.identity+xml;version=2.0").build(),
  52. org.jclouds.openstack.keystone.v2_0.domain.MediaType.builder().base("application/json").type("application/vnd.openstack.identity+json;version=2.0").build()
  53. ))
  54. .build();
  55. }
  56. @Override
  57. protected Injector injector() {
  58. return Guice.createInjector(new GsonModule(), new KeystoneParserModule());
  59. }
  60. }