2010-06-20 07:26:42 -04:00
|
|
|
require 'abstract_unit'
|
|
|
|
require 'fileutils'
|
2012-03-15 08:21:20 -04:00
|
|
|
require 'thread'
|
2010-06-20 07:26:42 -04:00
|
|
|
|
|
|
|
MTIME_FIXTURES_PATH = File.expand_path("../fixtures", __FILE__)
|
|
|
|
|
2012-01-05 20:12:46 -05:00
|
|
|
class FileUpdateCheckerWithEnumerableTest < ActiveSupport::TestCase
|
2010-06-20 07:26:42 -04:00
|
|
|
FILES = %w(1.txt 2.txt 3.txt)
|
|
|
|
|
|
|
|
def setup
|
2011-12-12 14:26:04 -05:00
|
|
|
FileUtils.mkdir_p("tmp_watcher")
|
2010-06-20 07:26:42 -04:00
|
|
|
FileUtils.touch(FILES)
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
2011-12-12 14:26:04 -05:00
|
|
|
FileUtils.rm_rf("tmp_watcher")
|
2011-12-13 05:23:21 -05:00
|
|
|
FileUtils.rm_rf(FILES)
|
2010-06-20 07:26:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_execute_the_block_if_no_paths_are_given
|
|
|
|
i = 0
|
|
|
|
checker = ActiveSupport::FileUpdateChecker.new([]){ i += 1 }
|
|
|
|
checker.execute_if_updated
|
|
|
|
assert_equal 0, i
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_not_invoke_the_block_if_no_file_has_changed
|
|
|
|
i = 0
|
2011-12-13 05:23:21 -05:00
|
|
|
checker = ActiveSupport::FileUpdateChecker.new(FILES){ i += 1 }
|
2011-12-12 12:19:28 -05:00
|
|
|
5.times { assert !checker.execute_if_updated }
|
|
|
|
assert_equal 0, i
|
2010-06-20 07:26:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_should_invoke_the_block_if_a_file_has_changed
|
|
|
|
i = 0
|
2011-12-13 05:23:21 -05:00
|
|
|
checker = ActiveSupport::FileUpdateChecker.new(FILES){ i += 1 }
|
2010-06-20 07:26:42 -04:00
|
|
|
sleep(1)
|
|
|
|
FileUtils.touch(FILES)
|
2011-12-12 12:19:28 -05:00
|
|
|
assert checker.execute_if_updated
|
|
|
|
assert_equal 1, i
|
2010-06-20 07:26:42 -04:00
|
|
|
end
|
2011-12-12 08:53:25 -05:00
|
|
|
|
2011-12-13 05:23:21 -05:00
|
|
|
def test_should_be_robust_enough_to_handle_deleted_files
|
2011-12-12 16:51:33 -05:00
|
|
|
i = 0
|
2011-12-13 05:23:21 -05:00
|
|
|
checker = ActiveSupport::FileUpdateChecker.new(FILES){ i += 1 }
|
|
|
|
FileUtils.rm(FILES)
|
2012-04-03 19:17:45 -04:00
|
|
|
assert checker.execute_if_updated
|
|
|
|
assert_equal 1, i
|
2011-12-13 05:23:21 -05:00
|
|
|
end
|
|
|
|
|
2012-06-29 11:43:33 -04:00
|
|
|
def test_should_be_robust_to_handle_files_with_wrong_modified_time
|
|
|
|
i = 0
|
2012-06-29 14:08:08 -04:00
|
|
|
now = Time.now
|
|
|
|
time = Time.mktime(now.year + 1, now.month, now.day) # wrong mtime from the future
|
2012-06-29 11:43:33 -04:00
|
|
|
File.utime time, time, FILES[2]
|
|
|
|
|
|
|
|
checker = ActiveSupport::FileUpdateChecker.new(FILES){ i += 1 }
|
|
|
|
|
2012-06-29 14:08:08 -04:00
|
|
|
sleep(1)
|
2012-06-29 11:43:33 -04:00
|
|
|
FileUtils.touch(FILES[0..1])
|
|
|
|
|
|
|
|
assert checker.execute_if_updated
|
|
|
|
assert_equal 1, i
|
|
|
|
end
|
|
|
|
|
2011-12-13 05:23:21 -05:00
|
|
|
def test_should_cache_updated_result_until_execute
|
|
|
|
i = 0
|
|
|
|
checker = ActiveSupport::FileUpdateChecker.new(FILES){ i += 1 }
|
2011-12-12 16:51:33 -05:00
|
|
|
assert !checker.updated?
|
|
|
|
|
|
|
|
sleep(1)
|
|
|
|
FileUtils.touch(FILES)
|
|
|
|
|
|
|
|
assert checker.updated?
|
2011-12-13 04:07:02 -05:00
|
|
|
checker.execute
|
2011-12-12 16:51:33 -05:00
|
|
|
assert !checker.updated?
|
|
|
|
end
|
|
|
|
|
2011-12-12 14:26:04 -05:00
|
|
|
def test_should_invoke_the_block_if_a_watched_dir_changed_its_glob
|
|
|
|
i = 0
|
2011-12-13 05:23:21 -05:00
|
|
|
checker = ActiveSupport::FileUpdateChecker.new([], "tmp_watcher" => [:txt]){ i += 1 }
|
2011-12-12 14:26:04 -05:00
|
|
|
FileUtils.cd "tmp_watcher" do
|
|
|
|
FileUtils.touch(FILES)
|
|
|
|
end
|
|
|
|
assert checker.execute_if_updated
|
|
|
|
assert_equal 1, i
|
|
|
|
end
|
2011-12-12 08:53:25 -05:00
|
|
|
|
2011-12-12 14:26:04 -05:00
|
|
|
def test_should_not_invoke_the_block_if_a_watched_dir_changed_its_glob
|
|
|
|
i = 0
|
2011-12-13 05:23:21 -05:00
|
|
|
checker = ActiveSupport::FileUpdateChecker.new([], "tmp_watcher" => :rb){ i += 1 }
|
2011-12-12 14:26:04 -05:00
|
|
|
FileUtils.cd "tmp_watcher" do
|
|
|
|
FileUtils.touch(FILES)
|
|
|
|
end
|
|
|
|
assert !checker.execute_if_updated
|
|
|
|
assert_equal 0, i
|
|
|
|
end
|
2012-03-15 08:21:20 -04:00
|
|
|
|
|
|
|
def test_should_not_block_if_a_strange_filename_used
|
|
|
|
FileUtils.mkdir_p("tmp_watcher/valid,yetstrange,path,")
|
2012-03-15 23:54:39 -04:00
|
|
|
FileUtils.touch(FILES.map { |file_name| "tmp_watcher/valid,yetstrange,path,/#{file_name}" })
|
2012-03-15 08:21:20 -04:00
|
|
|
|
|
|
|
test = Thread.new do
|
2012-03-15 23:54:39 -04:00
|
|
|
ActiveSupport::FileUpdateChecker.new([],"tmp_watcher/valid,yetstrange,path," => :txt) { i += 1 }
|
2012-03-15 08:21:20 -04:00
|
|
|
Thread.exit
|
|
|
|
end
|
|
|
|
test.priority = -1
|
|
|
|
test.join(5)
|
|
|
|
|
|
|
|
assert !test.alive?
|
|
|
|
end
|
2012-01-06 17:42:53 -05:00
|
|
|
end
|