/apis/cloudservers/src/test/java/org/jclouds/cloudservers/options/CreateSharedIpGroupOptionsTest.java
Java | 73 lines | 41 code | 11 blank | 21 comment | 0 complexity | 324f5e8284d7f0fc6b8ae68d5f89f9c9 MD5 | raw file
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package org.jclouds.cloudservers.options;
- import static org.jclouds.cloudservers.options.CreateSharedIpGroupOptions.Builder.withServer;
- import static org.testng.Assert.assertEquals;
- import org.jclouds.http.HttpRequest;
- import org.jclouds.json.config.GsonModule;
- import org.testng.annotations.Test;
- import com.google.common.collect.ImmutableMap;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- /**
- * Tests behavior of {@code ParseFlavorFromJsonResponse}
- *
- * @author Adrian Cole
- */
- @Test(groups = "unit")
- public class CreateSharedIpGroupOptionsTest {
- Injector injector = Guice.createInjector(new GsonModule());
- @Test
- public void testAddPayloadToRequestMapOfStringStringHttpRequest() {
- CreateSharedIpGroupOptions options = new CreateSharedIpGroupOptions();
- HttpRequest request = buildRequest(options);
- assertEquals("{\"sharedIpGroup\":{\"name\":\"foo\"}}", request.getPayload().getRawContent());
- }
- private HttpRequest buildRequest(CreateSharedIpGroupOptions options) {
- injector.injectMembers(options);
- HttpRequest request = HttpRequest.builder().method("POST").endpoint("http://localhost").build();;
- options.bindToRequest(request, ImmutableMap.<String,Object>of("name", "foo"));
- return request;
- }
- @Test
- public void testWithServer() {
- CreateSharedIpGroupOptions options = new CreateSharedIpGroupOptions();
- options.withServer(3);
- HttpRequest request = buildRequest(options);
- assertSharedIpGroup(request);
- }
- @Test
- public void testWithServerStatic() {
- CreateSharedIpGroupOptions options = withServer(3);
- HttpRequest request = buildRequest(options);
- assertSharedIpGroup(request);
- }
- private void assertSharedIpGroup(HttpRequest request) {
- assertEquals("{\"sharedIpGroup\":{\"name\":\"foo\",\"server\":3}}", request.getPayload().getRawContent());
- }
- }