/** * 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.elasticstack.binders; import static org.testng.Assert.assertEquals; import java.io.IOException; import java.util.Map; import javax.ws.rs.core.MediaType; import org.jclouds.elasticstack.domain.ClaimType; import org.jclouds.elasticstack.domain.Drive; import org.jclouds.elasticstack.domain.DriveData; import org.jclouds.elasticstack.functions.CreateDriveRequestToMap; import org.jclouds.elasticstack.functions.DriveDataToMap; import org.jclouds.http.HttpRequest; import org.jclouds.util.Strings2; import org.testng.annotations.Test; import com.google.common.base.Function; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import com.google.inject.AbstractModule; import com.google.inject.Guice; import com.google.inject.TypeLiteral; /** * * @author Adrian Cole */ @Test(groups = { "unit" }) public class BindDriveDataToPlainTextStringTest { private static final BindDriveDataToPlainTextString FN = Guice.createInjector(new AbstractModule() { @Override protected void configure() { bind(new TypeLiteral<Function<Drive, Map<String, String>>>() { }).to(CreateDriveRequestToMap.class); bind(new TypeLiteral<Function<DriveData, Map<String, String>>>() { }).to(DriveDataToMap.class); } }).getInstance(BindDriveDataToPlainTextString.class); public void testSimple() { HttpRequest request = HttpRequest.builder().method("POST").endpoint("https://host/drives/create").build(); FN.bindToRequest(request, new DriveData.Builder().name("foo").size(100l).build()); assertEquals(request.getPayload().getContentMetadata().getContentType(), MediaType.TEXT_PLAIN); assertEquals(request.getPayload().getRawContent(), "name foo\nsize 100"); } public void testComplete() throws IOException { DriveData input = new DriveData.Builder().name("Ubuntu 10.10 Server Edition Linux 64bit Preinstalled System") // .size(8589934592l)// .claimType(ClaimType.SHARED)// .readers(ImmutableSet.of("ffffffff-ffff-ffff-ffff-ffffffffffff"))// .tags(ImmutableSet.of("tag1", "tag2")).userMetadata(ImmutableMap.of("foo", "bar", "baz", "raz"))// .build(); HttpRequest request = HttpRequest.builder().method("POST").endpoint("https://host/drives/create").build(); FN.bindToRequest(request, input); assertEquals(request.getPayload().getContentMetadata().getContentType(), MediaType.TEXT_PLAIN); assertEquals(request.getPayload().getRawContent(), Strings2.toStringAndClose(BindDriveDataToPlainTextStringTest.class.getResourceAsStream("/drive_data.txt"))); } }