/apis/cloudservers/src/test/java/org/jclouds/cloudservers/options/RebuildServerOptionsTest.java
https://github.com/regularfry/jclouds · Java · 79 lines · 43 code · 13 blank · 23 comment · 0 complexity · 27f89d691e3240a04bb31f1e02f27f7f MD5 · raw file
- /**
- * Licensed to jclouds, Inc. (jclouds) under one or more
- * contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. jclouds 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.RebuildServerOptions.Builder.withImage;
- import static org.testng.Assert.assertEquals;
- import java.net.URI;
- import java.util.HashMap;
- import javax.ws.rs.HttpMethod;
- import org.jclouds.http.HttpRequest;
- import org.jclouds.json.config.GsonModule;
- import org.testng.annotations.Test;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- /**
- * Tests behavior of {@code ParseFlavorFromJsonResponse}
- *
- * @author Adrian Cole
- */
- @Test(groups = "unit")
- public class RebuildServerOptionsTest {
- Injector injector = Guice.createInjector(new GsonModule());
- @Test
- public void testAddPayloadToRequestMapOfStringStringHttpRequest() {
- RebuildServerOptions options = new RebuildServerOptions();
- HttpRequest request = buildRequest(options);
- assertEquals("{\"rebuild\":{}}", request.getPayload().getRawContent());
- }
- private HttpRequest buildRequest(RebuildServerOptions options) {
- injector.injectMembers(options);
- HttpRequest request = new HttpRequest(HttpMethod.POST, URI.create("http://localhost"));
- options.bindToRequest(request, new HashMap<String, String>());
- return request;
- }
- @Test
- public void testWithServer() {
- RebuildServerOptions options = new RebuildServerOptions();
- options.withImage(3);
- HttpRequest request = buildRequest(options);
- assertRebuild(request);
- }
- @Test
- public void testWithServerStatic() {
- RebuildServerOptions options = withImage(3);
- HttpRequest request = buildRequest(options);
- assertRebuild(request);
- }
- private void assertRebuild(HttpRequest request) {
- assertEquals("{\"rebuild\":{\"imageId\":3}}", request.getPayload().getRawContent());
- }
- }