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

http://github.com/jclouds/jclouds · Java · 48 lines · 21 code · 7 blank · 20 comment · 0 complexity · f9d935ca94f5e70a7e9fa06640ef4140 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 org.jclouds.cloudsigma.domain.VLANInfo;
  20. import org.jclouds.http.HttpResponse;
  21. import org.testng.annotations.Test;
  22. import com.google.common.collect.ImmutableSet;
  23. import com.google.inject.Guice;
  24. /**
  25. *
  26. * @author Adrian Cole
  27. */
  28. @Test(groups = { "unit" })
  29. public class ListOfKeyValuesDelimitedByBlankLinesToVLANInfoSetTest {
  30. private static final ListOfKeyValuesDelimitedByBlankLinesToVLANInfoSet FN = Guice.createInjector().getInstance(
  31. ListOfKeyValuesDelimitedByBlankLinesToVLANInfoSet.class);
  32. public void testNone() {
  33. assertEquals(FN.apply(HttpResponse.builder().statusCode(200).message("").payload("").build()), ImmutableSet.<VLANInfo> of());
  34. assertEquals(FN.apply(HttpResponse.builder().statusCode(200).message("").payload("\n\n").build()), ImmutableSet.<VLANInfo> of());
  35. assertEquals(FN.apply(HttpResponse.builder().statusCode(200).message("").build()), ImmutableSet.<VLANInfo> of());
  36. }
  37. public void testOne() {
  38. assertEquals(FN.apply(HttpResponse.builder().statusCode(200).message("").payload(MapToVLANInfoTest.class
  39. .getResourceAsStream("/vlan.txt")).build()), ImmutableSet.<VLANInfo> of(MapToVLANInfoTest.ONE));
  40. }
  41. }