File: 02-range.t

package info (click to toggle)
prips 1.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 436 kB
  • sloc: ansic: 393; sh: 388; makefile: 74
file content (58 lines) | stat: -rwxr-xr-x 2,044 bytes parent folder | download
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
#!/bin/sh
#
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: GPL-2.0-or-later

myself="$(readlink -f -- "$0")"
test_dir="$(dirname -- "$myself")"
. "$test_dir/tap-functions.sh"

[ -z "$PRIPS" ] && PRIPS='./prips'

plan_ 15

echo '# prips with no arguments should exit with code 1'
$PRIPS > /dev/null 2>&1
res="$?"
if [ "$res" = 1 ]; then ok_; else not_ok_ "exit code $res"; fi

v=`$PRIPS -d33 127.0.0.4 127.0.0.5 2>/dev/null`
res="$?"
exp='127.0.0.4!127.0.0.5!'
if [ "$res" = 0 ]; then ok_; else not_ok_ "exit code $res"; fi
if [ "$v" = "$exp" ]; then ok_; else not_ok_ "expected $exp got $v"; fi

v=`$PRIPS -d33 127.0.0.4 127.0.0.7 2>/dev/null`
res="$?"
exp='127.0.0.4!127.0.0.5!127.0.0.6!127.0.0.7!'
if [ "$res" = 0 ]; then ok_; else not_ok_ "exit code $res"; fi
if [ "$v" = "$exp" ]; then ok_; else not_ok_ "expected $exp got $v"; fi

v=`$PRIPS -d33 127.0.0.7 127.0.0.4 2>/dev/null`
res="$?"
if [ "$res" = 1 ]; then ok_; else not_ok_ "exit code $res"; fi
if [ -z "$v" ]; then ok_; else not_ok_ "expected $exp got $v"; fi

v=`$PRIPS -d33 255.255.255.252/30 2>/dev/null`
res="$?"
exp='255.255.255.252!255.255.255.253!255.255.255.254!255.255.255.255!'
if [ "$res" = 0 ]; then ok_; else not_ok_ "exit code $res"; fi
if [ "$v" = "$exp" ]; then ok_; else not_ok_ "expected $exp got $v"; fi

v=`$PRIPS -d33 255.255.255.252 255.255.255.255 2>/dev/null`
res="$?"
exp='255.255.255.252!255.255.255.253!255.255.255.254!255.255.255.255!'
if [ "$res" = 0 ]; then ok_; else not_ok_ "exit code $res"; fi
if [ "$v" = "$exp" ]; then ok_; else not_ok_ "expected $exp got $v"; fi

v=`$PRIPS -d33 255.255.255.255 255.255.255.255 2>/dev/null`
res="$?"
exp='255.255.255.255!'
if [ "$res" = 0 ]; then ok_; else not_ok_ "exit code $res"; fi
if [ "$v" = "$exp" ]; then ok_; else not_ok_ "expected $exp got $v"; fi

v=`$PRIPS -d33 255.255.255.255/32 2>/dev/null`
res="$?"
exp='255.255.255.255!'
if [ "$res" = 0 ]; then ok_; else not_ok_ "exit code $res"; fi
if [ "$v" = "$exp" ]; then ok_; else not_ok_ "expected $exp got $v"; fi