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

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