/apis/cloudservers/src/test/java/org/jclouds/cloudservers/functions/ParseBackupScheduleFromJsonResponseTest.java

http://github.com/jclouds/jclouds · Java · 66 lines · 36 code · 9 blank · 21 comment · 0 complexity · 0bb5c378d544ada318ef95ef2f6f586d 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.cloudservers.functions;
  18. import static org.testng.Assert.assertEquals;
  19. import java.io.InputStream;
  20. import java.net.UnknownHostException;
  21. import org.jclouds.cloudservers.domain.BackupSchedule;
  22. import org.jclouds.cloudservers.domain.DailyBackup;
  23. import org.jclouds.cloudservers.domain.WeeklyBackup;
  24. import org.jclouds.http.HttpResponse;
  25. import org.jclouds.http.functions.UnwrapOnlyJsonValue;
  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. import com.google.inject.Key;
  31. import com.google.inject.TypeLiteral;
  32. /**
  33. * Tests behavior of {@code ParseBackupScheduleFromJsonResponse}
  34. *
  35. * @author Adrian Cole
  36. */
  37. @Test(groups = "unit")
  38. public class ParseBackupScheduleFromJsonResponseTest {
  39. Injector i = Guice.createInjector(new GsonModule());
  40. public void testApplyInputStreamDetails() throws UnknownHostException {
  41. InputStream is = getClass().getResourceAsStream("/test_list_backupschedule.json");
  42. UnwrapOnlyJsonValue<BackupSchedule> parser = i.getInstance(Key
  43. .get(new TypeLiteral<UnwrapOnlyJsonValue<BackupSchedule>>() {
  44. }));
  45. BackupSchedule response = parser.apply(HttpResponse.builder().statusCode(200).message("ok").payload(is).build());
  46. assertEquals(BackupSchedule.builder().weekly(WeeklyBackup.THURSDAY).daily(DailyBackup.H_0400_0600).enabled(true).build(), response);
  47. }
  48. public void testNoSchedule() throws UnknownHostException {
  49. UnwrapOnlyJsonValue<BackupSchedule> parser = i.getInstance(Key
  50. .get(new TypeLiteral<UnwrapOnlyJsonValue<BackupSchedule>>() {
  51. }));
  52. BackupSchedule response = parser.apply(HttpResponse.builder()
  53. .statusCode(200).message("ok")
  54. .payload("{\"backupSchedule\":{\"enabled\" : false}}").build());
  55. assertEquals(BackupSchedule.builder().build(), response);
  56. }
  57. }