From b6043eb5abc3b54d48ef1ed41f65ae71d427c588 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Thu, 22 Nov 2012 06:49:21 +0000 Subject: Moved tests into a namespace. --- lib/custodian/protocoltest/smtp.rb | 129 +++++++++++++++++++------------------ 1 file changed, 67 insertions(+), 62 deletions(-) (limited to 'lib/custodian/protocoltest/smtp.rb') diff --git a/lib/custodian/protocoltest/smtp.rb b/lib/custodian/protocoltest/smtp.rb index 374db6c..08912f1 100644 --- a/lib/custodian/protocoltest/smtp.rb +++ b/lib/custodian/protocoltest/smtp.rb @@ -12,105 +12,110 @@ require 'custodian/protocoltest/tcp' # # The specification of the port is optional and defaults to 25. # -class SMTPTest < TCPTest +module Custodian + module ProtocolTest + class SMTPTest < TCPTest - # - # The line from which we were constructed. - # - attr_reader :line + # + # The line from which we were constructed. + # + attr_reader :line - # - # The host to test against. - # - attr_reader :host + # + # The host to test against. + # + attr_reader :host - # - # The port to connect to. - # - attr_reader :port + # + # The port to connect to. + # + attr_reader :port - # - # Constructor - # - def initialize( line ) - # - # Save the line. - # - @line = line + # + # Constructor + # + def initialize( line ) - # - # Save the host - # - @host = line.split( /\s+/)[0] + # + # Save the line. + # + @line = line - # - # Save the port - # - if ( line =~ /on\s+([0-9]+)/ ) - @port = $1.dup - else - @port = 25 - end - end + # + # Save the host + # + @host = line.split( /\s+/)[0] + # + # Save the port + # + if ( line =~ /on\s+([0-9]+)/ ) + @port = $1.dup + else + @port = 25 + end + end - # - # Helper for development. - # - def to_s - "smtp-test of #{@host}:#{@port}." - end + # + # Helper for development. + # + def to_s + "smtp-test of #{@host}:#{@port}." + end - # - # Convert this class to JSON such that it may be serialized. - # - def to_json - hash = { :line => @line } - hash.to_json - end + # + # Convert this class to JSON such that it may be serialized. + # + def to_json + hash = { :line => @line } + hash.to_json + end - # - # Run the TCP-protocol test. - # - def run_test - # reset the error, in case we were previously executed. - @error = nil + # + # Run the TCP-protocol test. + # + def run_test - run_test_internal( @host, @port, "SMTP" ) - end + # reset the error, in case we were previously executed. + @error = nil + run_test_internal( @host, @port, "SMTP" ) + end - # - # If the test fails then report the error. - # - def error - @error - end + + # + # If the test fails then report the error. + # + def error + @error + end - register_test_type "smtp" + register_test_type "smtp" + end + end end -- cgit v1.2.1