samhendley-god 0.7.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. data/History.txt +293 -0
  2. data/Manifest.txt +114 -0
  3. data/README.txt +60 -0
  4. data/Rakefile +35 -0
  5. data/bin/god +128 -0
  6. data/examples/events.god +84 -0
  7. data/examples/gravatar.god +54 -0
  8. data/examples/single.god +66 -0
  9. data/ext/god/extconf.rb +55 -0
  10. data/ext/god/kqueue_handler.c +123 -0
  11. data/ext/god/netlink_handler.c +167 -0
  12. data/init/god +42 -0
  13. data/lib/god.rb +667 -0
  14. data/lib/god/behavior.rb +52 -0
  15. data/lib/god/behaviors/clean_pid_file.rb +21 -0
  16. data/lib/god/behaviors/clean_unix_socket.rb +21 -0
  17. data/lib/god/behaviors/notify_when_flapping.rb +51 -0
  18. data/lib/god/cli/command.rb +229 -0
  19. data/lib/god/cli/run.rb +176 -0
  20. data/lib/god/cli/version.rb +23 -0
  21. data/lib/god/condition.rb +96 -0
  22. data/lib/god/conditions/always.rb +23 -0
  23. data/lib/god/conditions/complex.rb +86 -0
  24. data/lib/god/conditions/cpu_usage.rb +80 -0
  25. data/lib/god/conditions/degrading_lambda.rb +52 -0
  26. data/lib/god/conditions/disk_usage.rb +27 -0
  27. data/lib/god/conditions/file_mtime.rb +28 -0
  28. data/lib/god/conditions/flapping.rb +128 -0
  29. data/lib/god/conditions/http_response_code.rb +168 -0
  30. data/lib/god/conditions/lambda.rb +25 -0
  31. data/lib/god/conditions/memory_usage.rb +82 -0
  32. data/lib/god/conditions/process_exits.rb +72 -0
  33. data/lib/god/conditions/process_running.rb +74 -0
  34. data/lib/god/conditions/tries.rb +44 -0
  35. data/lib/god/configurable.rb +57 -0
  36. data/lib/god/contact.rb +106 -0
  37. data/lib/god/contacts/campfire.rb +82 -0
  38. data/lib/god/contacts/email.rb +95 -0
  39. data/lib/god/contacts/jabber.rb +65 -0
  40. data/lib/god/contacts/twitter.rb +39 -0
  41. data/lib/god/contacts/webhook.rb +47 -0
  42. data/lib/god/dependency_graph.rb +41 -0
  43. data/lib/god/diagnostics.rb +37 -0
  44. data/lib/god/driver.rb +206 -0
  45. data/lib/god/errors.rb +24 -0
  46. data/lib/god/event_handler.rb +111 -0
  47. data/lib/god/event_handlers/dummy_handler.rb +13 -0
  48. data/lib/god/event_handlers/kqueue_handler.rb +17 -0
  49. data/lib/god/event_handlers/netlink_handler.rb +13 -0
  50. data/lib/god/logger.rb +120 -0
  51. data/lib/god/metric.rb +59 -0
  52. data/lib/god/process.rb +342 -0
  53. data/lib/god/registry.rb +32 -0
  54. data/lib/god/simple_logger.rb +53 -0
  55. data/lib/god/socket.rb +96 -0
  56. data/lib/god/sugar.rb +47 -0
  57. data/lib/god/system/portable_poller.rb +42 -0
  58. data/lib/god/system/process.rb +42 -0
  59. data/lib/god/system/slash_proc_poller.rb +92 -0
  60. data/lib/god/task.rb +491 -0
  61. data/lib/god/timeline.rb +25 -0
  62. data/lib/god/trigger.rb +43 -0
  63. data/lib/god/watch.rb +184 -0
  64. data/test/configs/child_events/child_events.god +44 -0
  65. data/test/configs/child_events/simple_server.rb +3 -0
  66. data/test/configs/child_polls/child_polls.god +37 -0
  67. data/test/configs/child_polls/simple_server.rb +12 -0
  68. data/test/configs/complex/complex.god +59 -0
  69. data/test/configs/complex/simple_server.rb +3 -0
  70. data/test/configs/contact/contact.god +84 -0
  71. data/test/configs/contact/simple_server.rb +3 -0
  72. data/test/configs/daemon_events/daemon_events.god +37 -0
  73. data/test/configs/daemon_events/simple_server.rb +8 -0
  74. data/test/configs/daemon_events/simple_server_stop.rb +11 -0
  75. data/test/configs/daemon_polls/daemon_polls.god +17 -0
  76. data/test/configs/daemon_polls/simple_server.rb +6 -0
  77. data/test/configs/degrading_lambda/degrading_lambda.god +31 -0
  78. data/test/configs/degrading_lambda/tcp_server.rb +15 -0
  79. data/test/configs/matias/matias.god +50 -0
  80. data/test/configs/real.rb +59 -0
  81. data/test/configs/running_load/running_load.god +16 -0
  82. data/test/configs/stress/simple_server.rb +3 -0
  83. data/test/configs/stress/stress.god +15 -0
  84. data/test/configs/task/logs/.placeholder +0 -0
  85. data/test/configs/task/task.god +26 -0
  86. data/test/configs/test.rb +61 -0
  87. data/test/helper.rb +151 -0
  88. data/test/suite.rb +6 -0
  89. data/test/test_behavior.rb +21 -0
  90. data/test/test_campfire.rb +41 -0
  91. data/test/test_condition.rb +50 -0
  92. data/test/test_conditions_disk_usage.rb +56 -0
  93. data/test/test_conditions_http_response_code.rb +109 -0
  94. data/test/test_conditions_process_running.rb +44 -0
  95. data/test/test_conditions_tries.rb +67 -0
  96. data/test/test_contact.rb +109 -0
  97. data/test/test_dependency_graph.rb +62 -0
  98. data/test/test_driver.rb +11 -0
  99. data/test/test_email.rb +45 -0
  100. data/test/test_event_handler.rb +80 -0
  101. data/test/test_god.rb +598 -0
  102. data/test/test_handlers_kqueue_handler.rb +16 -0
  103. data/test/test_logger.rb +63 -0
  104. data/test/test_metric.rb +72 -0
  105. data/test/test_process.rb +246 -0
  106. data/test/test_registry.rb +15 -0
  107. data/test/test_socket.rb +42 -0
  108. data/test/test_sugar.rb +42 -0
  109. data/test/test_system_portable_poller.rb +17 -0
  110. data/test/test_system_process.rb +30 -0
  111. data/test/test_task.rb +262 -0
  112. data/test/test_timeline.rb +37 -0
  113. data/test/test_trigger.rb +59 -0
  114. data/test/test_watch.rb +279 -0
  115. metadata +193 -0
