summaryrefslogtreecommitdiff
path: root/worker/worker
blob: 5fcd312cf4116f8155d231133ff08ff6c68be9c3 (plain)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#!/usr/bin/ruby
#
#  This script will pull tests to complete from the Beanstalk Queue,
# where they will be found in JSON form, and executes them.
#
#
#  TODO: Command line parsing:
#
#           1.  set failure count 3 in a row, for example.
#
#           2.  enable/disable logging to a file
#
#           3.  Specify server name/port for the beanstalk queue.
#
#
# Steve
# --
#



require 'beanstalk-client'
require 'getoptlong'
require 'json'




#
# Implementation of our protocol tests.
#
require 'tests/ftp'
require 'tests/http'
require 'tests/https'
require 'tests/jabber'
require 'tests/ldap'
require 'tests/ping'
require 'tests/rsync'
require 'tests/smtp'
require 'tests/ssh'




#
#  This class encapsulates the raising and clearing of alerts via Mauve.
#
class Alert

  attr_reader :details

  def initialize( test_details )
    @details = test_details
  end

  def raise
    puts "RAISING ALERT: #{@details}"
  end

  def clear
    puts "CLEARING ALERT: #{@details}"
  end

end



#
# This class contains the code for connecting to a Beanstalk queue,
# fetching tests from it, and executing them
#
class Custodian

  #
  # The beanstalk queue.
  #
  attr_reader :queue


  #
  # Constructor: Connect to the queue
  #
  def initialize( server )
    @queue = Beanstalk::Pool.new([server])
  end


  #
  #  Flush the queue.
  #
  def flush_queue!
    while( true )
      begin
        job = @queue.reserve(1)
        id  = job.id
        puts "\tDeleted job #{id}" if ( ENV['VERBOSE'] )
        job.delete
      rescue Beanstalk::TimedOut => ex
        return
      end
    end
  end

  #
  # Process jobs from the queue - never return.
  #
  def run!
    while( true )
      puts "\n\nWaiting for job.." if ( ENV['VERBOSE'] )
      process_single_job()
    end
  end


  #
  # Fetch a single job from the queue, and process it.
  #
  def process_single_job

    begin
      job = @queue.reserve()
      puts "Job acquired: #{Time.new.inspect}" if ( ENV['VERBOSE'] )


      #
      #  Parse the JSON of the job body.
      #
      json = job.body
      hash = JSON.parse( json )
      hash['verbose'] = 1 if ( ENV['VERBOSE'] )


      #
      #  Output the details.
      #
      if ( ENV['VERBOSE'] )
        puts "JOB: #{job.id}"
        puts "Type of test is #{hash['test_type']}"
        hash.keys.each do |key|
          puts "\t#{key} => #{hash[key]}"
        end
      end


      #
      #  Given the test-type of "YYY" we'll call the method "YYY_test", which
      # we assume comes from one of the files beneath ./tests/
      #
      test   = hash['test_type']
      method = "#{test}_test".to_sym

      success = false
      count   = 0

      alert = Alert.new( hash )

      #
      #  We'll run no more than MAX times.
      #
      #  We stop the execution on a single success.
      #
      while ( ( count < 5 ) && ( success == false ) )
        if ( send( method, hash ) )
          alert.clear()
          success= true
        end
        count += 1
      end

      #
      #  If we didn't succeed on any of the attempts raise the alert.
      #
      if ( ! success )
        alert.raise()
      end
    rescue => ex
      puts "Exception raised processing job: #{ex}"
    ensure
      #
      #  Delete the job - either we received an error, in which case
      # we should remove it to avoid picking it up again, or we handled
      # it successfully so it should be removed.
      #
      job.delete
    end
  end
end







#
#  Entry-point to our code.
#
if __FILE__ == $0 then

  $SERVER = "localhost:11300";

  begin
    opts = GetoptLong.new(
                          [ "--verbose", "-v", GetoptLong::NO_ARGUMENT ],
                          [ "--flush",   "-f", GetoptLong::NO_ARGUMENT ],
                          [ "--server",  "-S", GetoptLong::REQUIRED_ARGUMENT ],
                          [ "--single",  "-s", GetoptLong::NO_ARGUMENT ]
                          )
    opts.each do |opt, arg|
      case opt
      when "--verbose":
          ENV["VERBOSE"] = "1"
      when "--flush":
          ENV["FLUSH"] = "1"
      when "--server":
          ENV["SERVER"] = arg
      when "--single":
          ENV["SINGLE"] = "1"
      end
    end
  rescue StandardError => ex
    puts "Option parsing failed: #{ex.to_s}"
    exit
  end

  #
  #  Create the object
  #
  worker = Custodian.new( $SERVER )

  #
  #  Are we flushing the queue?
  #
  if ( ENV['FLUSH'] )
    worker.flush_queue!
    exit(0)
  end

  #
  #  Single step?
  #
  if ( ENV['SINGLE'] )
    worker.process_single_job
    exit(0)
  end

  #
  #  Otherwise loop indefinitely
  #
  worker.run!
end