Sha256: fee5571ea6ae7f133c786d9f0ee02b3148bdd0d5258d9c8f006d2acf16bcc864

Contents?: true

Size: 1.74 KB

Versions: 4

Compression:

Stored size: 1.74 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/helper')

describe "Dependencies" do
  context 'when we require a dependency that have another dependency' do
    setup do
      @log_level = Padrino::Logger::Config[:test]
      @io = StringIO.new
      Padrino::Logger::Config[:test] = { :log_level => :error, :stream => @io }
      Padrino::Logger.setup!
    end

    teardown do
      Padrino::Logger::Config[:test] = @log_level
      Padrino::Logger.setup!
    end

    should 'raise an error without reloading it twice' do
      capture_io do
        assert_raises(RuntimeError) do
          Padrino.require_dependencies(
            Padrino.root("fixtures/dependencies/a.rb"),
            Padrino.root("fixtures/dependencies/b.rb"),
            Padrino.root("fixtures/dependencies/c.rb"),
            Padrino.root("fixtures/dependencies/d.rb")
          )
        end
      end
      assert_equal 1, D
      assert_match /RuntimeError: SomeThing/, @io.string
    end

    should 'resolve dependency problems' do
      capture_io do
        Padrino.require_dependencies(
          Padrino.root("fixtures/dependencies/a.rb"),
          Padrino.root("fixtures/dependencies/b.rb"),
          Padrino.root("fixtures/dependencies/c.rb")
        )
      end
      assert_equal ["B", "C"], A_result
      assert_equal "C", B_result
      assert_equal "", @io.string
    end

    should 'remove partially loaded constants' do
      capture_io do
        Padrino.require_dependencies(
          Padrino.root("fixtures/dependencies/circular/e.rb"),
          Padrino.root("fixtures/dependencies/circular/f.rb"),
          Padrino.root("fixtures/dependencies/circular/g.rb")
        )
      end
      assert_equal ["name"], F.fields
      assert_equal "", @io.string
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
padrino-core-0.12.0 test/test_dependencies.rb
padrino-core-0.12.0.rc3 test/test_dependencies.rb
padrino-core-0.12.0.rc2 test/test_dependencies.rb
padrino-core-0.12.0.rc1 test/test_dependencies.rb