Add integration test for fetch_inbox
This commit is contained in:
parent
520b9e366a
commit
6fd06c8c51
16
cmd/tests.sh
16
cmd/tests.sh
@ -148,10 +148,10 @@ test $(find images -mindepth 2 | wc -l) = "$((initial_images_count + 1))"
|
|||||||
|
|
||||||
|
|
||||||
# Fetch and attempt to download a DMCAed tweet
|
# Fetch and attempt to download a DMCAed tweet
|
||||||
tw fetch_user TyCardon
|
# tw fetch_user TyCardon # TODO: This guy went private
|
||||||
tw fetch_tweet_only https://twitter.com/TyCardon/status/1480640777281839106
|
# tw fetch_tweet_only https://twitter.com/TyCardon/status/1480640777281839106
|
||||||
tw download_tweet_content 1480640777281839106
|
# tw download_tweet_content 1480640777281839106
|
||||||
test $(sqlite3 twitter.db "select is_blocked_by_dmca, is_downloaded from videos where tweet_id = 1480640777281839106") = "1|0"
|
# test $(sqlite3 twitter.db "select is_blocked_by_dmca, is_downloaded from videos where tweet_id = 1480640777281839106") = "1|0"
|
||||||
|
|
||||||
# Fetch a tweet with a poll
|
# Fetch a tweet with a poll
|
||||||
tw fetch_tweet 1465534109573390348
|
tw fetch_tweet 1465534109573390348
|
||||||
@ -370,6 +370,14 @@ tw unlike_tweet https://twitter.com/elonmusk/status/1589023388676554753
|
|||||||
# test $(sqlite3 twitter.db "select count(*) from likes where tweet_id = 1589023388676554753 and user_id = (select id from users where handle like 'offline_twatter')") = "0"
|
# test $(sqlite3 twitter.db "select count(*) from likes where tweet_id = 1589023388676554753 and user_id = (select id from users where handle like 'offline_twatter')") = "0"
|
||||||
|
|
||||||
|
|
||||||
|
# Test fetch inbox
|
||||||
|
test $(sqlite3 twitter.db "select count(*) from chat_rooms") = "0"
|
||||||
|
test $(sqlite3 twitter.db "select count(*) from chat_messages") = "0"
|
||||||
|
tw fetch_inbox
|
||||||
|
test $(sqlite3 twitter.db "select count(*) from chat_rooms") -ge "1"
|
||||||
|
test $(sqlite3 twitter.db "select count(*) from chat_messages where chat_room_id = '1458284524761075714-1488963321701171204'") -ge "5"
|
||||||
|
|
||||||
|
|
||||||
# TODO: Maybe this file should be broken up into multiple test scripts
|
# TODO: Maybe this file should be broken up into multiple test scripts
|
||||||
|
|
||||||
echo -e "\033[32mAll tests passed. Finished successfully.\033[0m"
|
echo -e "\033[32mAll tests passed. Finished successfully.\033[0m"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package scraper
|
package scraper
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
@ -59,7 +60,7 @@ type APIInbox struct {
|
|||||||
} `json:"trusted"`
|
} `json:"trusted"`
|
||||||
} `json:"inbox_timelines"`
|
} `json:"inbox_timelines"`
|
||||||
Entries []struct {
|
Entries []struct {
|
||||||
Message APIDMMessage `json:"message"`
|
Message APIDMMessage `json:"message"`
|
||||||
} `json:"entries"`
|
} `json:"entries"`
|
||||||
Users map[string]APIUser `json:"users"`
|
Users map[string]APIUser `json:"users"`
|
||||||
Conversations map[string]APIDMConversation `json:"conversations"`
|
Conversations map[string]APIDMConversation `json:"conversations"`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user