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

http://github.com/jclouds/jclouds · Java · 71 lines · 41 code · 9 blank · 21 comment · 0 complexity · 892b42ebbfaf2f1ca2988cccf78f4f06 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 javax.ws.rs.Consumes;
  21. import javax.ws.rs.core.MediaType;
  22. import org.jclouds.date.internal.SimpleDateFormatDateService;
  23. import org.jclouds.joyent.cloudapi.v6_5.domain.Dataset;
  24. import org.jclouds.joyent.cloudapi.v6_5.domain.Machine.Type;
  25. import org.jclouds.json.BaseItemParserTest;
  26. import org.jclouds.json.config.GsonModule;
  27. import org.testng.annotations.Test;
  28. import com.google.inject.Guice;
  29. import com.google.inject.Injector;
  30. /**
  31. * @author Gerald Pereira
  32. */
  33. @Test(groups = "unit", testName = "ParseDatasetTest")
  34. public class ParseDatasetTest extends BaseItemParserTest<Dataset> {
  35. @Override
  36. public String resource() {
  37. return "/dataset.json";
  38. }
  39. @Override
  40. @Consumes(MediaType.APPLICATION_JSON)
  41. public Dataset expected() {
  42. return Dataset.builder()
  43. .id("e4cd7b9e-4330-11e1-81cf-3bb50a972bda")
  44. .urn("sdc:sdc:centos-6:1.0.1")
  45. .name("centos-6")
  46. .os("linux")
  47. .type(Type.VIRTUALMACHINE)
  48. .description("Centos 6 VM 1.0.1")
  49. .isDefault(false)
  50. .version("1.0.1")
  51. .created(new SimpleDateFormatDateService().iso8601SecondsDateParse("2012-02-13T06:30:33+00:00")).build();
  52. }
  53. protected Injector injector() {
  54. return Guice.createInjector(new GsonModule() {
  55. @Override
  56. protected void configure() {
  57. bind(DateAdapter.class).to(Iso8601DateAdapter.class);
  58. super.configure();
  59. }
  60. });
  61. }
  62. }