/apis/cloudsigma/src/test/java/org/jclouds/cloudsigma/binders/BindCloneDriveOptionsToPlainTextStringTest.java

http://github.com/jclouds/jclouds · Java · 71 lines · 41 code · 10 blank · 20 comment · 0 complexity · 87cab01ef57704e196d64a31a9cb3bf2 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.binders;
  18. import static org.jclouds.reflect.Reflection2.method;
  19. import static org.testng.Assert.assertEquals;
  20. import java.io.IOException;
  21. import java.net.URI;
  22. import java.util.List;
  23. import java.util.Map;
  24. import org.jclouds.cloudsigma.options.CloneDriveOptions;
  25. import org.jclouds.reflect.Invocation;
  26. import org.jclouds.rest.internal.GeneratedHttpRequest;
  27. import org.testng.annotations.Test;
  28. import com.google.common.base.Throwables;
  29. import com.google.common.collect.ImmutableList;
  30. import com.google.common.collect.ImmutableMap;
  31. import com.google.inject.Guice;
  32. /**
  33. *
  34. * @author Adrian Cole
  35. */
  36. @Test(groups = "unit")
  37. public class BindCloneDriveOptionsToPlainTextStringTest {
  38. private static final BindCloneDriveOptionsToPlainTextString binder = Guice.createInjector().getInstance(
  39. BindCloneDriveOptionsToPlainTextString.class);
  40. public void testDefault() throws IOException {
  41. String expected = "name newdrive";
  42. GeneratedHttpRequest request = requestForArgs(ImmutableList.<Object> of());
  43. Map<String, Object> map = ImmutableMap.<String, Object> of("name", "newdrive");
  44. assertEquals(binder.bindToRequest(request, map).getPayload().getRawContent(), expected);
  45. }
  46. public void testWithSize() throws IOException {
  47. String expected = "name newdrive\nsize 1024";
  48. GeneratedHttpRequest request = requestForArgs(ImmutableList.<Object> of(new CloneDriveOptions().size(1024)));
  49. Map<String, Object> map = ImmutableMap.<String, Object> of("name", "newdrive");
  50. assertEquals(binder.bindToRequest(request, map).getPayload().getRawContent(), expected);
  51. }
  52. protected GeneratedHttpRequest requestForArgs(List<Object> args) {
  53. try {
  54. Invocation invocation = Invocation.create(method(String.class, "toString"), args);
  55. return GeneratedHttpRequest.builder().method("POST").endpoint(URI.create("http://localhost/key"))
  56. .invocation(invocation).build();
  57. } catch (SecurityException e) {
  58. throw Throwables.propagate(e);
  59. }
  60. }
  61. }