notes_test.rb 1.9 KB
Newer Older
1 2 3 4
require "isolation/abstract_unit"

module ApplicationTests
  module RakeTests
5
    class RakeNotesTest < ActiveSupport::TestCase
6
      def setup
7 8 9
        build_app
        require "rails/all"
      end
10

11 12 13 14 15 16 17 18
      def teardown
        teardown_app
      end

      test 'notes' do
        app_file "app/views/home/index.html.erb", "<% # TODO: note in erb %>"
        app_file "app/views/home/index.html.haml", "-# TODO: note in haml"
        app_file "app/views/home/index.html.slim", "/ TODO: note in slim"
19
        app_file "app/assets/javascripts/application.js.coffee", "# TODO: note in coffee"
20 21 22
        app_file "app/assets/javascripts/application.js", "// TODO: note in js"
        app_file "app/assets/stylesheets/application.css", "// TODO: note in css"
        app_file "app/assets/stylesheets/application.css.scss", "// TODO: note in scss"
A
Anton Lindqvist 已提交
23
        app_file "app/controllers/application_controller.rb", 1000.times.map { "" }.join("\n") << "# TODO: note in ruby"
24 25 26 27 28 29 30

        boot_rails
        require 'rake'
        require 'rdoc/task'
        require 'rake/testtask'

        Rails.application.load_tasks
31

32 33
        Dir.chdir(app_path) do
          output = `bundle exec rake notes`
34
          lines = output.scan(/\[([0-9\s]+)\](\s)/)
35

36 37 38
          assert_match /note in erb/, output
          assert_match /note in haml/, output
          assert_match /note in slim/, output
A
Anton Lindqvist 已提交
39
          assert_match /note in ruby/, output
40
          assert_match /note in coffee/, output
41 42 43
          assert_match /note in js/, output
          assert_match /note in css/, output
          assert_match /note in scss/, output
A
Anton Lindqvist 已提交
44

45
          assert_equal 8, lines.size
46

47 48 49
          lines.each do |line|
            assert_equal 4, line[0].size
            assert_equal ' ', line[1]
50
          end
51
        end
52

53
      end
54

55 56 57 58 59 60 61 62
      private
      def boot_rails
        super
        require "#{app_path}/config/environment"
      end
    end
  end
end