GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Koz's rails git-svn clone
Homepage: http://www.rubyonrails.org
Clone URL: git://github.com/NZKoz/koz-rails.git
koz-rails / railties / test / generator_lookup_test.rb
100644 41 lines (35 sloc) 1.422 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require 'plugin_test_helper'
 
class GeneratorLookupTest < Test::Unit::TestCase
  def setup
    @fixture_dirs = %w{alternate default}
    @configuration = Rails.configuration = Rails::Configuration.new
    # We need to add our testing plugin directory to the plugin paths so
    # the locator knows where to look for our plugins
    @configuration.plugin_paths += @fixture_dirs.map{|fd| plugin_fixture_path(fd)}
    @initializer = Rails::Initializer.new(@configuration)
    @initializer.add_plugin_load_paths
    @initializer.load_plugins
    load 'rails_generator.rb'
    require 'rails_generator/scripts'
  end
 
  def test_should_load_from_all_plugin_paths
    assert Rails::Generator::Base.lookup('a_generator')
    assert Rails::Generator::Base.lookup('stubby_generator')
  end
  
  def test_should_create_generator_source_for_each_directory_in_plugin_paths
    sources = Rails::Generator::Base.sources
    @fixture_dirs.each do |gen_dir|
      expected_label = "plugins (fixtures/plugins/#{gen_dir})".to_sym
      assert sources.any? {|source| source.label == expected_label }
    end
  end
  
  def test_should_preserve_order_in_usage_message
    msg = Rails::Generator::Scripts::Base.new.send(:usage_message)
    positions = @fixture_dirs.map do |gen_dir|
      pos = msg.index("Plugins (fixtures/plugins/#{gen_dir})")
      assert_not_nil pos
      pos
    end
    assert_equal positions.sort, positions
  end
 
end