aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake/restart_test.rb
blob: 30f662a9be2878c10ab877e1fa0946271152601f (plain) (blame)
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
42
43
44
45
46
47
48
require "isolation/abstract_unit"

module ApplicationTests
  module RakeTests
    class RakeRestartTest < ActiveSupport::TestCase
      include ActiveSupport::Testing::Isolation

      def setup
        build_app
        boot_rails
      end

      def teardown
        teardown_app
      end

      test 'rake restart touches tmp/restart.txt' do
        Dir.chdir(app_path) do
          `rake restart`
          assert File.exist?("tmp/restart.txt")

          prev_mtime = File.mtime("tmp/restart.txt")
          sleep(1)
          `rake restart`
          curr_mtime = File.mtime("tmp/restart.txt")
          assert_not_equal prev_mtime, curr_mtime
        end
      end

      test 'rake restart should work even if tmp folder does not exist' do
        Dir.chdir(app_path) do
          FileUtils.remove_dir('tmp')
          `rake restart`
          assert File.exist?('tmp/restart.txt')
        end
      end

      test 'rake restart removes server.pid also' do
        Dir.chdir(app_path) do
          FileUtils.mkdir_p("tmp/pids")
          FileUtils.touch("tmp/pids/server.pid")
          `rake restart`
          assert_not File.exist?("tmp/pids/server.pid")
        end
      end
    end
  end
end