SEC-1543: Change IpAddressMatcher to return false when comparing an Inet6Address with an Inet4Address rather than raising an exception.

This commit is contained in:
Luke Taylor
2010-10-23 22:25:08 +01:00
parent cf0289bc02
commit 4de8b84b0d
2 changed files with 55 additions and 2 deletions

View File

@@ -0,0 +1,51 @@
package org.springframework.security.web.util;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.springframework.mock.web.MockHttpServletRequest;
/**
* @author Luke Taylor
*/
public class IpAddressMatcherTests {
final IpAddressMatcher v6matcher = new IpAddressMatcher("fe80::21f:5bff:fe33:bd68");
final IpAddressMatcher v4matcher = new IpAddressMatcher("192.168.1.104");
MockHttpServletRequest ipv4Request = new MockHttpServletRequest();
MockHttpServletRequest ipv6Request = new MockHttpServletRequest();
@Before
public void setup() {
ipv6Request.setRemoteAddr("fe80::21f:5bff:fe33:bd68");
ipv4Request.setRemoteAddr("192.168.1.104");
}
@Test
public void ipv6MatcherMatchesIpv6Address() {
assertTrue(v6matcher.matches(ipv6Request));
}
@Test
public void ipv6MatcherDoesntMatchIpv4Address() {
assertFalse(v6matcher.matches(ipv4Request));
}
@Test
public void ipv4MatcherMatchesIpv4Address() {
assertTrue(v4matcher.matches(ipv4Request));
}
@Test
public void ipv4SubnetMatchesCorrectly() throws Exception {
IpAddressMatcher matcher = new IpAddressMatcher("192.168.1.0/24");
assertTrue(matcher.matches(ipv4Request));
matcher = new IpAddressMatcher("192.168.1.128/25");
assertFalse(matcher.matches(ipv4Request));
ipv4Request.setRemoteAddr("192.168.1.159"); // 159 = 0x9f
assertTrue(matcher.matches(ipv4Request));
}
}