/apis/cloudsigma/src/test/java/org/jclouds/cloudsigma/functions/ListOfKeyValuesDelimitedByBlankLinesToServerInfoSetTest.java

http://github.com/jclouds/jclouds · Java · 77 lines · 47 code · 10 blank · 20 comment · 0 complexity · efd34b773f8cd32350a60e4dd7a3e578 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.cloudsigma.functions;
  18. import static org.testng.Assert.assertEquals;
  19. import java.util.List;
  20. import java.util.Map;
  21. import org.jclouds.cloudsigma.domain.Device;
  22. import org.jclouds.cloudsigma.domain.DriveMetrics;
  23. import org.jclouds.cloudsigma.domain.NIC;
  24. import org.jclouds.cloudsigma.domain.ServerInfo;
  25. import org.jclouds.cloudsigma.domain.ServerMetrics;
  26. import org.jclouds.cloudsigma.functions.MapToDevices.DeviceToId;
  27. import org.jclouds.http.HttpResponse;
  28. import org.testng.annotations.Test;
  29. import com.google.common.base.Function;
  30. import com.google.common.collect.ImmutableSet;
  31. import com.google.inject.AbstractModule;
  32. import com.google.inject.Guice;
  33. import com.google.inject.TypeLiteral;
  34. /**
  35. *
  36. * @author Adrian Cole
  37. */
  38. @Test(groups = { "unit" })
  39. public class ListOfKeyValuesDelimitedByBlankLinesToServerInfoSetTest {
  40. private static final ListOfKeyValuesDelimitedByBlankLinesToServerInfoSet FN = Guice.createInjector(
  41. new AbstractModule() {
  42. @Override
  43. protected void configure() {
  44. bind(new TypeLiteral<Function<Map<String, String>, List<NIC>>>() {
  45. }).to(MapToNICs.class);
  46. bind(new TypeLiteral<Function<Map<String, String>, Map<String, ? extends Device>>>() {
  47. }).to(MapToDevices.class);
  48. bind(new TypeLiteral<Function<Map<String, String>, Map<String, ? extends DriveMetrics>>>() {
  49. }).to(MapToDriveMetrics.class);
  50. bind(new TypeLiteral<Function<Map<String, String>, ServerMetrics>>() {
  51. }).to(MapToServerMetrics.class);
  52. bind(new TypeLiteral<Function<Device, String>>() {
  53. }).to(DeviceToId.class);
  54. }
  55. }).getInstance(ListOfKeyValuesDelimitedByBlankLinesToServerInfoSet.class);
  56. public void testNone() {
  57. assertEquals(FN.apply(HttpResponse.builder().statusCode(200).message("").payload("").build()), ImmutableSet.<ServerInfo> of());
  58. assertEquals(FN.apply(HttpResponse.builder().statusCode(200).message("").payload("\n\n").build()),
  59. ImmutableSet.<ServerInfo> of());
  60. assertEquals(FN.apply(HttpResponse.builder().statusCode(200).message("").build()), ImmutableSet.<ServerInfo> of());
  61. }
  62. public void testOne() {
  63. assertEquals(FN.apply(HttpResponse.builder().statusCode(200).message("").payload(MapToServerInfoTest.class
  64. .getResourceAsStream("/servers.txt")).build()), ImmutableSet.<ServerInfo> of(MapToServerInfoTest.ONE,
  65. MapToServerInfoTest.TWO));
  66. }
  67. }