summaryrefslogtreecommitdiff
path: root/lib/custodian/protocoltest/redis.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-12-31 09:53:02 +0000
committerSteve Kemp <steve@steve.org.uk>2012-12-31 09:53:02 +0000
commit5deb2815734c32fde814f985c731417ddba3f759 (patch)
tree9c0c6db284bacf5cadffc9086a65170f2cf6309f /lib/custodian/protocoltest/redis.rb
parent2c143276d380d34677183417a904cb84e276a914 (diff)
Added redis protocol test
Diffstat (limited to 'lib/custodian/protocoltest/redis.rb')
-rw-r--r--lib/custodian/protocoltest/redis.rb101
1 files changed, 101 insertions, 0 deletions
diff --git a/lib/custodian/protocoltest/redis.rb b/lib/custodian/protocoltest/redis.rb
new file mode 100644
index 0000000..e2d032e
--- /dev/null
+++ b/lib/custodian/protocoltest/redis.rb
@@ -0,0 +1,101 @@
+require 'custodian/protocoltest/tcp'
+
+#
+# The Redis-protocol test.
+#
+# This object is instantiated if the parser sees a line such as:
+#
+###
+### foo.vm.bytemark.co.uk must run redis otherwise 'memory database fail'.
+###
+#
+# The specification of the port is optional.
+#
+module Custodian
+
+ module ProtocolTest
+
+ class RedisTest < TCPTest
+
+ #
+ # Constructor
+ #
+ # Ensure we received a port to run the test against.
+ #
+ def initialize( line )
+
+ #
+ # Save the line
+ #
+ @line = line
+
+ #
+ # Save the host
+ #
+ @host = line.split( /\s+/)[0]
+
+
+ #
+ # Is this test inverted?
+ #
+ if ( line =~ /must\s+not\s+run\s+/ )
+ @inverted = true
+ else
+ @inverted = false
+ end
+
+
+ #
+ # Save the port
+ #
+ if ( line =~ /on\s+([0-9]+)/ )
+ @port = $1.dup
+ else
+ @port = 6379
+ end
+ end
+
+
+
+
+ #
+ # Allow this test to be serialized.
+ #
+ def to_s
+ return( @line )
+ end
+
+
+
+
+ #
+ # Run the test.
+ #
+ def run_test
+
+ # reset the error, in case we were previously executed.
+ @error = nil
+
+ run_test_internal( @host, @port )
+ end
+
+
+
+
+ #
+ # If the test fails then report the error.
+ #
+ def error
+ @error
+ end
+
+
+
+
+ register_test_type "redis"
+
+
+
+ end
+ end
+end