@@ -0,0 +1,279 @@
1
+ require File.dirname(__FILE__) + '/helper'
2
+
3
+ class TestWatch < Test::Unit::TestCase
4
+ def setup
5
+ God.internal_init
6
+ @watch = Watch.new
7
+ @watch.name = 'foo'
8
+ @watch.start = lambda { }
9
+ @watch.stop = lambda { }
10
+ @watch.prepare
11
+ end
12
+
13
+ # new
14
+
15
+ def test_new_should_have_no_behaviors
16
+ assert_equal [], @watch.behaviors
17
+ end
18
+
19
+ def test_new_should_have_no_metrics
20
+ Watch::VALID_STATES.each do |state|
21
+ assert_equal [], @watch.metrics[state]
22
+ end
23
+ end
24
+
25
+ def test_new_should_have_standard_attributes
26
+ assert_nothing_raised do
27
+ @watch.name = 'foo'
28
+ @watch.start = 'start'
29
+ @watch.stop = 'stop'
30
+ @watch.restart = 'restart'
31
+ @watch.interval = 30
32
+ @watch.grace = 5
33
+ end
34
+ end
35
+
36
+ def test_new_should_have_unmonitored_state
37
+ assert_equal :unmonitored, @watch.state
38
+ end
39
+
40
+ # valid?
41
+
42
+ def test_valid?
43
+ God::Process.any_instance.expects(:valid?)
44
+ @watch.valid?
45
+ end
46
+
47
+ # behavior
48
+
49
+ def test_behavior_should_record_behavior
50
+ beh = nil
51
+ @watch.behavior(:fake_behavior) { |b| beh = b }
52
+ assert_equal 1, @watch.behaviors.size
53
+ assert_equal beh, @watch.behaviors.first
54
+ end
55
+
56
+ def test_invalid_behavior_should_abort
57
+ assert_abort do
58
+ @watch.behavior(:invalid)
59
+ end
60
+ end
61
+
62
+ # transition
63
+
64
+ def test_transition_should_abort_on_invalid_start_state
65
+ assert_abort do
66
+ @watch.transition(:foo, :bar)
67
+ end
68
+ end
69
+
70
+ def test_transition_should_accept_all_valid_start_states
71
+ assert_nothing_raised do
72
+ Watch::VALID_STATES.each do |state|
73
+ @watch.transition(state, :bar) { }
74
+ end
75
+ end
76
+ end
77
+
78
+ def test_transition_should_create_and_record_a_metric_for_the_given_start_state
79
+ @watch.transition(:init, :start) { }
80
+ assert_equal 1, @watch.metrics[:init].size
81
+ end
82
+
83
+ # lifecycle
84
+
85
+ def test_lifecycle_should_create_and_record_a_metric_for_nil_start_state
86
+ @watch.lifecycle { }
87
+ assert_equal 1, @watch.metrics[nil].size
88
+ end
89
+
90
+ # start_if
91
+
92
+ def test_start_if_should_place_a_metric_on_up_state
93
+ @watch.start_if { }
94
+ assert_equal 1, @watch.metrics[:up].size
95
+ end
96
+
97
+ # restart_if
98
+
99
+ def test_restart_if_should_place_a_metric_on_up_state
100
+ @watch.restart_if { }
101
+ assert_equal 1, @watch.metrics[:up].size
102
+ end
103
+
104
+ # monitor
105
+
106
+ def test_monitor_should_move_to_init_if_available
107
+ @watch.instance_eval do
108
+ transition(:init, :up) { }
109
+ end
110
+ @watch.expects(:move).with(:init)
111
+ @watch.monitor
112
+ end
113
+
114
+ def test_monitor_should_move_to_up_if_no_init_available
115
+ @watch.expects(:move).with(:up)
116
+ @watch.monitor
117
+ end
118
+
119
+ # unmonitor
120
+
121
+ def test_unmonitor_should_move_to_nil
122
+ @watch.expects(:move).with(:unmonitored)
123
+ @watch.unmonitor
124
+ end
125
+
126
+ # move
127
+
128
+ def test_move_should_not_clean_up_if_from_state_is_nil
129
+ Thread.current.stubs(:==).returns(true)
130
+ @watch.driver.expects(:message).never
131
+
132
+ metric = nil
133
+
134
+ @watch.instance_eval do
135
+ transition(:init, :up) do |on|
136
+ metric = on
137
+ on.condition(:process_running) do |c|
138
+ c.running = true
139
+ c.interval = 10
140
+ end
141
+ end
142
+ end
143
+
144
+ metric.expects(:disable).never
145
+
146
+ no_stdout { @watch.move(:init) }
147
+ end
148
+
149
+ def test_move_should_clean_up_from_state_if_not_nil
150
+ Thread.current.stubs(:==).returns(true)
151
+ @watch.driver.expects(:message).never
152
+
153
+ metric = nil
154
+
155
+ @watch.instance_eval do
156
+ transition(:init, :up) do |on|
157
+ metric = on
158
+ on.condition(:process_running) do |c|
159
+ c.running = true
160
+ c.interval = 10
161
+ end
162
+ end
163
+ end
164
+
165
+ no_stdout { @watch.move(:init) }
166
+
167
+ metric.expects(:disable)
168
+
169
+ no_stdout { @watch.move(:up) }
170
+ end
171
+
172
+ def test_move_should_call_action
173
+ Thread.current.stubs(:==).returns(true)
174
+ @watch.driver.expects(:message).never
175
+
176
+ @watch.expects(:action).with(:start)
177
+
178
+ no_stdout { @watch.move(:start) }
179
+ end
180
+
181
+ def test_move_should_move_to_up_state_if_no_start_or_restart_metric
182
+ Thread.current.stubs(:==).returns(true)
183
+ @watch.driver.expects(:message).never
184
+
185
+ [:start, :restart].each do |state|
186
+ @watch.expects(:action)
187
+ no_stdout { @watch.move(state) }
188
+ assert_equal :up, @watch.state
189
+ end
190
+ end
191
+
192
+ def test_move_should_enable_destination_metric
193
+ Thread.current.stubs(:==).returns(true)
194
+ @watch.driver.expects(:message).never
195
+
196
+ metric = nil
197
+
198
+ @watch.instance_eval do
199
+ transition(:init, :up) do |on|
200
+ metric = on
201
+ on.condition(:process_running) do |c|
202
+ c.running = true
203
+ c.interval = 10
204
+ end
205
+ end
206
+ end
207
+
208
+ metric.expects(:enable)
209
+
210
+ no_stdout { @watch.move(:init) }
211
+ end
212
+
213
+ # action
214
+
215
+ def test_action_should_pass_start_and_stop_actions_to_call_action
216
+ Thread.current.stubs(:==).returns(true)
217
+ @watch.driver.expects(:message).never
218
+
219
+ c = Conditions::FakePollCondition.new
220
+ [:start, :stop].each do |cmd|
221
+ @watch.expects(:call_action).with(c, cmd)
222
+ @watch.action(cmd, c)
223
+ end
224
+ end
225
+
226
+ def test_action_should_do_stop_then_start_if_no_restart_command
227
+ Thread.current.stubs(:==).returns(true)
228
+ @watch.driver.expects(:message).never
229
+
230
+ c = Conditions::FakePollCondition.new
231
+ @watch.expects(:call_action).with(c, :stop)
232
+ @watch.expects(:call_action).with(c, :start)
233
+ @watch.action(:restart, c)
234
+ end
235
+
236
+ def test_action_should_restart_to_call_action_if_present
237
+ Thread.current.stubs(:==).returns(true)
238
+ @watch.driver.expects(:message).never
239
+
240
+ @watch.restart = lambda { }
241
+ c = Conditions::FakePollCondition.new
242
+ @watch.expects(:call_action).with(c, :restart)
243
+ @watch.action(:restart, c)
244
+ end
245
+
246
+ # call_action
247
+
248
+ def test_call_action
249
+ c = Conditions::FakePollCondition.new
250
+ God::Process.any_instance.expects(:call_action).with(:start)
251
+ no_stdout { @watch.call_action(c, :start) }
252
+ end
253
+
254
+ def test_call_action_should_call_before_start_when_behavior_has_that
255
+ @watch.behavior(:fake_behavior)
256
+ c = Conditions::FakePollCondition.new
257
+ God::Process.any_instance.expects(:call_action).with(:start)
258
+ Behaviors::FakeBehavior.any_instance.expects(:before_start)
259
+ no_stdout { @watch.call_action(c, :start) }
260
+ end
261
+
262
+ def test_call_action_should_call_after_start_when_behavior_has_that
263
+ @watch.behavior(:fake_behavior)
264
+ c = Conditions::FakePollCondition.new
265
+ God::Process.any_instance.expects(:call_action).with(:start)
266
+ Behaviors::FakeBehavior.any_instance.expects(:after_start)
267
+ no_stdout { @watch.call_action(c, :start) }
268
+ end
269
+
270
+ # canonical_hash_form
271
+
272
+ def test_canonical_hash_form_should_convert_symbol_to_hash
273
+ assert_equal({true => :foo}, @watch.canonical_hash_form(:foo))
274
+ end
275
+
276
+ def test_canonical_hash_form_should_convert_hash_to_hash
277
+ assert_equal({true => :foo}, @watch.canonical_hash_form(true => :foo))
278
+ end
279
+ end
metadata ADDED
@@ -0,0 +1,193 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: samhendley-god
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.13
5
+ platform: ruby
6
+ authors:
7
+ - Tom Preston-Werner
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-03-09 00:00:00 -07:00
13
+ default_executable: god
14
+ dependencies: []
15
+
16
+ description: God is an easy to configure, easy to extend monitoring framework written in Ruby.
17
+ email: tom@rubyisawesome.com
18
+ executables:
19
+ - god
20
+ extensions:
21
+ - ext/god/extconf.rb
22
+ extra_rdoc_files:
23
+ - History.txt
24
+ - Manifest.txt
25
+ - README.txt
26
+ files:
27
+ - History.txt
28
+ - Manifest.txt
29
+ - README.txt
30
+ - Rakefile
31
+ - bin/god
32
+ - examples/events.god
33
+ - examples/gravatar.god
34
+ - examples/single.god
35
+ - ext/god/extconf.rb
36
+ - ext/god/kqueue_handler.c
37
+ - ext/god/netlink_handler.c
38
+ - init/god
39
+ - lib/god.rb
40
+ - lib/god/behavior.rb
41
+ - lib/god/behaviors/clean_pid_file.rb
42
+ - lib/god/behaviors/clean_unix_socket.rb
43
+ - lib/god/behaviors/notify_when_flapping.rb
44
+ - lib/god/cli/command.rb
45
+ - lib/god/cli/run.rb
46
+ - lib/god/cli/version.rb
47
+ - lib/god/condition.rb
48
+ - lib/god/conditions/always.rb
49
+ - lib/god/conditions/complex.rb
50
+ - lib/god/conditions/cpu_usage.rb
51
+ - lib/god/conditions/degrading_lambda.rb
52
+ - lib/god/conditions/disk_usage.rb
53
+ - lib/god/conditions/file_mtime.rb
54
+ - lib/god/conditions/flapping.rb
55
+ - lib/god/conditions/http_response_code.rb
56
+ - lib/god/conditions/lambda.rb
57
+ - lib/god/conditions/memory_usage.rb
58
+ - lib/god/conditions/process_exits.rb
59
+ - lib/god/conditions/process_running.rb
60
+ - lib/god/conditions/tries.rb
61
+ - lib/god/configurable.rb
62
+ - lib/god/contact.rb
63
+ - lib/god/contacts/campfire.rb
64
+ - lib/god/contacts/email.rb
65
+ - lib/god/contacts/jabber.rb
66
+ - lib/god/contacts/twitter.rb
67
+ - lib/god/contacts/webhook.rb
68
+ - lib/god/dependency_graph.rb
69
+ - lib/god/diagnostics.rb
70
+ - lib/god/driver.rb
71
+ - lib/god/errors.rb
72
+ - lib/god/event_handler.rb
73
+ - lib/god/event_handlers/dummy_handler.rb
74
+ - lib/god/event_handlers/kqueue_handler.rb
75
+ - lib/god/event_handlers/netlink_handler.rb
76
+ - lib/god/logger.rb
77
+ - lib/god/metric.rb
78
+ - lib/god/process.rb
79
+ - lib/god/registry.rb
80
+ - lib/god/simple_logger.rb
81
+ - lib/god/socket.rb
82
+ - lib/god/sugar.rb
83
+ - lib/god/system/portable_poller.rb
84
+ - lib/god/system/process.rb
85
+ - lib/god/system/slash_proc_poller.rb
86
+ - lib/god/task.rb
87
+ - lib/god/timeline.rb
88
+ - lib/god/trigger.rb
89
+ - lib/god/watch.rb
90
+ - test/configs/child_events/child_events.god
91
+ - test/configs/child_events/simple_server.rb
92
+ - test/configs/child_polls/child_polls.god
93
+ - test/configs/child_polls/simple_server.rb
94
+ - test/configs/complex/complex.god
95
+ - test/configs/complex/simple_server.rb
96
+ - test/configs/contact/contact.god
97
+ - test/configs/contact/simple_server.rb
98
+ - test/configs/daemon_events/daemon_events.god
99
+ - test/configs/daemon_events/simple_server.rb
100
+ - test/configs/daemon_events/simple_server_stop.rb
101
+ - test/configs/daemon_polls/daemon_polls.god
102
+ - test/configs/daemon_polls/simple_server.rb
103
+ - test/configs/degrading_lambda/degrading_lambda.god
104
+ - test/configs/degrading_lambda/tcp_server.rb
105
+ - test/configs/matias/matias.god
106
+ - test/configs/real.rb
107
+ - test/configs/running_load/running_load.god
108
+ - test/configs/stress/simple_server.rb
109
+ - test/configs/stress/stress.god
110
+ - test/configs/task/logs/.placeholder
111
+ - test/configs/task/task.god
112
+ - test/configs/test.rb
113
+ - test/helper.rb
114
+ - test/suite.rb
115
+ - test/test_behavior.rb
116
+ - test/test_campfire.rb
117
+ - test/test_condition.rb
118
+ - test/test_conditions_disk_usage.rb
119
+ - test/test_conditions_http_response_code.rb
120
+ - test/test_conditions_process_running.rb
121
+ - test/test_conditions_tries.rb
122
+ - test/test_contact.rb
123
+ - test/test_dependency_graph.rb
124
+ - test/test_driver.rb
125
+ - test/test_email.rb
126
+ - test/test_event_handler.rb
127
+ - test/test_god.rb
128
+ - test/test_handlers_kqueue_handler.rb
129
+ - test/test_logger.rb
130
+ - test/test_metric.rb
131
+ - test/test_process.rb
132
+ - test/test_registry.rb
133
+ - test/test_socket.rb
134
+ - test/test_sugar.rb
135
+ - test/test_system_portable_poller.rb
136
+ - test/test_system_process.rb
137
+ - test/test_task.rb
138
+ - test/test_timeline.rb
139
+ - test/test_trigger.rb
140
+ - test/test_watch.rb
141
+ has_rdoc: true
142
+ homepage: http://god.rubyforge.org/
143
+ post_install_message:
144
+ rdoc_options:
145
+ - --main
146
+ - README.txt
147
+ require_paths:
148
+ - lib
149
+ - ext
150
+ required_ruby_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: "0"
155
+ version:
156
+ required_rubygems_version: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - ">="
159
+ - !ruby/object:Gem::Version
160
+ version: "0"
161
+ version:
162
+ requirements: []
163
+
164
+ rubyforge_project: god
165
+ rubygems_version: 1.2.0
166
+ signing_key:
167
+ specification_version: 2
168
+ summary: Like monit, only awesome
169
+ test_files:
170
+ - test/test_process.rb
171
+ - test/test_watch.rb
172
+ - test/test_system_portable_poller.rb
173
+ - test/test_conditions_tries.rb
174
+ - test/test_task.rb
175
+ - test/test_condition.rb
176
+ - test/test_timeline.rb
177
+ - test/test_logger.rb
178
+ - test/test_conditions_process_running.rb
179
+ - test/test_handlers_kqueue_handler.rb
180
+ - test/test_conditions_disk_usage.rb
181
+ - test/test_event_handler.rb
182
+ - test/test_driver.rb
183
+ - test/test_dependency_graph.rb
184
+ - test/test_metric.rb
185
+ - test/test_registry.rb
186
+ - test/test_behavior.rb
187
+ - test/test_socket.rb
188
+ - test/test_sugar.rb
189
+ - test/test_trigger.rb
190
+ - test/test_conditions_http_response_code.rb
191
+ - test/test_god.rb
192
+ - test/test_system_process.rb
193
+ - test/test_contact.rb