PageRenderTime 40ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/apis/ec2/src/test/java/org/jclouds/ec2/binders/BindBlockDeviceMappingToIndexedFormParamsTest.java

https://github.com/vkris/jclouds
Java | 74 lines | 41 code | 10 blank | 23 comment | 0 complexity | 916b58da15d47acdbfb13fe1dba1a5b0 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.ec2.binders;
  20. import static org.testng.Assert.assertEquals;
  21. import java.io.File;
  22. import java.net.URI;
  23. import java.util.Date;
  24. import java.util.Map;
  25. import javax.ws.rs.HttpMethod;
  26. import org.jclouds.ec2.domain.Attachment.Status;
  27. import org.jclouds.ec2.domain.BlockDevice;
  28. import org.jclouds.http.HttpRequest;
  29. import org.testng.annotations.Test;
  30. import com.google.common.collect.Maps;
  31. import com.google.inject.Guice;
  32. import com.google.inject.Injector;
  33. /**
  34. * Tests behavior of {@code BindBlockDeviceMappingToIndexedFormParams}
  35. *
  36. * @author Adrian Cole
  37. */
  38. @Test(groups = "unit")
  39. public class BindBlockDeviceMappingToIndexedFormParamsTest {
  40. Injector injector = Guice.createInjector();
  41. BindBlockDeviceMappingToIndexedFormParams binder = injector
  42. .getInstance(BindBlockDeviceMappingToIndexedFormParams.class);
  43. public void testMapping() {
  44. Map<String, BlockDevice> mapping = Maps.newLinkedHashMap();
  45. mapping.put("apple", new BlockDevice("appleId", true));
  46. Date date = new Date(999999l);
  47. mapping.put("cranberry", new BlockDevice("cranberry", Status.ATTACHED, date, false));
  48. HttpRequest request = HttpRequest.builder().method("POST").endpoint(URI.create("http://localhost")).build();
  49. request = binder.bindToRequest(request, mapping);
  50. assertEquals(
  51. request.getPayload().getRawContent(),
  52. "BlockDeviceMapping.1.Ebs.VolumeId=appleId&BlockDeviceMapping.1.DeviceName=apple&BlockDeviceMapping.1.Ebs.DeleteOnTermination=true&BlockDeviceMapping.2.Ebs.VolumeId=cranberry&BlockDeviceMapping.2.DeviceName=cranberry&BlockDeviceMapping.2.Ebs.DeleteOnTermination=false");
  53. }
  54. @Test(expectedExceptions = IllegalArgumentException.class)
  55. public void testMustBeBlockDeviceMapping() {
  56. HttpRequest request = new HttpRequest(HttpMethod.POST, URI.create("http://localhost"));
  57. binder.bindToRequest(request, new File("foo"));
  58. }
  59. @Test(expectedExceptions = NullPointerException.class)
  60. public void testNullIsBad() {
  61. HttpRequest request = HttpRequest.builder().method("GET").endpoint(URI.create("http://momma")).build();
  62. binder.bindToRequest(request, null);
  63. }
  64. }