/* * 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.runtime.services; import java.util.*; import com.google.common.collect.Iterators; import com.google.common.collect.Lists; import org.junit.Assert; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.apache.isis.core.metamodel.util.DeweyOrderComparator; import static org.hamcrest.CoreMatchers.is; public class DeweyOrderComparatorTest { @Rule public ExpectedException expectedException = ExpectedException.none(); @Test public void emptySet() throws Exception { assertThatSorting( ofS(), ofL()); } @Test public void singleElement() throws Exception { assertThatSorting( ofS("1"), ofL("1") ); } @Test public void inOrder() throws Exception { assertThatSorting( ofS("1", "2"), ofL("1", "2") ); } @Test public void notInOrder() throws Exception { assertThatSorting( ofS("2", "1"), ofL("1", "2") ); } @Test public void notInOrderDepth2() throws Exception { assertThatSorting( ofS("1.2", "1.1"), ofL("1.1", "1.2") ); } @Test public void differentDepths() throws Exception { assertThatSorting( ofS("2", "1.3", "1.2", "1.2.2", "1.2.1", "1.1"), ofL("1.1", "1.2", "1.2.1", "1.2.2", "1.3", "2") ); } @Test public void mismatchedDepth3() throws Exception { assertThatSorting( ofS("1.2.2", "1.2.1", "1.1"), ofL("1.1", "1.2.1", "1.2.2") ); } private static Collection<String> ofS(String... str) { return Arrays.asList(str); } private static List<String> ofL(String... str) { return Lists.newArrayList(ofS(str)); } private static void assertThatSorting(Collection<String> input, List<String> expected) { final SortedSet<String> treeSet = new TreeSet<String>(new DeweyOrderComparator()); treeSet.addAll(input); final List<String> strings = Arrays.asList(Iterators.toArray(treeSet.iterator(), String.class)); Assert.assertThat(strings, is(expected)); } }