summaryrefslogtreecommitdiff
path: root/lib/custodian
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-24 10:41:49 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-24 10:41:49 +0000
commit71cfbe7780e9f262eccac834577af2fd688abfe3 (patch)
tree23326397dd3bec0c3c1750adf0f63cc256e682b3 /lib/custodian
parent664943a7b28a33fd5da4e9cc661acef249fa6095 (diff)
Invert the success/failure of tests if appropriate.
Diffstat (limited to 'lib/custodian')
-rw-r--r--lib/custodian/worker.rb34
1 files changed, 28 insertions, 6 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb
index 6f1b5fd..05049ea 100644
--- a/lib/custodian/worker.rb
+++ b/lib/custodian/worker.rb
@@ -9,9 +9,11 @@ require 'logger'
#
-# Implementation of our protocol tests.
+# Our modules.
#
require 'custodian/alerter.rb'
+require 'custodian/testfactory'
+
require 'custodian/protocoltest/tcp.rb'
require 'custodian/protocoltest/dns.rb'
require 'custodian/protocoltest/ftp.rb'
@@ -22,7 +24,6 @@ require 'custodian/protocoltest/ping.rb'
require 'custodian/protocoltest/rsync.rb'
require 'custodian/protocoltest/ssh.rb'
require 'custodian/protocoltest/smtp.rb'
-require 'custodian/testfactory'
@@ -45,16 +46,21 @@ module Custodian
#
attr_reader :queue
+
#
# How many times we re-test before we detect a failure
#
attr_reader :retry_count
+
#
# The log-file object
#
attr_reader :logger
+
+
+
#
# Constructor: Connect to the queue
#
@@ -76,6 +82,7 @@ module Custodian
+
#
# Write the given message to our logfile - and show it to the console
# if we're running with '--verbose' in play
@@ -87,6 +94,7 @@ module Custodian
+
#
# Process jobs from the queue - never return.
#
@@ -101,6 +109,7 @@ module Custodian
+
#
# Fetch a single job from the queue, and process it.
#
@@ -109,8 +118,11 @@ module Custodian
result = false
begin
- job = @queue.reserve()
+ #
+ # Acquire a job.
+ #
+ job = @queue.reserve()
log_message( "Job aquired - Job ID : #{job.id}" )
#
@@ -147,6 +159,7 @@ module Custodian
#
alert = Custodian::Alerter.new( test )
+
#
# We'll run no more than MAX times.
#
@@ -156,7 +169,13 @@ module Custodian
log_message( "Running test - [#{count}/#{@retry_count}]" )
- if ( test.run_test )
+ #
+ # Run the test - inverting the result if we should
+ #
+ result = test.run_test
+ result = ! result if ( test.inverted() )
+
+ if ( result )
log_message( "Test succeeed - clearing alert" )
success = true
alert.clear()
@@ -194,8 +213,10 @@ module Custodian
end
+
+
#
- # Process jobs until we see a failure - stop then.
+ # Process jobs until we see a failure, then stop.
#
def process_until_fail
while( process_single_job() )
@@ -203,8 +224,9 @@ module Custodian
end
end
- end
+ end
+
end