/* * freenet0.7 - * Copyright (C) 2006 David Roden * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package freenet.io; import java.net.InetAddress; import junit.framework.TestCase; import freenet.io.Inet6AddressMatcher; /** * Test case for the {@link freenet.io.Inet6AddressMatcher} class. Contains some * very basic tests. Feel free to add more complicated tests! * * @author David Roden <droden@gmail.com> * @version $Id: Inet6AddressMatcherTest.java 10490 2006-09-20 00:07:46Z toad $ */ public class Inet6AddressMatcherTest extends TestCase { public void test() throws Exception { Inet6AddressMatcher matcher = new Inet6AddressMatcher("0:0:0:0:0:0:0:0/0"); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:203:dff:fe22:420f"))); matcher = new Inet6AddressMatcher("fe80:0:0:0:203:dff:fe22:420f/64"); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:203:dff:fe22:420f"))); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:0203:0dff:fe22:420f"))); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:0204:0dff:fe22:420f"))); assertEquals(false, matcher.matches(InetAddress.getByName("fe81:0:0:0:0203:0dff:fe22:420f"))); assertEquals(false, matcher.matches(InetAddress.getByName("0:0:0:0:0:0:0:1"))); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:0:0:0:1"))); matcher = new Inet6AddressMatcher("fe80:0:0:0:203:dff:fe22:420f/ffff:ffff:ffff:ffff:0:0:0:0"); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:203:dff:fe22:420f"))); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:0203:0dff:fe22:420f"))); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:0204:0dff:fe22:420f"))); assertEquals(false, matcher.matches(InetAddress.getByName("fe81:0:0:0:0203:0dff:fe22:420f"))); assertEquals(false, matcher.matches(InetAddress.getByName("0:0:0:0:0:0:0:1"))); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:0:0:0:1"))); matcher = new Inet6AddressMatcher("fe80:0:0:0:203:dff:fe22:420f/128"); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:203:dff:fe22:420f"))); assertEquals(true, matcher.matches(InetAddress.getByName("fe80:0:0:0:0203:0dff:fe22:420f"))); assertEquals(false, matcher.matches(InetAddress.getByName("fe80:0:0:0:0204:0dff:fe22:420f"))); assertEquals(false, matcher.matches(InetAddress.getByName("fe81:0:0:0:0203:0dff:fe22:420f"))); assertEquals(false, matcher.matches(InetAddress.getByName("0:0:0:0:0:0:0:1"))); assertEquals(false, matcher.matches(InetAddress.getByName("fe80:0:0:0:0:0:0:1"))); } }