waybackpy/tests/test_1.py

105 lines
3.5 KiB
Python
Raw Normal View History

2020-05-05 12:59:55 +02:00
import sys
sys.path.append("..")
import waybackpy
import pytest
user_agent = "Mozilla/5.0 (Windows NT 6.2; rv:20.0) Gecko/20121202 Firefox/20.0"
2020-05-07 05:29:09 +02:00
def test_clean_url():
test_url = " https://en.wikipedia.org/wiki/Network security "
answer = "https://en.wikipedia.org/wiki/Network_security"
target = waybackpy.Url(test_url, user_agent)
test_result = target.clean_url()
2020-05-07 05:29:09 +02:00
assert answer == test_result
def test_url_check():
broken_url = "http://wwwgooglecom/"
2020-05-07 05:29:09 +02:00
with pytest.raises(Exception) as e_info:
waybackpy.Url(broken_url, user_agent)
2020-05-05 12:59:55 +02:00
def test_save():
# Test for urls that exist and can be archived.
url1="https://github.com/akamhy/waybackpy"
target = waybackpy.Url(url1, user_agent)
archived_url1 = target.save()
2020-05-05 12:59:55 +02:00
assert url1 in archived_url1
2020-05-05 12:59:55 +02:00
# Test for urls that are incorrect.
with pytest.raises(Exception) as e_info:
url2 = "ha ha ha ha"
waybackpy.Url(url2, user_agent)
2020-05-05 12:59:55 +02:00
# Test for urls not allowed to archive by robot.txt.
with pytest.raises(Exception) as e_info:
url3 = "http://www.archive.is/faq.html"
target = waybackpy.Url(url3, user_agent)
target.save()
2020-05-05 12:59:55 +02:00
# Non existent urls, test
with pytest.raises(Exception) as e_info:
url4 = "https://githfgdhshajagjstgeths537agajaajgsagudadhuss8762346887adsiugujsdgahub.us"
target = waybackpy.Url(url3, user_agent)
target.save()
2020-05-07 05:09:24 +02:00
2020-05-05 12:59:55 +02:00
def test_near():
url = "google.com"
target = waybackpy.Url(url, user_agent)
archive_near_year = target.near(year=2010)
2020-05-05 12:59:55 +02:00
assert "2010" in archive_near_year
archive_near_month_year = target.near( year=2015, month=2)
2020-05-07 05:09:24 +02:00
assert ("201502" in archive_near_month_year) or ("201501" in archive_near_month_year) or ("201503" in archive_near_month_year)
archive_near_day_month_year = target.near(year=2006, month=11, day=15)
2020-05-07 05:09:24 +02:00
assert ("20061114" in archive_near_day_month_year) or ("20061115" in archive_near_day_month_year) or ("2006116" in archive_near_day_month_year)
2020-05-05 12:59:55 +02:00
target = waybackpy.Url("www.python.org", user_agent)
archive_near_hour_day_month_year = target.near(year=2008, month=5, day=9, hour=15)
2020-05-07 05:09:24 +02:00
assert ("2008050915" in archive_near_hour_day_month_year) or ("2008050914" in archive_near_hour_day_month_year) or ("2008050913" in archive_near_hour_day_month_year)
2020-05-05 12:59:55 +02:00
2020-05-07 05:29:09 +02:00
with pytest.raises(Exception) as e_info:
NeverArchivedUrl = "https://ee_3n.wrihkeipef4edia.org/rwti5r_ki/Nertr6w_rork_rse7c_urity"
target = waybackpy.Url(NeverArchivedUrl, user_agent)
target.near(year=2010)
2020-05-07 05:29:09 +02:00
2020-05-05 12:59:55 +02:00
def test_oldest():
url = "github.com/akamhy/waybackpy"
target = waybackpy.Url(url, user_agent)
assert "20200504141153" in target.oldest()
2020-05-05 12:59:55 +02:00
def test_newest():
url = "github.com/akamhy/waybackpy"
target = waybackpy.Url(url, user_agent)
assert url in target.newest()
2020-05-07 05:09:24 +02:00
2020-05-05 12:59:55 +02:00
def test_get():
target = waybackpy.Url("google.com", user_agent)
assert "Welcome to Google" in target.get(target.oldest())
2020-05-07 05:09:24 +02:00
2020-05-07 11:30:28 +02:00
def test_total_archives():
target = waybackpy.Url(" https://google.com ", user_agent)
assert target.total_archives() > 500000
2020-05-07 11:30:28 +02:00
target = waybackpy.Url(" https://gaha.e4i3n.m5iai3kip6ied.cima/gahh2718gs/ahkst63t7gad8 ", user_agent)
assert target.total_archives() == 0
2020-05-07 11:30:28 +02:00
2020-05-07 05:09:24 +02:00
if __name__ == "__main__":
2020-05-07 05:29:09 +02:00
test_clean_url()
print(".")
test_url_check()
print(".")
2020-05-07 05:09:24 +02:00
test_get()
print(".")
test_near()
print(".")
test_newest()
print(".")
test_save()
print(".")
test_oldest()
print(".")
2020-05-07 11:30:28 +02:00
test_total_archives()
print(".")
print("OK")