Sha256: 9a3d58c88ae293f0c51feb9a7997795b903d54da92e266981a0477ae36329d41

Contents?: true

Size: 1.92 KB

Versions: 1

Compression:

Stored size: 1.92 KB

Contents

require 'fileutils'

module PkgForge
  ##
  # Add test methods to Forge
  class Forge
    attr_writer :test_block

    Contract None => Proc
    def test_block
      @test_block ||= proc { raise 'No test block provided' }
    end

    Contract None => nil
    def test!
      tester = PkgForge::DSL::Test.new(self)
      tester.instance_eval(&test_block)
    end

    Contract Or[String, Array], Or[HashOf[String => String], {}, nil] => nil
    def test_run(cmd, env = {})
      cmd.unshift('/usr/bin/env') if cmd.is_a? Array
      cmd.prepend('/usr/bin/env ') if cmd.is_a? String
      env['PATH'] ||= './usr/bin'
      lib_override do
        Dir.chdir(tmpdir(:release)) do
          run_local(cmd, env)
        end
      end
    end

    private

    Contract None => String
    def lib_path_file
      '/etc/ld-musl-x86_64.path'
    end

    Contract Func[None => nil] => nil
    def lib_override
      old_lib_paths = File.read(lib_path_file) if File.exist?(lib_path_file)
      puts "Setting library path: #{ld_library_path}"
      File.open(lib_path_file, 'w') { |fh| fh << ld_library_path }
      yield
    ensure
      reset_lib_path_file(old_lib_paths)
    end

    Contract Maybe[String] => nil
    def reset_lib_path_file(old_lib_paths)
      if old_lib_paths
        File.open(lib_path_file, 'w') { |fh| fh << old_lib_paths }
      else
        File.rm(lib_path_file)
      end
      nil
    end

    Contract None => String
    def ld_library_path
      deps.keys.map { |x| "#{dep(x)}/usr/lib" }.join(':')
    end
  end

  module DSL
    ##
    # Add test methods to Forge DSL
    class Forge
      Contract Func[None => nil] => nil
      def test(&block)
        @forge.test_block = block
        nil
      end
    end

    ##
    # Add test methods to Test DSL
    class Test
      Contract Or[String, Array], Or[HashOf[String => String], {}, nil] => nil
      def run(cmd, env = {})
        @forge.test_run(cmd, env)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pkgforge-0.4.13 lib/pkgforge/components/test.rb