summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-24 12:36:21 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-24 12:36:21 +0000
commit8afe9684545279a824707eb6c3afd070dc5a7cff (patch)
tree068d71789c11b750feb49b453e49ba9ba49281e7
parent1e6891fc422cfc4f8930dd7f1a0b34db28d47b9b (diff)
Added POP3 primitive
-rw-r--r--lib/custodian/protocoltest/pop3.rb103
1 files changed, 103 insertions, 0 deletions
diff --git a/lib/custodian/protocoltest/pop3.rb b/lib/custodian/protocoltest/pop3.rb
new file mode 100644
index 0000000..838d838
--- /dev/null
+++ b/lib/custodian/protocoltest/pop3.rb
@@ -0,0 +1,103 @@
+require 'custodian/protocoltest/tcp'
+
+#
+# The POP-protocol test.
+#
+# This object is instantiated if the parser sees a line such as:
+#
+###
+### foo.vm.bytemark.co.uk must run pop otherwise 'ssh fail'.
+###
+#
+# The specification of the port is optional.
+#
+module Custodian
+
+ module ProtocolTest
+
+ class POP3Test < 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 = 110
+ 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, "+OK" )
+ end
+
+
+
+
+ #
+ # If the test fails then report the error.
+ #
+ def error
+ @error
+ end
+
+
+
+
+ register_test_type "pop"
+ register_test_type "pop3"
+
+
+
+
+ end
+ end
+end