mirror of
				https://github.com/capistrano/capistrano
				synced 2023-03-27 23:21:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			240 lines
		
	
	
	
		
			9.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			240 lines
		
	
	
	
		
			9.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require "utils"
 | 
						|
require 'capistrano/logger'
 | 
						|
require 'capistrano/recipes/deploy/strategy/copy'
 | 
						|
require 'stringio'
 | 
						|
 | 
						|
class DeployStrategyCopyTest < Test::Unit::TestCase
 | 
						|
  def setup
 | 
						|
    @config = { :application => "captest",
 | 
						|
                :logger => Capistrano::Logger.new(:output => StringIO.new),
 | 
						|
                :releases_path => "/u/apps/test/releases",
 | 
						|
                :release_path => "/u/apps/test/releases/1234567890",
 | 
						|
                :real_revision => "154" }
 | 
						|
    @source = mock("source")
 | 
						|
    @config.stubs(:source).returns(@source)
 | 
						|
    @strategy = Capistrano::Deploy::Strategy::Copy.new(@config)
 | 
						|
  end
 | 
						|
 | 
						|
  def test_deploy_with_defaults_should_use_tar_gz_and_checkout
 | 
						|
    Dir.expects(:tmpdir).returns("/temp/dir")
 | 
						|
    @source.expects(:checkout).with("154", "/temp/dir/1234567890").returns(:local_checkout)
 | 
						|
    @strategy.expects(:system).with(:local_checkout)
 | 
						|
 | 
						|
    prepare_standard_compress_and_copy!
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_deploy_with_exclusions_should_remove_patterns_from_destination
 | 
						|
    @config[:copy_exclude] = ".git"
 | 
						|
    Dir.expects(:tmpdir).returns("/temp/dir")
 | 
						|
    @source.expects(:checkout).with("154", "/temp/dir/1234567890").returns(:local_checkout)
 | 
						|
    @strategy.expects(:system).with(:local_checkout)
 | 
						|
 | 
						|
    FileUtils.expects(:rm_rf).with("/temp/dir/1234567890/.git")
 | 
						|
    prepare_standard_compress_and_copy!
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_deploy_with_export_should_use_tar_gz_and_export
 | 
						|
    Dir.expects(:tmpdir).returns("/temp/dir")
 | 
						|
    @config[:copy_strategy] = :export
 | 
						|
    @source.expects(:export).with("154", "/temp/dir/1234567890").returns(:local_export)
 | 
						|
    @strategy.expects(:system).with(:local_export)
 | 
						|
 | 
						|
    prepare_standard_compress_and_copy!
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_deploy_with_zip_should_use_zip_and_checkout
 | 
						|
    Dir.expects(:tmpdir).returns("/temp/dir")
 | 
						|
    Dir.expects(:chdir).with("/temp/dir").yields
 | 
						|
    @config[:copy_compression] = :zip
 | 
						|
    @source.expects(:checkout).with("154", "/temp/dir/1234567890").returns(:local_checkout)
 | 
						|
 | 
						|
    @strategy.expects(:system).with(:local_checkout)
 | 
						|
    @strategy.expects(:system).with("zip -qr 1234567890.zip 1234567890")
 | 
						|
    @strategy.expects(:put).with(:mock_file_contents, "/tmp/1234567890.zip")
 | 
						|
    @strategy.expects(:run).with("cd /u/apps/test/releases && unzip -q /tmp/1234567890.zip && rm /tmp/1234567890.zip")
 | 
						|
 | 
						|
    mock_file = mock("file")
 | 
						|
    mock_file.expects(:puts).with("154")
 | 
						|
    File.expects(:open).with("/temp/dir/1234567890/REVISION", "w").yields(mock_file)
 | 
						|
    File.expects(:open).with("/temp/dir/1234567890.zip", "rb").yields(StringIO.new).returns(:mock_file_contents)
 | 
						|
 | 
						|
    FileUtils.expects(:rm).with("/temp/dir/1234567890.zip")
 | 
						|
    FileUtils.expects(:rm_rf).with("/temp/dir/1234567890")
 | 
						|
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_deploy_with_bzip2_should_use_bz2_and_checkout
 | 
						|
    Dir.expects(:tmpdir).returns("/temp/dir")
 | 
						|
    Dir.expects(:chdir).with("/temp/dir").yields
 | 
						|
    @config[:copy_compression] = :bzip2
 | 
						|
    @source.expects(:checkout).with("154", "/temp/dir/1234567890").returns(:local_checkout)
 | 
						|
 | 
						|
    @strategy.expects(:system).with(:local_checkout)
 | 
						|
    @strategy.expects(:system).with("tar cjf 1234567890.tar.bz2 1234567890")
 | 
						|
    @strategy.expects(:put).with(:mock_file_contents, "/tmp/1234567890.tar.bz2")
 | 
						|
    @strategy.expects(:run).with("cd /u/apps/test/releases && tar xjf /tmp/1234567890.tar.bz2 && rm /tmp/1234567890.tar.bz2")
 | 
						|
 | 
						|
    mock_file = mock("file")
 | 
						|
    mock_file.expects(:puts).with("154")
 | 
						|
    File.expects(:open).with("/temp/dir/1234567890/REVISION", "w").yields(mock_file)
 | 
						|
    File.expects(:open).with("/temp/dir/1234567890.tar.bz2", "rb").yields(StringIO.new).returns(:mock_file_contents)
 | 
						|
 | 
						|
    FileUtils.expects(:rm).with("/temp/dir/1234567890.tar.bz2")
 | 
						|
    FileUtils.expects(:rm_rf).with("/temp/dir/1234567890")
 | 
						|
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_deploy_with_custom_copy_dir_should_use_that_as_tmpdir
 | 
						|
    Dir.expects(:tmpdir).never
 | 
						|
    Dir.expects(:chdir).with("/other/path").yields
 | 
						|
    @config[:copy_dir] = "/other/path"
 | 
						|
    @source.expects(:checkout).with("154", "/other/path/1234567890").returns(:local_checkout)
 | 
						|
 | 
						|
    @strategy.expects(:system).with(:local_checkout)
 | 
						|
    @strategy.expects(:system).with("tar czf 1234567890.tar.gz 1234567890")
 | 
						|
    @strategy.expects(:put).with(:mock_file_contents, "/tmp/1234567890.tar.gz")
 | 
						|
    @strategy.expects(:run).with("cd /u/apps/test/releases && tar xzf /tmp/1234567890.tar.gz && rm /tmp/1234567890.tar.gz")
 | 
						|
 | 
						|
    mock_file = mock("file")
 | 
						|
    mock_file.expects(:puts).with("154")
 | 
						|
    File.expects(:open).with("/other/path/1234567890/REVISION", "w").yields(mock_file)
 | 
						|
    File.expects(:open).with("/other/path/1234567890.tar.gz", "rb").yields(StringIO.new).returns(:mock_file_contents)
 | 
						|
 | 
						|
    FileUtils.expects(:rm).with("/other/path/1234567890.tar.gz")
 | 
						|
    FileUtils.expects(:rm_rf).with("/other/path/1234567890")
 | 
						|
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_deploy_with_copy_remote_dir_should_copy_to_that_dir
 | 
						|
    @config[:copy_remote_dir] = "/somewhere/else"
 | 
						|
    Dir.expects(:tmpdir).returns("/temp/dir")
 | 
						|
    Dir.expects(:chdir).yields
 | 
						|
    @source.expects(:checkout).returns(:local_checkout)
 | 
						|
 | 
						|
    @strategy.expects(:system).with(:local_checkout)
 | 
						|
    @strategy.expects(:system).with("tar czf 1234567890.tar.gz 1234567890")
 | 
						|
    @strategy.expects(:put).with(:mock_file_contents, "/somewhere/else/1234567890.tar.gz")
 | 
						|
    @strategy.expects(:run).with("cd /u/apps/test/releases && tar xzf /somewhere/else/1234567890.tar.gz && rm /somewhere/else/1234567890.tar.gz")
 | 
						|
 | 
						|
    mock_file = mock("file")
 | 
						|
    mock_file.expects(:puts).with("154")
 | 
						|
    File.expects(:open).with("/temp/dir/1234567890/REVISION", "w").yields(mock_file)
 | 
						|
    File.expects(:open).with("/temp/dir/1234567890.tar.gz", "rb").yields(StringIO.new).returns(:mock_file_contents)
 | 
						|
 | 
						|
    FileUtils.expects(:rm).with("/temp/dir/1234567890.tar.gz")
 | 
						|
    FileUtils.expects(:rm_rf).with("/temp/dir/1234567890")
 | 
						|
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_with_copy_cache_should_checkout_to_cache_if_cache_does_not_exist_and_then_copy
 | 
						|
    @config[:copy_cache] = true
 | 
						|
 | 
						|
    Dir.stubs(:tmpdir).returns("/temp/dir")
 | 
						|
    File.expects(:exists?).with("/temp/dir/captest").returns(false)
 | 
						|
    Dir.expects(:chdir).with("/temp/dir/captest").yields
 | 
						|
 | 
						|
    @source.expects(:checkout).with("154", "/temp/dir/captest").returns(:local_checkout)
 | 
						|
    @strategy.expects(:system).with(:local_checkout)
 | 
						|
 | 
						|
    FileUtils.expects(:mkdir_p).with("/temp/dir/1234567890")
 | 
						|
 | 
						|
    prepare_directory_tree!("/temp/dir/captest")
 | 
						|
 | 
						|
    prepare_standard_compress_and_copy!
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_with_copy_cache_should_update_cache_if_cache_exists_and_then_copy
 | 
						|
    @config[:copy_cache] = true
 | 
						|
 | 
						|
    Dir.stubs(:tmpdir).returns("/temp/dir")
 | 
						|
    File.expects(:exists?).with("/temp/dir/captest").returns(true)
 | 
						|
    Dir.expects(:chdir).with("/temp/dir/captest").yields
 | 
						|
 | 
						|
    @source.expects(:sync).with("154", "/temp/dir/captest").returns(:local_sync)
 | 
						|
    @strategy.expects(:system).with(:local_sync)
 | 
						|
 | 
						|
    FileUtils.expects(:mkdir_p).with("/temp/dir/1234567890")
 | 
						|
 | 
						|
    prepare_directory_tree!("/temp/dir/captest")
 | 
						|
 | 
						|
    prepare_standard_compress_and_copy!
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_with_copy_cache_with_custom_cache_dir_should_use_specified_cache_dir
 | 
						|
    @config[:copy_cache] = "/u/caches/captest"
 | 
						|
 | 
						|
    Dir.stubs(:tmpdir).returns("/temp/dir")
 | 
						|
    File.expects(:exists?).with("/u/caches/captest").returns(true)
 | 
						|
    Dir.expects(:chdir).with("/u/caches/captest").yields
 | 
						|
 | 
						|
    @source.expects(:sync).with("154", "/u/caches/captest").returns(:local_sync)
 | 
						|
    @strategy.expects(:system).with(:local_sync)
 | 
						|
 | 
						|
    FileUtils.expects(:mkdir_p).with("/temp/dir/1234567890")
 | 
						|
 | 
						|
    prepare_directory_tree!("/u/caches/captest")
 | 
						|
 | 
						|
    prepare_standard_compress_and_copy!
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  def test_with_copy_cache_with_excludes_should_not_copy_excluded_files
 | 
						|
    @config[:copy_cache] = true
 | 
						|
    @config[:copy_exclude] = "*/bar.txt"
 | 
						|
 | 
						|
    Dir.stubs(:tmpdir).returns("/temp/dir")
 | 
						|
    File.expects(:exists?).with("/temp/dir/captest").returns(true)
 | 
						|
    Dir.expects(:chdir).with("/temp/dir/captest").yields
 | 
						|
 | 
						|
    @source.expects(:sync).with("154", "/temp/dir/captest").returns(:local_sync)
 | 
						|
    @strategy.expects(:system).with(:local_sync)
 | 
						|
 | 
						|
    FileUtils.expects(:mkdir_p).with("/temp/dir/1234567890")
 | 
						|
 | 
						|
    prepare_directory_tree!("/temp/dir/captest", true)
 | 
						|
 | 
						|
    prepare_standard_compress_and_copy!
 | 
						|
    @strategy.deploy!
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
    def prepare_directory_tree!(cache, exclude=false)
 | 
						|
      Dir.expects(:glob).with("*", File::FNM_DOTMATCH).returns([".", "..", "app", "foo.txt"])
 | 
						|
      File.expects(:directory?).with("app").returns(true)
 | 
						|
      FileUtils.expects(:mkdir).with("/temp/dir/1234567890/app")
 | 
						|
      File.expects(:directory?).with("foo.txt").returns(false)
 | 
						|
      FileUtils.expects(:ln).with("#{cache}/foo.txt", "/temp/dir/1234567890/foo.txt")
 | 
						|
 | 
						|
      Dir.expects(:glob).with("app/*", File::FNM_DOTMATCH).returns(["app/.", "app/..", "app/bar.txt"])
 | 
						|
 | 
						|
      unless exclude
 | 
						|
        File.expects(:directory?).with("app/bar.txt").returns(false)
 | 
						|
        FileUtils.expects(:ln).with("#{cache}/app/bar.txt", "/temp/dir/1234567890/app/bar.txt")
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    def prepare_standard_compress_and_copy!
 | 
						|
      Dir.expects(:chdir).with("/temp/dir").yields
 | 
						|
      @strategy.expects(:system).with("tar czf 1234567890.tar.gz 1234567890")
 | 
						|
      @strategy.expects(:put).with(:mock_file_contents, "/tmp/1234567890.tar.gz")
 | 
						|
      @strategy.expects(:run).with("cd /u/apps/test/releases && tar xzf /tmp/1234567890.tar.gz && rm /tmp/1234567890.tar.gz")
 | 
						|
 | 
						|
      mock_file = mock("file")
 | 
						|
      mock_file.expects(:puts).with("154")
 | 
						|
      File.expects(:open).with("/temp/dir/1234567890/REVISION", "w").yields(mock_file)
 | 
						|
      File.expects(:open).with("/temp/dir/1234567890.tar.gz", "rb").yields(StringIO.new).returns(:mock_file_contents)
 | 
						|
 | 
						|
      FileUtils.expects(:rm).with("/temp/dir/1234567890.tar.gz")
 | 
						|
      FileUtils.expects(:rm_rf).with("/temp/dir/1234567890")
 | 
						|
    end
 | 
						|
end
 |