/labs/joyent-cloudapi/src/test/java/org/jclouds/joyent/cloudapi/v6_5/parse/ParseKeyListTest.java

http://github.com/jclouds/jclouds · Java · 70 lines · 39 code · 10 blank · 21 comment · 0 complexity · a4468a20f45db64379807cdc242e4717 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.joyent.cloudapi.v6_5.parse;
  20. import java.util.Set;
  21. import javax.ws.rs.Consumes;
  22. import javax.ws.rs.core.MediaType;
  23. import org.jclouds.date.internal.SimpleDateFormatDateService;
  24. import org.jclouds.joyent.cloudapi.v6_5.domain.Key;
  25. import org.jclouds.json.BaseSetParserTest;
  26. import org.jclouds.json.config.GsonModule;
  27. import org.testng.annotations.Test;
  28. import com.google.common.collect.ImmutableSet;
  29. import com.google.inject.Guice;
  30. import com.google.inject.Injector;
  31. /**
  32. * @author Adrian Cole
  33. */
  34. @Test(groups = "unit", testName = "ParseKeyListTest")
  35. public class ParseKeyListTest extends BaseSetParserTest<Key> {
  36. @Override
  37. public String resource() {
  38. return "/key_list.json";
  39. }
  40. @Override
  41. @Consumes(MediaType.APPLICATION_JSON)
  42. public Set<Key> expected() {
  43. return ImmutableSet.of(
  44. Key.builder()
  45. .name("rsa")
  46. .key("ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0A5Pf5Cq...")
  47. .created(new SimpleDateFormatDateService().iso8601SecondsDateParse("2011-04-13T22:14:46+00:00"))
  48. .build()
  49. );
  50. }
  51. protected Injector injector() {
  52. return Guice.createInjector(new GsonModule() {
  53. @Override
  54. protected void configure() {
  55. bind(DateAdapter.class).to(Iso8601DateAdapter.class);
  56. super.configure();
  57. }
  58. });
  59. }
  60. }