/apis/chef/src/test/java/org/jclouds/chef/functions/ParseUploadSandboxFromJsonTest.java
Java | 87 lines | 58 code | 10 blank | 19 comment | 0 complexity | 3fbde0ab9a8dd92a4bbd32d478966c83 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.chef.functions;
- import static com.google.common.io.BaseEncoding.base16;
- import static com.google.common.primitives.Bytes.asList;
- import static org.testng.Assert.assertEquals;
- import java.io.IOException;
- import java.net.URI;
- import org.jclouds.chef.ChefApiMetadata;
- import org.jclouds.chef.config.ChefParserModule;
- import org.jclouds.chef.domain.ChecksumStatus;
- import org.jclouds.chef.domain.UploadSandbox;
- import org.jclouds.http.HttpResponse;
- import org.jclouds.http.functions.ParseJson;
- import org.jclouds.json.config.GsonModule;
- import org.jclouds.rest.annotations.ApiVersion;
- import org.testng.annotations.BeforeTest;
- import org.testng.annotations.Test;
- import com.google.inject.AbstractModule;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- import com.google.inject.Key;
- import com.google.inject.TypeLiteral;
- /**
- * Tests behavior of {@code ParseUploadSiteFromJson}
- */
- @Test(groups = { "unit" }, singleThreaded = true)
- public class ParseUploadSandboxFromJsonTest {
- private ParseJson<UploadSandbox> handler;
- private Injector injector;
- @BeforeTest
- protected void setUpInjector() throws IOException {
- injector = Guice.createInjector(new AbstractModule() {
- @Override
- protected void configure() {
- bind(String.class).annotatedWith(ApiVersion.class).toInstance(ChefApiMetadata.DEFAULT_API_VERSION);
- }
- }, new ChefParserModule(), new GsonModule());
- handler = injector.getInstance(Key.get(new TypeLiteral<ParseJson<UploadSandbox>>() {
- }));
- }
- public void test() {
- assertEquals(
- handler.apply(HttpResponse.builder().statusCode(200).message("ok")
- .payload(ParseUploadSandboxFromJsonTest.class.getResourceAsStream("/upload-site.json")).build()),
- UploadSandbox
- .builder()
- .uri(URI
- .create("https://api.opscode.com/organizations/jclouds/sandboxes/d454f71e2a5f400c808d0c5d04c2c88c"))
- .checksum(
- asList(base16().lowerCase().decode("0c5ecd7788cf4f6c7de2a57193897a6c")),
- ChecksumStatus
- .builder()
- .url(URI
- .create("https://s3.amazonaws.com/opscode-platform-production-data/organization-486ca3ac66264fea926aa0b4ff74341c/sandbox-d454f71e2a5f400c808d0c5d04c2c88c/checksum-0c5ecd7788cf4f6c7de2a57193897a6c?AWSAccessKeyId=AKIAJOZTD2N26S7W6APA&Expires=1277344702&Signature=FtKyqvYEjhhEKmRY%2B0M8aGPMM7g%3D"))
- .needsUpload(true).build())
- .checksum(asList(base16().lowerCase().decode("0189e76ccc476701d6b374e5a1a27347")),
- ChecksumStatus.builder().build())
- .checksum(asList(base16().lowerCase().decode("1dda05ed139664f1f89b9dec482b77c0")),
- ChecksumStatus.builder().build()).sandboxId("d454f71e2a5f400c808d0c5d04c2c88c").build()
- );
- }
- }