/* * 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.apache.isis.core.metamodel.facets; import java.util.AbstractList; import java.util.AbstractSet; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Set; import java.util.SortedSet; import java.util.TreeSet; import java.util.concurrent.CopyOnWriteArrayList; import java.util.concurrent.CopyOnWriteArraySet; import com.google.common.collect.Lists; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.not; import static org.hamcrest.CoreMatchers.nullValue; import static org.junit.Assert.assertThat; public class CollectionUtilsTest { @Rule public ExpectedException expectedException = ExpectedException.none(); Iterable<Object> iterable; @Before public void setUp() throws Exception { iterable = Arrays.<Object>asList("a", "b", "c"); } @Test public void whenLinkedList() throws Exception { List<Class<?>> collectionTypes = Lists.<Class<?>>newArrayList( LinkedList.class, ArrayList.class, CopyOnWriteArrayList.class, AbstractList.class, LinkedHashSet.class, HashSet.class, TreeSet.class, CopyOnWriteArraySet.class, AbstractSet.class, List.class, SortedSet.class, Set.class, Collection.class ); for (Class<?> collectionType : collectionTypes) { Object o = CollectionUtils.copyOf(iterable, collectionType); assertThat(o, is(not(nullValue()))); assertThat(collectionType.isAssignableFrom(o.getClass()), is(true)); Collection copy = (Collection)o; assertThat(copy.size(), is(3)); } } @Test public void whenArray() throws Exception { Object o = CollectionUtils.copyOf(iterable, String[].class); assertThat(o instanceof String[], is(true)); String[] copy = (String[])o; assertThat(copy.length, is(3)); } @Test public void whenNotSupported() throws Exception { Object o = CollectionUtils.copyOf(iterable, Map.class); assertThat(o, is(nullValue())); } @Test public void whenRequiredTypeIsNull() throws Exception { expectedException.expect(IllegalArgumentException.class); CollectionUtils.copyOf(iterable, null); } @Test public void whenIterableIsNull() throws Exception { expectedException.expect(IllegalArgumentException.class); CollectionUtils.copyOf(null, List.class); } }