mirror of
https://github.com/StrawberryMaster/wayback-machine-downloader.git
synced 2025-12-17 09:46:05 +00:00
55 lines
1.7 KiB
Ruby
55 lines
1.7 KiB
Ruby
require 'minitest/autorun'
|
|
require 'pry-rescue/minitest' unless ENV["TRAVIS"]
|
|
require 'wayback_machine_downloader'
|
|
|
|
class WaybackMachineDownloaderTest < Minitest::Test
|
|
|
|
def setup
|
|
@wayback_machine_downloader = WaybackMachineDownloader.new base_url: 'http://www.onlyfreegames.net'
|
|
$stdout = StringIO.new
|
|
end
|
|
|
|
def teardown
|
|
FileUtils.rm_rf(@wayback_machine_downloader.backup_path)
|
|
end
|
|
|
|
def test_base_url_being_set
|
|
assert_equal 'http://www.onlyfreegames.net', @wayback_machine_downloader.base_url
|
|
end
|
|
|
|
def test_file_list_curated
|
|
assert_equal 20081120203712, @wayback_machine_downloader.get_file_list_curated["linux.htm"][:timestamp]
|
|
end
|
|
|
|
def test_file_list_by_timestamp
|
|
file_expected = {
|
|
file_id: "Fs-06.jpg",
|
|
file_url: "http://www.onlyfreegames.net:80/Fs-06.jpg",
|
|
timestamp: 20060716125343
|
|
}
|
|
assert_equal file_expected, @wayback_machine_downloader.get_file_list_by_timestamp[-1]
|
|
end
|
|
|
|
def test_file_list_notthere_regex
|
|
regextester = WaybackMachineDownloader.new base_url: 'http://www.onlyfreegames.net', accept_regex: 'abc123'
|
|
assert_equal 0, regextester.get_file_list_curated.length
|
|
end
|
|
|
|
def test_file_list_singleresult_regex
|
|
regextester = WaybackMachineDownloader.new base_url: 'http://www.onlyfreegames.net', accept_regex: 'menu.html$'
|
|
assert_equal 1, regextester.get_file_list_curated.length
|
|
end
|
|
|
|
def test_file_download
|
|
@wayback_machine_downloader.download_files
|
|
linux_page = open 'websites/www.onlyfreegames.net/linux.htm'
|
|
assert_includes linux_page.read, "Linux Games"
|
|
end
|
|
|
|
def test_timestamp_being_respected
|
|
@wayback_machine_downloader.timestamp = 20050716231334
|
|
assert_nil @wayback_machine_downloader.get_file_list_curated["linux.htm"]
|
|
end
|
|
|
|
end
|