/apis/nova/src/test/java/org/jclouds/openstack/nova/functions/ParseInetAddressListFromJsonResponseTest.java
https://github.com/andreisavu/jclouds · Java · 79 lines · 43 code · 13 blank · 23 comment · 0 complexity · 7d8bffd64f4d6b54c7a8bcf96e7f6e79 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.openstack.nova.functions;
- import static org.testng.Assert.assertEquals;
- import java.io.InputStream;
- import java.net.UnknownHostException;
- import java.util.List;
- import org.jclouds.http.HttpResponse;
- import org.jclouds.http.functions.UnwrapOnlyJsonValue;
- import org.jclouds.json.config.GsonModule;
- import org.jclouds.openstack.nova.domain.Address;
- import org.testng.annotations.Test;
- import com.google.common.collect.ImmutableList;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- import com.google.inject.Key;
- import com.google.inject.TypeLiteral;
- /**
- * Tests behavior of {@code ParseInetAddressListFromJsonResponse}
- *
- * @author Adrian Cole
- */
- @Test(groups = "unit")
- public class ParseInetAddressListFromJsonResponseTest {
- Injector i = Guice.createInjector(new GsonModule());
- @Test
- public void testPublic() throws UnknownHostException {
- InputStream is = getClass().getResourceAsStream("/test_list_addresses_public.json");
- UnwrapOnlyJsonValue<List<Address>> parser = i.getInstance(Key
- .get(new TypeLiteral<UnwrapOnlyJsonValue<List<Address>>>() {
- }));
- List<Address> response = parser.apply(HttpResponse.builder().statusCode(200).message("ok").payload(is).build());
- assertEquals(
- response,
- ImmutableList.of(Address.valueOf("67.23.10.132"), Address.valueOf("::babe:67.23.10.132"),
- Address.valueOf("67.23.10.131"), Address.valueOf("::babe:4317:0A83")));
- }
- @Test
- public void testPrivate() throws UnknownHostException {
- InputStream is = getClass().getResourceAsStream("/test_list_addresses_private.json");
- UnwrapOnlyJsonValue<List<Address>> parser = i.getInstance(Key
- .get(new TypeLiteral<UnwrapOnlyJsonValue<List<Address>>>() {
- }));
- List<Address> response = parser.apply(HttpResponse.builder().statusCode(200).message("ok").payload(is).build());
- assertEquals(
- response,
- ImmutableList.of(Address.valueOf("67.23.10.132"), Address.valueOf("::babe:67.23.10.132"),
- Address.valueOf("67.23.10.131"), Address.valueOf("::babe:4317:0A83")));
- }
- }