当前位置: 首页>>代码示例>>Java>>正文


Java FileBasedIPList类代码示例

本文整理汇总了Java中org.apache.hadoop.util.FileBasedIPList的典型用法代码示例。如果您正苦于以下问题:Java FileBasedIPList类的具体用法?Java FileBasedIPList怎么用?Java FileBasedIPList使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


FileBasedIPList类属于org.apache.hadoop.util包,在下文中一共展示了FileBasedIPList类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testSubnetsAndIPs

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Add a bunch of IPS  to the file
 * Check  for inclusion
 * Check for exclusion
 */
@Test
public void testSubnetsAndIPs() throws IOException {

  String[] ips = {"10.119.103.112", "10.221.102.0/23"};

  createFileWithEntries ("ips.txt", ips);

  IPList ipList = new FileBasedIPList("ips.txt");

  assertTrue ("10.119.103.112 is not in the list",
      ipList.isIn("10.119.103.112"));
  assertFalse ("10.119.103.113 is in the list",
      ipList.isIn("10.119.103.113"));

  assertTrue ("10.221.102.0 is not in the list",
      ipList.isIn("10.221.102.0"));
  assertTrue ("10.221.102.1 is not in the list",
      ipList.isIn("10.221.102.1"));
  assertTrue ("10.221.103.1 is not in the list",
      ipList.isIn("10.221.103.1"));
  assertTrue ("10.221.103.255 is not in the list",
      ipList.isIn("10.221.103.255"));
  assertFalse("10.221.104.0 is in the list",
      ipList.isIn("10.221.104.0"));
  assertFalse("10.221.104.1 is in the list",
      ipList.isIn("10.221.104.1"));
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:33,代码来源:TestFileBasedIPList.java

示例2: testNullIP

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Add a bunch of IPS  to the file
 * Check  for inclusion
 * Check for exclusion
 */
@Test
public void testNullIP() throws IOException {

  String[] ips = {"10.119.103.112", "10.221.102.0/23"};
  createFileWithEntries ("ips.txt", ips);

  IPList ipList = new FileBasedIPList("ips.txt");

  assertFalse ("Null Ip is in the list",
      ipList.isIn(null));
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:17,代码来源:TestFileBasedIPList.java

示例3: testWithMultipleSubnetAndIPs

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Add a bunch of subnets and IPSs to the file
 * Check  for inclusion
 * Check for exclusion
 */
@Test
public void testWithMultipleSubnetAndIPs() throws IOException {

  String[] ips = {"10.119.103.112", "10.221.102.0/23", "10.222.0.0/16",
  "10.113.221.221"};

  createFileWithEntries ("ips.txt", ips);

  IPList ipList = new FileBasedIPList("ips.txt");

  assertTrue ("10.119.103.112 is not in the list",
      ipList.isIn("10.119.103.112"));
  assertFalse ("10.119.103.113 is in the list",
      ipList.isIn("10.119.103.113"));

  assertTrue ("10.221.103.121 is not in the list",
      ipList.isIn("10.221.103.121"));
  assertFalse("10.221.104.0 is in the list",
      ipList.isIn("10.221.104.0"));

  assertTrue ("10.222.103.121 is not in the list",
      ipList.isIn("10.222.103.121"));
  assertFalse("10.223.104.0 is in the list",
      ipList.isIn("10.223.104.0"));

  assertTrue ("10.113.221.221 is not in the list",
      ipList.isIn("10.113.221.221"));
  assertFalse("10.113.221.222 is in the list",
      ipList.isIn("10.113.221.222"));
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:36,代码来源:TestFileBasedIPList.java

示例4: testFileNotSpecified

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Do not specify the file
 * test for inclusion
 * should be true as if the feature is turned off
 */
public void testFileNotSpecified() {

  IPList ipl = new FileBasedIPList(null);

  assertFalse("110.113.221.222 is in the list",
      ipl.isIn("110.113.221.222"));
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:13,代码来源:TestFileBasedIPList.java

示例5: testFileMissing

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Specify a non existent file
 * test for inclusion
 * should be true as if the feature is turned off
 */
public void testFileMissing() {

  IPList ipl = new FileBasedIPList("missingips.txt");

  assertFalse("110.113.221.222 is in the list",
      ipl.isIn("110.113.221.222"));
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:13,代码来源:TestFileBasedIPList.java

示例6: testWithEmptyList

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Specify an existing file, but empty
 * test for inclusion
 * should be true as if the feature is turned off
 */
public void testWithEmptyList() throws IOException {
  String[] ips = {};

  createFileWithEntries ("ips.txt", ips);
  IPList ipl = new FileBasedIPList("ips.txt");

  assertFalse("110.113.221.222 is in the list",
      ipl.isIn("110.113.221.222"));
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:15,代码来源:TestFileBasedIPList.java

示例7: testForBadFIle

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Specify an existing file, but ips in wrong format
 * test for inclusion
 * should be true as if the feature is turned off
 */
public void testForBadFIle() throws IOException {
  String[] ips = { "10.221.102/23"};

  createFileWithEntries ("ips.txt", ips);

  try {
    new FileBasedIPList("ips.txt");
   fail();
   } catch (Exception e) {
     //expects Exception
   }
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:18,代码来源:TestFileBasedIPList.java

示例8: testWithAWrongEntry

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Add a bunch of subnets and IPSs to the file. Keep one entry wrong.
 * The good entries will still be used.
 * Check  for inclusion with good entries
 * Check for exclusion
 */
public void testWithAWrongEntry() throws IOException {

  String[] ips = {"10.119.103.112", "10.221.102/23", "10.221.204.1/23"};

  createFileWithEntries ("ips.txt", ips);

  try {
   new FileBasedIPList("ips.txt");
  fail();
  } catch (Exception e) {
    //expects Exception
  }
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:20,代码来源:TestFileBasedIPList.java

示例9: testAddWithSleepForCacheTimeout

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Add a bunch of subnets and IPSs to the file
 * setup a low cache refresh
 * test for inclusion
 * Check for exclusion
 * Add a bunch of subnets and Ips
 * wait for cache timeout.
 * test for inclusion
 * Check for exclusion
 */
public void testAddWithSleepForCacheTimeout() throws IOException, InterruptedException {

  String[] ips = {"10.119.103.112", "10.221.102.0/23", "10.113.221.221"};

  TestFileBasedIPList.createFileWithEntries ("ips.txt", ips);

  CacheableIPList cipl = new CacheableIPList(
      new FileBasedIPList("ips.txt"),100);

  assertFalse("10.113.221.222 is in the list",
      cipl.isIn("10.113.221.222"));
  assertFalse ("10.222.103.121 is  in the list",
      cipl.isIn("10.222.103.121"));

  TestFileBasedIPList.removeFile("ips.txt");
  String[]ips2 = {"10.119.103.112", "10.221.102.0/23",
      "10.222.0.0/16", "10.113.221.221", "10.113.221.222"};

  TestFileBasedIPList.createFileWithEntries ("ips.txt", ips2);
  Thread.sleep(101);

  assertTrue("10.113.221.222 is not in the list",
      cipl.isIn("10.113.221.222"));
  assertTrue ("10.222.103.121 is not in the list",
      cipl.isIn("10.222.103.121"));

  TestFileBasedIPList.removeFile("ips.txt");
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:39,代码来源:TestCacheableIPList.java

示例10: testRemovalWithSleepForCacheTimeout

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Add a bunch of subnets and IPSs to the file
 * setup a low cache refresh
 * test for inclusion
 * Check for exclusion
 * Remove a bunch of subnets and Ips
 * wait for cache timeout.
 * test for inclusion
 * Check for exclusion
 */
public void testRemovalWithSleepForCacheTimeout() throws IOException, InterruptedException {

  String[] ips = {"10.119.103.112", "10.221.102.0/23",
      "10.222.0.0/16", "10.113.221.221", "10.113.221.222"};

  TestFileBasedIPList.createFileWithEntries ("ips.txt", ips);

  CacheableIPList cipl = new CacheableIPList(
      new FileBasedIPList("ips.txt"),100);

  assertTrue("10.113.221.222 is not in the list",
      cipl.isIn("10.113.221.222"));
  assertTrue ("10.222.103.121 is not in the list",
      cipl.isIn("10.222.103.121"));

  TestFileBasedIPList.removeFile("ips.txt");
  String[]ips2 = {"10.119.103.112", "10.221.102.0/23", "10.113.221.221"};

  TestFileBasedIPList.createFileWithEntries ("ips.txt", ips2);
  Thread.sleep(1005);

  assertFalse("10.113.221.222 is in the list",
      cipl.isIn("10.113.221.222"));
  assertFalse ("10.222.103.121 is  in the list",
      cipl.isIn("10.222.103.121"));

  TestFileBasedIPList.removeFile("ips.txt");
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:39,代码来源:TestCacheableIPList.java

示例11: testAddWithRefresh

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Add a bunch of subnets and IPSs to the file
 * setup a low cache refresh
 * test for inclusion
 * Check for exclusion
 * Add a bunch of subnets and Ips
 * do a refresh
 * test for inclusion
 * Check for exclusion
 */
public void testAddWithRefresh() throws IOException, InterruptedException {

  String[] ips = {"10.119.103.112", "10.221.102.0/23", "10.113.221.221"};

  TestFileBasedIPList.createFileWithEntries ("ips.txt", ips);

  CacheableIPList cipl = new CacheableIPList(
      new FileBasedIPList("ips.txt"),100);

  assertFalse("10.113.221.222 is in the list",
      cipl.isIn("10.113.221.222"));
  assertFalse ("10.222.103.121 is  in the list",
      cipl.isIn("10.222.103.121"));

  TestFileBasedIPList.removeFile("ips.txt");
  String[]ips2 = {"10.119.103.112", "10.221.102.0/23",
      "10.222.0.0/16", "10.113.221.221", "10.113.221.222"};

  TestFileBasedIPList.createFileWithEntries ("ips.txt", ips2);
  cipl.refresh();

  assertTrue("10.113.221.222 is not in the list",
      cipl.isIn("10.113.221.222"));
  assertTrue ("10.222.103.121 is not in the list",
      cipl.isIn("10.222.103.121"));

  TestFileBasedIPList.removeFile("ips.txt");
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:39,代码来源:TestCacheableIPList.java

示例12: testRemovalWithRefresh

import org.apache.hadoop.util.FileBasedIPList; //导入依赖的package包/类
/**
 * Add a bunch of subnets and IPSs to the file
 * setup a low cache refresh
 * test for inclusion
 * Check for exclusion
 * Remove a bunch of subnets and Ips
 * wait for cache timeout.
 * test for inclusion
 * Check for exclusion
 */
public void testRemovalWithRefresh() throws IOException, InterruptedException {

  String[] ips = {"10.119.103.112", "10.221.102.0/23",
      "10.222.0.0/16", "10.113.221.221", "10.113.221.222"};

  TestFileBasedIPList.createFileWithEntries ("ips.txt", ips);

  CacheableIPList cipl = new CacheableIPList(
      new FileBasedIPList("ips.txt"),100);

  assertTrue("10.113.221.222 is not in the list",
      cipl.isIn("10.113.221.222"));
  assertTrue ("10.222.103.121 is not in the list",
      cipl.isIn("10.222.103.121"));

  TestFileBasedIPList.removeFile("ips.txt");
  String[]ips2 = {"10.119.103.112", "10.221.102.0/23", "10.113.221.221"};

  TestFileBasedIPList.createFileWithEntries ("ips.txt", ips2);
  cipl.refresh();

  assertFalse("10.113.221.222 is in the list",
      cipl.isIn("10.113.221.222"));
  assertFalse ("10.222.103.121 is  in the list",
      cipl.isIn("10.222.103.121"));

  TestFileBasedIPList.removeFile("ips.txt");
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:39,代码来源:TestCacheableIPList.java


注:本文中的org.apache.hadoop.util.FileBasedIPList类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。