/proxy_vole/test/com/btr/proxy/selector/pac/PacScriptMethodsTest.java

http://proxy-vole.googlecode.com/ · Java · 175 lines · 95 code · 27 blank · 53 comment · 0 complexity · 861da84ebba095d1edca5d535224d936 MD5 · raw file

  1. package com.btr.proxy.selector.pac;
  2. import static org.junit.Assert.assertEquals;
  3. import java.net.Inet4Address;
  4. import java.net.InetAddress;
  5. import java.net.UnknownHostException;
  6. import java.util.Calendar;
  7. import org.junit.Test;
  8. import com.btr.proxy.TestUtil;
  9. /*****************************************************************************
  10. * Tests for the global PAC script methods that are used as context inside of
  11. * the scripts.
  12. * @author Bernd Rosstauscher (proxyvole@rosstauscher.de) Copyright 2009
  13. ****************************************************************************/
  14. public class PacScriptMethodsTest {
  15. /*************************************************************************
  16. * Get a methods implementation with a calendar for date and time base tests
  17. * set to a hardcoded data.
  18. * Current date for all tests is: 15. December 1994 12:00.00
  19. * its a Thursday
  20. ************************************************************************/
  21. private PacScriptMethods buildParser() {
  22. PacScriptMethods result = new PacScriptMethods();
  23. Calendar cal = Calendar.getInstance();
  24. cal.set(Calendar.YEAR, 1994);
  25. cal.set(Calendar.MONTH, Calendar.DECEMBER);
  26. cal.set(Calendar.DAY_OF_MONTH, 15);
  27. cal.set(Calendar.HOUR_OF_DAY, 12);
  28. cal.set(Calendar.MINUTE, 00);
  29. cal.set(Calendar.SECOND, 00);
  30. cal.set(Calendar.MILLISECOND, 00);
  31. result.setCurrentTime(cal);
  32. return result;
  33. }
  34. /*************************************************************************
  35. * Test method
  36. ************************************************************************/
  37. @Test
  38. public void testDnsDomainIs() {
  39. assertEquals(true, buildParser().dnsDomainIs("host1.unit-test.invalid", "unit-test.invalid"));
  40. }
  41. /*************************************************************************
  42. * Test method
  43. ************************************************************************/
  44. @Test
  45. public void testDnsDomainLevels() {
  46. assertEquals(2, buildParser().dnsDomainLevels(TestUtil.HTTP_TEST_URI.toString()));
  47. }
  48. /*************************************************************************
  49. * Test method
  50. * @throws UnknownHostException on resolve error.
  51. ************************************************************************/
  52. @Test
  53. public void testDnsResolve() throws UnknownHostException {
  54. InetAddress adr = Inet4Address.getLocalHost();
  55. assertEquals(adr.getHostAddress(), buildParser().dnsResolve(adr.getHostName()));
  56. }
  57. /*************************************************************************
  58. * Test method
  59. ************************************************************************/
  60. @Test
  61. public void testIsInNet() {
  62. assertEquals(true, buildParser().isInNet("192.168.0.122", "192.168.0.0", "255.255.255.0"));
  63. }
  64. /*************************************************************************
  65. * Test method
  66. ************************************************************************/
  67. @Test
  68. public void testIsInNet2() {
  69. assertEquals(true, buildParser().isInNet("10.13.75.47", "10.13.72.0", "255.255.252.0"));
  70. }
  71. /*************************************************************************
  72. * Test method
  73. ************************************************************************/
  74. @Test
  75. public void testIsPlainHostName() {
  76. assertEquals(false, buildParser().isPlainHostName("host1.unit-test.invalid"));
  77. assertEquals(true, buildParser().isPlainHostName("host1"));
  78. }
  79. /*************************************************************************
  80. * Test method
  81. * @throws UnknownHostException on resolve error.
  82. ************************************************************************/
  83. @Test
  84. public void testIsResolveable() throws UnknownHostException {
  85. InetAddress adr = Inet4Address.getLocalHost();
  86. assertEquals(true, buildParser().isResolvable(adr.getHostName()));
  87. }
  88. /*************************************************************************
  89. * Test method
  90. ************************************************************************/
  91. @Test
  92. public void testLocalHostOrDomainIs() {
  93. assertEquals(true, buildParser().localHostOrDomainIs("host1.unit-test.invalid", "host1.unit-test.invalid"));
  94. }
  95. /*************************************************************************
  96. * Test method
  97. * @throws UnknownHostException on resolve error.
  98. ************************************************************************/
  99. @Test
  100. public void testMyIpAddress() throws UnknownHostException {
  101. InetAddress adr = Inet4Address.getLocalHost();
  102. assertEquals(adr.getHostAddress(), buildParser().myIpAddress());
  103. }
  104. /*************************************************************************
  105. * Test method
  106. ************************************************************************/
  107. @Test
  108. public void testShExpMatch() {
  109. assertEquals(true, buildParser().shExpMatch("host1.unit-test.invalid", "host1.unit-test.*"));
  110. assertEquals(true, buildParser().shExpMatch("host1.unit-test.invalid", "*.unit-test.invalid"));
  111. }
  112. /*************************************************************************
  113. * Test method
  114. ************************************************************************/
  115. @Test
  116. public void testWeekdayRange() {
  117. assertEquals(true, buildParser().weekdayRange("MON", "SUN", "GMT"));
  118. assertEquals(true, buildParser().weekdayRange("SUN", "SAT", null));
  119. assertEquals(false, buildParser().weekdayRange("MON", "WED", null));
  120. }
  121. /*************************************************************************
  122. * Test method
  123. ************************************************************************/
  124. @Test
  125. public void testDateRange() {
  126. assertEquals(true, buildParser().dateRange(15, "undefined", "undefined", "undefined", "undefined", "undefined", "undefined"));
  127. assertEquals(true, buildParser().dateRange(15, "DEC", "undefined", "undefined", "undefined", "undefined", "undefined"));
  128. assertEquals(true, buildParser().dateRange(15, "DEC", 1994, "undefined", "undefined", "undefined", "undefined"));
  129. assertEquals(true, buildParser().dateRange(15, 17, "undefined", "undefined", "undefined", "undefined", "undefined"));
  130. assertEquals(true, buildParser().dateRange("OCT", "JAN", "undefined", "undefined", "undefined", "undefined", "undefined"));
  131. assertEquals(true, buildParser().dateRange(1994, 1994, "undefined", "undefined", "undefined", "undefined", "undefined"));
  132. assertEquals(true, buildParser().dateRange(1, "DEC", 1994, 1, "JAN", 1995, "GTM"));
  133. assertEquals(false, buildParser().dateRange(16, "DEC", 1994, 1, "JAN", 1995, "GTM"));
  134. }
  135. /*************************************************************************
  136. * Test method
  137. ************************************************************************/
  138. @Test
  139. public void testTimeRange() {
  140. assertEquals(true, buildParser().timeRange(12, "undefined", "undefined", "undefined", "undefined", "undefined", "undefined"));
  141. assertEquals(true, buildParser().timeRange(11, 13, "undefined", "undefined", "undefined", "undefined", "undefined"));
  142. assertEquals(true, buildParser().timeRange(11, 13, "gmt", "undefined", "undefined", "undefined", "undefined"));
  143. assertEquals(true, buildParser().timeRange(11, 30, 13, 30, "undefined", "undefined", "undefined"));
  144. assertEquals(true, buildParser().timeRange(11, 30, 15, 13, 30, 15, "undefined"));
  145. assertEquals(true, buildParser().timeRange(11, 30, 15, 13, 30, 15, "GMT"));
  146. assertEquals(false, buildParser().timeRange(12, 50, 00, 9, 30, 00, "GMT"));
  147. }
  148. }