File: use-ip-range-for-tests.patch

package info (click to toggle)
nss-pam-ldapd 0.9.4-3%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 5,824 kB
  • ctags: 2,121
  • sloc: ansic: 15,772; sh: 6,268; python: 3,264; xml: 1,802; makefile: 283; exp: 146
file content (95 lines) | stat: -rw-r--r-- 2,671 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Description: Use a different IP range for tests
 This uses IP addresses from the RFC 5737 TEST-NET-1 range that is meant
 for use in documentation. This avoids issues with running the tests
 environments that also use the 10.0.0.0/8 range.
Author: Arthur de Jong <arthur@arthurdejong.org>
Origin: upstream, http://arthurdejong.org/git/nss-pam-ldapd/commit/?id=9516479505bcc750b1e52ff40a96720496d48f61

--- a/tests/test.ldif
+++ b/tests/test.ldif
@@ -40174,7 +40174,7 @@ objectClass: ieee802Device
 objectClass: device
 cn: testhost
 cn: testhostalias
-ipHostNumber: 10.0.0.1
+ipHostNumber: 192.0.2.123
 macAddress: 0:18:8a:54:1a:8e
 
 dn: cn=testhost2,ou=hosts,dc=test,dc=tld
@@ -40193,7 +40193,7 @@ dn: cn=testnet,ou=networks,dc=test,dc=tl
 objectClass: top
 objectClass: ipNetwork
 cn: testnet
-ipNetworkNumber: 10.0.0.0
+ipNetworkNumber: 192.0.2.0
 
 dn: ou=protocols,dc=test,dc=tld
 objectClass: top
--- a/tests/test_nsscmds.sh
+++ b/tests/test_nsscmds.sh
@@ -120,7 +120,7 @@ EOM
 
 # get entry by ip address
 # this does not currently work, but maybe it should
-#check "getent ethers 10.0.0.1" << EOM
+#check "getent ethers 192.0.2.123" << EOM
 #0:18:8a:54:1a:8e testhost
 #EOM
 
@@ -229,24 +229,24 @@ then
 echo "test_nsscmds.sh: testing hosts..."
 
 check "getent hosts testhost" << EOM
-10.0.0.1        testhost testhostalias
+192.0.2.123        testhost testhostalias
 EOM
 
 check "getent hosts testhostalias" << EOM
-10.0.0.1        testhost testhostalias
+192.0.2.123        testhost testhostalias
 EOM
 
 # check hostname with different case
 check "getent hosts TESTHOST" << EOM
-10.0.0.1        testhost testhostalias
+192.0.2.123        testhost testhostalias
 EOM
 
-check "getent hosts 10.0.0.1" << EOM
-10.0.0.1        testhost testhostalias
+check "getent hosts 192.0.2.123" << EOM
+192.0.2.123        testhost testhostalias
 EOM
 
 check "getent hosts | grep testhost" << EOM
-10.0.0.1        testhost testhostalias
+192.0.2.123        testhost testhostalias
 EOM
 
 # TODO: add more tests for IPv6 support
@@ -277,20 +277,20 @@ then
 echo "test_nsscmds.sh: testing networks..."
 
 check "getent networks testnet" << EOM
-testnet               10.0.0.0
+testnet               192.0.2.0
 EOM
 
 # check network name with different case
 check "getent networks TESTNET" << EOM
-testnet               10.0.0.0
+testnet               192.0.2.0
 EOM
 
-check "getent networks 10.0.0.0" << EOM
-testnet               10.0.0.0
+check "getent networks 192.0.2.0" << EOM
+testnet               192.0.2.0
 EOM
 
 check "getent networks | grep testnet" << EOM
-testnet               10.0.0.0
+testnet               192.0.2.0
 EOM
 
 fi  # end of networks tests