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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#[cfg(test)]
mod tests {
static HOSTNAME: &str = "127.0.0.1";
mod tcp {
use crate::tcp::TcpPort;
use crate::tests::tests::HOSTNAME;
use crate::{Ops, Range};
#[test]
fn it_returns_any_port() {
assert!(
TcpPort::any(HOSTNAME).unwrap() >= Range::default().min,
"could not return a port in default range"
);
}
#[test]
fn it_returns_port_in_range() {
assert!(
TcpPort::in_range(
HOSTNAME,
Range {
min: 5000,
max: 6500
}
)
.unwrap()
>= 5000,
"could not return a port in range 5000 to 6500"
);
}
#[test]
fn it_returns_port_from_list() {
assert!(
TcpPort::from_list(HOSTNAME, vec![6000, 7000, 8000]).unwrap() > 5999,
"could not return a port from list [6000, 7000, 8000]"
);
}
#[test]
fn it_returns_port_except() {
assert_ne!(
TcpPort::except(HOSTNAME, vec![Range::default().min]).unwrap(),
Range::default().min,
"could not return a port except 1024"
);
}
#[test]
fn it_returns_port_in_range_except() {
assert_ne!(
TcpPort::in_range_except(
HOSTNAME,
Range {
min: 6000,
max: 6002
},
vec![6000]
)
.unwrap(),
6000,
"could not return in range except 6000"
);
}
}
mod udp {
use crate::tests::tests::HOSTNAME;
use crate::udp::UdpPort;
use crate::{Ops, Range};
#[test]
fn it_returns_any_port() {
assert!(
UdpPort::any(HOSTNAME).unwrap() >= Range::default().min,
"could not return a port in default range"
);
}
#[test]
fn it_returns_port_in_range() {
assert!(
UdpPort::in_range(
HOSTNAME,
Range {
min: 5000,
max: 6500
}
)
.unwrap()
>= 5000,
"could not return a port in range 5000 to 6500"
);
}
#[test]
fn it_returns_port_from_list() {
assert!(
UdpPort::from_list(HOSTNAME, vec![6000, 7000, 8000]).unwrap() > 5999,
"could not return a port from list [6000, 7000, 8000]"
);
}
#[test]
fn it_returns_port_except() {
assert_ne!(
UdpPort::except(HOSTNAME, vec![Range::default().min]).unwrap(),
Range::default().min,
"could not return a port except 1024"
);
}
#[test]
fn it_returns_port_in_range_except() {
assert_ne!(
UdpPort::in_range_except(
HOSTNAME,
Range {
min: 6000,
max: 6002
},
vec![6000]
)
.unwrap(),
6000,
"could not return in range except 6000"
);
}
}
}