started parallel pings, not quite done yet since need to delay them
[pingcheck] / test / test_hoststatus.cpp
1 /*
2 The software in this package is distributed under the GNU General
3 Public License version 2 (with a special exception described below).
4
5 A copy of GNU General Public License (GPL) is included in this distribution,
6 in the file COPYING.GPL.
7
8 As a special exception, if other files instantiate templates or use macros
9 or inline functions from this file, or you compile this file and link it
10 with other works to produce a work based on this file, this file
11 does not by itself cause the resulting work to be covered
12 by the GNU General Public License.
13
14 However the source code for this file must still be made available
15 in accordance with section (3) of the GNU General Public License.
16
17 This exception does not invalidate any other reasons why a work based
18 on this file might be covered by the GNU General Public License.
19 */
20
21 #define BOOST_TEST_MAIN
22 #define BOOST_TEST_DYN_LINK
23
24 #include <streambuf>
25
26 #include <boost/asio.hpp>
27 #include <boost/test/unit_test.hpp>
28
29 #include "mock_linkstatus.h"
30
31 #include "host/hoststatus.h"
32 #include "host/pingstatus.h"
33
34 BOOST_AUTO_TEST_SUITE( TestHostStatus )
35
36 BOOST_AUTO_TEST_CASE( fail_percentage_10 )
37 {
38     int ping_fail_percentage_limit = 10;
39     int resolved_ip_count = 10;
40
41     LinkStatusItem link_status( new LinkStatus );
42     HostStatus host_status( "localhost", ping_fail_percentage_limit, 1,
43                             link_status );
44     host_status.set_resolved_ip_count( resolved_ip_count );
45
46     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
47     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
48
49     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
50     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
51
52     host_status.update_ping_statistics( PingStatus_FailureOther, 1);
53     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
54
55     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
56     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
57
58     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
59     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
60
61     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
62     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
63
64     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
65     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
66
67     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
68     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
69
70     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
71     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
72
73     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
74     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
75 }
76
77 BOOST_AUTO_TEST_CASE( fail_percentage_50 )
78 {
79     int ping_fail_percentage_limit = 50;
80     int resolved_ip_count = 10;
81
82     LinkStatusItem link_status( new LinkStatus );
83     HostStatus host_status( "localhost", ping_fail_percentage_limit, 1,
84                             link_status );
85     host_status.set_resolved_ip_count( resolved_ip_count );
86
87     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
88     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
89
90     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
91     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
92
93     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
94     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
95
96     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
97     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
98
99     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
100     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
101
102     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
103     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
104
105     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
106     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
107
108     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
109     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
110
111     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
112     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
113
114     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
115     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
116 }
117
118 BOOST_AUTO_TEST_CASE( fail_percentage_80 )
119 {
120     int ping_fail_percentage_limit = 80;
121     int resolved_ip_count = 10;
122
123     LinkStatusItem link_status( new LinkStatus );
124     HostStatus host_status( "localhost", ping_fail_percentage_limit, 1,
125                             link_status );
126     host_status.set_resolved_ip_count( resolved_ip_count );
127
128     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
129     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
130
131     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
132     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
133
134     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
135     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
136
137     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
138     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
139
140     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
141     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
142
143     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
144     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
145
146     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
147     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
148
149     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
150     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), false );
151
152     host_status.update_ping_statistics( PingStatus_FailureOther, 1 );
153     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
154
155     host_status.update_ping_statistics( PingStatus_SuccessReply, 1 );
156     BOOST_CHECK_EQUAL( host_status.exceeded_ping_failed_limit(), true );
157 }
158
159 BOOST_AUTO_TEST_SUITE_END()