Fix broken integration test
This commit is contained in:
parent
bbe6c6fef1
commit
fb95d024cb
25
cmd/tests.sh
25
cmd/tests.sh
@ -229,30 +229,31 @@ test $(sqlite3 twitter.db "select is_private from users where handle = 'Landshar
|
|||||||
|
|
||||||
|
|
||||||
# Test tweets with URLs
|
# Test tweets with URLs
|
||||||
|
tw fetch_user ScottAdamsSays
|
||||||
urls_count=$(sqlite3 twitter.db "select count(*) from urls")
|
urls_count=$(sqlite3 twitter.db "select count(*) from urls")
|
||||||
test "$(sqlite3 twitter.db "select * from tweets where id = 1760459421291856312")" = "" # Check it's not already there
|
test "$(sqlite3 twitter.db "select * from tweets where id = 1812198878403612695")" = "" # Check it's not already there
|
||||||
tw fetch_tweet_only https://twitter.com/zerohedge/status/1760459421291856312
|
tw fetch_tweet_only https://twitter.com/ScottAdamsSays/status/1812198878403612695
|
||||||
urls_count_after=$(sqlite3 twitter.db "select count(*) from urls")
|
urls_count_after=$(sqlite3 twitter.db "select count(*) from urls")
|
||||||
test $urls_count_after = $(($urls_count + 1))
|
test $urls_count_after = $(($urls_count + 1))
|
||||||
test "$(sqlite3 twitter.db "select title from urls where tweet_id = 1760459421291856312")" = "How Do Democrats & Republicans Feel About Certain US Industries"
|
test "$(sqlite3 twitter.db "select title from urls where tweet_id = 1812198878403612695")" = "How to Fail at Almost Everything and Still Win Big: Kind of the Story of My Life (The Scott Adams..."
|
||||||
test $(sqlite3 twitter.db "select count(*) from urls where tweet_id = 1760459421291856312") = "1"
|
test $(sqlite3 twitter.db "select count(*) from urls where tweet_id = 1812198878403612695") = "1"
|
||||||
thumbnail_name=$(sqlite3 twitter.db "select thumbnail_remote_url from urls where tweet_id = 1760459421291856312" | grep -Po "(?<=/)[\w-]+(?=\?)")
|
thumbnail_name=$(sqlite3 twitter.db "select thumbnail_remote_url from urls where tweet_id = 1812198878403612695" | grep -Po "(?<=/)[\w-]+(?=\?)")
|
||||||
test -n "$thumbnail_name" # Not testing for what the thumbnail url is because it keeps changing
|
test -n "$thumbnail_name" # Not testing for what the thumbnail url is because it keeps changing
|
||||||
|
|
||||||
# Try to double-fetch it; shouldn't duplicate the URL
|
# Try to double-fetch it; shouldn't duplicate the URL
|
||||||
tw fetch_tweet_only https://twitter.com/zerohedge/status/1760459421291856312
|
tw fetch_tweet_only https://twitter.com/ScottAdamsSays/status/1812198878403612695
|
||||||
urls_count_after_2x=$(sqlite3 twitter.db "select count(*) from urls")
|
urls_count_after_2x=$(sqlite3 twitter.db "select count(*) from urls")
|
||||||
test $urls_count_after_2x = $urls_count_after
|
test $urls_count_after_2x = $urls_count_after
|
||||||
|
|
||||||
# Download the link's preview image
|
# Download the link's preview image
|
||||||
test $(sqlite3 twitter.db "select is_content_downloaded from tweets where id = 1760459421291856312") = "0"
|
test $(sqlite3 twitter.db "select is_content_downloaded from tweets where id = 1812198878403612695") = "0"
|
||||||
test $(sqlite3 twitter.db "select is_content_downloaded from urls where tweet_id = 1760459421291856312") = "0"
|
test $(sqlite3 twitter.db "select is_content_downloaded from urls where tweet_id = 1812198878403612695") = "0"
|
||||||
initial_link_preview_images_count=$(find link_preview_images -mindepth 2 | wc -l)
|
initial_link_preview_images_count=$(find link_preview_images -mindepth 2 | wc -l)
|
||||||
tw download_tweet_content 1760459421291856312
|
tw download_tweet_content 1812198878403612695
|
||||||
test $(sqlite3 twitter.db "select is_content_downloaded from tweets where id = 1760459421291856312") = "1"
|
test $(sqlite3 twitter.db "select is_content_downloaded from tweets where id = 1812198878403612695") = "1"
|
||||||
test $(sqlite3 twitter.db "select is_content_downloaded from urls where tweet_id = 1760459421291856312") = "1"
|
test $(sqlite3 twitter.db "select is_content_downloaded from urls where tweet_id = 1812198878403612695") = "1"
|
||||||
test $(find link_preview_images -mindepth 2 | wc -l) = "$((initial_link_preview_images_count + 1))"
|
test $(find link_preview_images -mindepth 2 | wc -l) = "$((initial_link_preview_images_count + 1))"
|
||||||
find link_preview_images | grep ${thumbnail_name}\\w*.jpg
|
find link_preview_images | grep -P ${thumbnail_name}\\w*.\\w+
|
||||||
|
|
||||||
|
|
||||||
# Test a tweet with a URL but no thumbnail
|
# Test a tweet with a URL but no thumbnail
|
||||||
|
Loading…
x
Reference in New Issue
Block a user