/providers/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/binders/ForwardingRuleCreationBinderTest.java

http://github.com/jclouds/jclouds · Java · 72 lines · 45 code · 11 blank · 16 comment · 0 complexity · e38c72862366d4a5d008dddd65325c63 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.googlecomputeengine.binders;
  18. import static org.testng.Assert.assertEquals;
  19. import java.net.URI;
  20. import java.util.Map;
  21. import org.jclouds.googlecomputeengine.domain.ForwardingRule;
  22. import org.jclouds.googlecomputeengine.internal.BaseGoogleComputeEngineExpectTest;
  23. import org.jclouds.googlecomputeengine.options.ForwardingRuleCreationOptions;
  24. import org.jclouds.http.HttpRequest;
  25. import org.jclouds.json.Json;
  26. import org.jclouds.json.internal.GsonWrapper;
  27. import org.testng.annotations.Test;
  28. import com.google.common.collect.ImmutableMap;
  29. import com.google.gson.Gson;
  30. @Test(groups = "unit", testName = "ForwardingRuleCreationBinderTest")
  31. public class ForwardingRuleCreationBinderTest extends BaseGoogleComputeEngineExpectTest<Object>{
  32. private static final String DESCRIPTION = "This is a test!";
  33. private static final String IP_ADDRESS = "1.2.1.1.1";
  34. private static final String PORT_RANGE = "1.2.3.4.1";
  35. private static final URI TARGET = URI.create(BASE_URL + "/party/regions/europe-west1/targetPools/test-target-pool");
  36. Json json = new GsonWrapper(new Gson());
  37. @Test
  38. public void testMap() throws SecurityException, NoSuchMethodException {
  39. ForwardingRuleCreationBinder binder = new ForwardingRuleCreationBinder(json);
  40. ForwardingRuleCreationOptions forwardingRuleCreationOptions = new ForwardingRuleCreationOptions.Builder()
  41. .description(DESCRIPTION)
  42. .ipAddress(IP_ADDRESS)
  43. .ipProtocol(ForwardingRule.IPProtocol.SCTP)
  44. .portRange(PORT_RANGE)
  45. .target(TARGET)
  46. .build();
  47. HttpRequest request = HttpRequest.builder().method("GET").endpoint("http://momma").build();
  48. Map<String, Object> postParams = ImmutableMap.of("name", "testForwardingRuleName", "options", forwardingRuleCreationOptions);
  49. binder.bindToRequest(request, postParams);
  50. assertEquals(request.getPayload().getRawContent(),
  51. "{\""
  52. + "name\":\"testForwardingRuleName\","
  53. + "\"description\":\"" + DESCRIPTION + "\","
  54. + "\"ipAddress\":\"" + IP_ADDRESS + "\","
  55. + "\"ipProtocol\":\"SCTP\","
  56. + "\"portRange\":\"" + PORT_RANGE + "\","
  57. + "\"target\":\"" + TARGET + "\""
  58. + "}");
  59. assertEquals(request.getPayload().getContentMetadata().getContentType(), "application/json");
  60. }
  61. }