summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/hash:ip,port,net.t8
-rw-r--r--tests/hash:net,port.t8
-rw-r--r--tests/hash:net.t14
-rw-r--r--tests/hash:net.t.list210
4 files changed, 38 insertions, 2 deletions
diff --git a/tests/hash:ip,port,net.t b/tests/hash:ip,port,net.t
index 89b046c..c13ccc4 100644
--- a/tests/hash:ip,port,net.t
+++ b/tests/hash:ip,port,net.t
@@ -46,4 +46,12 @@
0 n=`ipset list test|grep 10.0|wc -l` && test $n -eq 3072
# Destroy set
0 ipset -X test
+# Create set to add a range and with range notation in the network
+0 ipset new test hash:ip,port,net hashsize 64
+# Add a range which forces a resizing
+0 ipset add test 10.0.0.0-10.0.3.255,tcp:80-82,192.168.0.0-192.168.2.255
+# Check that correct number of elements are added
+0 n=`ipset list test|grep 10.0|wc -l` && test $n -eq 6144
+# Destroy set
+0 ipset -X test
# eof
diff --git a/tests/hash:net,port.t b/tests/hash:net,port.t
index d5f420c..519292c 100644
--- a/tests/hash:net,port.t
+++ b/tests/hash:net,port.t
@@ -62,4 +62,12 @@
0 n=`ipset list test|grep 10.0|wc -l` && test $n -eq 1026
# Destroy set
0 ipset -X test
+# Create set to add a range and with range notation in the network
+0 ipset new test hash:net,port hashsize 64
+# Add a range which forces a resizing
+0 ipset add test 10.0.0.0-10.0.2.255,tcp:80-1105
+# Check that correct number of elements are added
+0 n=`ipset list test|grep 10.0|wc -l` && test $n -eq 2052
+# Destroy set
+0 ipset -X test
# eof
diff --git a/tests/hash:net.t b/tests/hash:net.t
index 9947bf6..8ccc3f2 100644
--- a/tests/hash:net.t
+++ b/tests/hash:net.t
@@ -38,12 +38,22 @@
0 diff -u -I 'Size in memory.*' .foo hash:net.t.list0
# Sleep 5s so that element can time out
0 sleep 5
-# IP: List set
+# List set
0 ipset -L test 2>/dev/null > .foo0 && ./sort.sh .foo0
-# IP: Check listing
+# Check listing
0 diff -u -I 'Size in memory.*' .foo hash:net.t.list1
# Flush test set
0 ipset flush test
# Delete test set
0 ipset destroy test
+# Create test set
+0 ipset new test hash:net
+# Add networks in range notation
+0 ipset add test 10.2.0.0-10.2.1.12
+# List set
+0 ipset -L test 2>/dev/null > .foo0 && ./sort.sh .foo0
+# Check listing
+0 diff -u -I 'Size in memory.*' .foo hash:net.t.list2
+# Delete test set
+0 ipset destroy test
# eof
diff --git a/tests/hash:net.t.list2 b/tests/hash:net.t.list2
new file mode 100644
index 0000000..dad3f22
--- /dev/null
+++ b/tests/hash:net.t.list2
@@ -0,0 +1,10 @@
+Name: test
+Type: hash:net
+Header: family inet hashsize 1024 maxelem 65536
+Size in memory: 17016
+References: 0
+Members:
+10.2.0.0/24
+10.2.1.0/29
+10.2.1.12
+10.2.1.8/30