/* * JBoss, Home of Professional Open Source. * Copyright 2012, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.controller.interfaces; import static org.jboss.as.controller.interfaces.InterfaceCriteriaTestUtil.*; import static org.junit.Assert.*; import java.net.InetAddress; import java.net.NetworkInterface; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.LinkedHashMap; import java.util.Map; import java.util.Set; import org.junit.Test; /** * Unit tests of {@link NotInterfaceCriteria} * * @author Brian Stansberry (c) 2011 Red Hat Inc. */ public class NotInterfaceCriteriaUnitTestCase { @Test public void testMultipleCriteria() throws Exception { if (nonLoopBackInterfaces.size() < 1) { return; } if (nonLoopBackInterfaces.contains("bogus")) { // LOL Oh well; we won't run this test on this machine :-D return; } Map<NetworkInterface, Set<InetAddress>> correct = new LinkedHashMap<NetworkInterface, Set<InetAddress>>(); for (NetworkInterface ni : nonLoopBackInterfaces) { // WFLY-786 NotInterfaceCriteria doesn't prune based on IPv6/v4 preference // so we shouldn't test that it does. Pruning is done by OverallInterfaceCriteria //correct.put(ni, getRightTypeAddresses(allCandidates.get(ni))); correct.put(ni, allCandidates.get(ni)); } Set<InterfaceCriteria> criterias = new HashSet<InterfaceCriteria>(); criterias.add(new NicInterfaceCriteria("bogus")); criterias.add(LoopbackInterfaceCriteria.INSTANCE); NotInterfaceCriteria testee = new NotInterfaceCriteria(criterias); Map<NetworkInterface, Set<InetAddress>> result = testee.getAcceptableAddresses(allCandidates); assertNotNull(result); assertEquals(correct, result); } @Test public void testNoMatch() throws Exception { if (loopbackInterfaces.size() < 1) { return; } Map<NetworkInterface, Set<InetAddress>> candidates = new HashMap<NetworkInterface, Set<InetAddress>>(); for (NetworkInterface ni : loopbackInterfaces) { candidates.put(ni, allCandidates.get(ni)); } NotInterfaceCriteria testee = new NotInterfaceCriteria(Collections.singleton((InterfaceCriteria) LoopbackInterfaceCriteria.INSTANCE)); Map<NetworkInterface, Set<InetAddress>> result = testee.getAcceptableAddresses(candidates); assertNotNull(result); assertEquals(0, result.size()); } }