From 72f50e65ce95a27cb08373256ddd316ba621064e Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Wed, 17 Aug 2005 10:13:25 +0000 Subject: Added CVS module for SwitchTower (very, very experimental!) git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2027 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- switchtower/test/scm/cvs_test.rb | 159 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 switchtower/test/scm/cvs_test.rb (limited to 'switchtower/test/scm') diff --git a/switchtower/test/scm/cvs_test.rb b/switchtower/test/scm/cvs_test.rb new file mode 100644 index 0000000000..3df64cce0e --- /dev/null +++ b/switchtower/test/scm/cvs_test.rb @@ -0,0 +1,159 @@ +$:.unshift File.dirname(__FILE__) + "/../../lib" + +require File.dirname(__FILE__) + "/../utils" +require 'test/unit' +require 'switchtower/scm/cvs' + +class ScmCvsTest < Test::Unit::TestCase + class CvsTest < SwitchTower::SCM::Cvs + attr_accessor :story + attr_reader :last_path + + def cvs_log(path) + @last_path = path + story.shift + end + end + + class MockChannel + attr_reader :sent_data + + def send_data(data) + @sent_data ||= [] + @sent_data << data + end + + def [](name) + "value" + end + end + + class MockActor + attr_reader :command + attr_reader :channels + attr_accessor :story + + def initialize(config) + @config = config + end + + def run(command) + @command = command + @channels ||= [] + @channels << MockChannel.new + story.each { |stream, line| yield @channels.last, stream, line } + end + + def method_missing(sym, *args) + @config.send(sym, *args) + end + end + + def setup + @config = MockConfiguration.new + @config[:repository] = ":ext:joetester@rubyforge.org:/hello/world" + @config[:local] = "/hello/world" + @config[:cvs] = "/path/to/cvs" + @config[:password] = "chocolatebrownies" + @scm = CvsTest.new(@config) + @actor = MockActor.new(@config) + @log_msg = <