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

http://github.com/jclouds/jclouds · Java · 80 lines · 50 code · 9 blank · 21 comment · 0 complexity · 5804960b695d5ab9834d6f9db060ec6b 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.domain.JsonBall;
  24. import org.jclouds.joyent.cloudapi.v6_5.domain.Machine;
  25. import org.jclouds.joyent.cloudapi.v6_5.domain.Machine.Type;
  26. import org.jclouds.json.BaseItemParserTest;
  27. import org.jclouds.json.config.GsonModule;
  28. import org.testng.annotations.Test;
  29. import com.google.common.collect.ImmutableMap;
  30. import com.google.common.collect.ImmutableSet;
  31. import com.google.inject.Guice;
  32. import com.google.inject.Injector;
  33. /**
  34. * @author Gerald Pereira
  35. */
  36. @Test(groups = "unit", testName = "ParseMachineTest")
  37. public class ParseCreatedMachineTest extends BaseItemParserTest<Machine> {
  38. @Override
  39. public String resource() {
  40. return "/new_machine.json";
  41. }
  42. @Override
  43. @Consumes(MediaType.APPLICATION_JSON)
  44. public Machine expected() {
  45. return Machine
  46. .builder()
  47. .id("94eba336-ecb7-49f5-8a27-52f5e4dd57a1")
  48. .name("sample-e92")
  49. .type(Type.VIRTUALMACHINE)
  50. .state(Machine.State.STOPPED)
  51. .dataset("sdc:sdc:centos-5.7:1.2.1")
  52. .ips(ImmutableSet. <String>builder().add("37.153.96.62").add("10.224.0.63").build())
  53. .memorySizeMb(1024)
  54. .diskSizeGb(61440)
  55. .metadata(
  56. ImmutableMap.<String, JsonBall> builder()
  57. .put("root_authorized_keys", new JsonBall("ssh-rsa XXXXXX== test@xxxx.ovh.net\n")).build())
  58. .created(new SimpleDateFormatDateService().iso8601SecondsDateParse("2012-05-09T13:32:46+00:00"))
  59. .updated(new SimpleDateFormatDateService().iso8601SecondsDateParse("2012-05-11T08:44:53+00:00"))
  60. .build();
  61. }
  62. protected Injector injector() {
  63. return Guice.createInjector(new GsonModule() {
  64. @Override
  65. protected void configure() {
  66. bind(DateAdapter.class).to(Iso8601DateAdapter.class);
  67. super.configure();
  68. }
  69. });
  70. }
  71. }