2017-04-16 12:06:16 +00:00
# -*- coding: utf-8 -*-
2018-06-07 08:00:50 +00:00
import io
2017-04-15 12:46:22 +00:00
import pytest
2017-04-16 15:52:54 +00:00
import re
2017-04-15 12:46:22 +00:00
2018-06-07 08:00:50 +00:00
from unittest import mock
2017-12-30 15:30:35 +00:00
2018-06-07 08:00:50 +00:00
from toot import console , User , App , http
2017-12-30 12:32:52 +00:00
from toot . exceptions import ConsoleError
2017-04-15 12:46:22 +00:00
2018-06-07 08:00:50 +00:00
from tests . utils import MockResponse
2017-04-15 12:46:22 +00:00
2017-04-18 14:16:24 +00:00
app = App ( ' habunek.com ' , ' https://habunek.com ' , ' foo ' , ' bar ' )
user = User ( ' habunek.com ' , ' ivan@habunek.com ' , ' xxx ' )
2017-04-15 12:46:22 +00:00
2017-04-16 15:52:54 +00:00
def uncolorize ( text ) :
""" Remove ANSI color sequences from a string """
return re . sub ( r ' \ x1b[^m]*m ' , ' ' , text )
2017-04-18 14:16:24 +00:00
def test_print_usage ( capsys ) :
2017-04-16 15:15:05 +00:00
console . print_usage ( )
2017-04-16 12:06:16 +00:00
out , err = capsys . readouterr ( )
2017-04-19 12:47:30 +00:00
assert " toot - a Mastodon CLI client " in out
2017-04-16 12:06:16 +00:00
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.post ' )
def test_post_defaults ( mock_post , capsys ) :
mock_post . return_value = MockResponse ( {
' url ' : ' https://habunek.com/@ihabunek/1234567890 '
} )
2017-04-15 12:46:22 +00:00
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' post ' , [ ' Hello world ' ] )
2017-04-16 12:06:16 +00:00
2018-06-07 08:00:50 +00:00
mock_post . assert_called_once_with ( app , user , ' /api/v1/statuses ' , {
' status ' : ' Hello world ' ,
' visibility ' : ' public ' ,
' media_ids[] ' : None ,
2018-06-07 08:04:50 +00:00
' sensitive ' : False ,
' spoiler_text ' : None ,
2018-06-07 08:00:50 +00:00
} )
2017-04-15 12:46:22 +00:00
2018-06-07 08:00:50 +00:00
out , err = capsys . readouterr ( )
assert ' Toot posted ' in out
assert ' https://habunek.com/@ihabunek/1234567890 ' in out
assert not err
2017-04-15 12:46:22 +00:00
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.post ' )
def test_post_with_options ( mock_post , capsys ) :
2018-06-07 08:04:50 +00:00
args = [ ' Hello world ' , ' --visibility ' , ' unlisted ' , ' --sensitive ' , ' --spoiler-text ' , ' Spoiler! ' ]
2017-04-15 12:46:22 +00:00
2018-06-07 08:00:50 +00:00
mock_post . return_value = MockResponse ( {
' url ' : ' https://habunek.com/@ihabunek/1234567890 '
} )
2017-04-16 12:06:16 +00:00
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' post ' , args )
2017-04-16 12:06:16 +00:00
2018-06-07 08:00:50 +00:00
mock_post . assert_called_once_with ( app , user , ' /api/v1/statuses ' , {
' status ' : ' Hello world ' ,
' media_ids[] ' : None ,
' visibility ' : ' unlisted ' ,
2018-06-07 08:04:50 +00:00
' sensitive ' : True ,
' spoiler_text ' : " Spoiler! " ,
2018-06-07 08:00:50 +00:00
} )
2017-04-16 12:06:16 +00:00
out , err = capsys . readouterr ( )
2018-06-07 08:00:50 +00:00
assert ' Toot posted ' in out
assert ' https://habunek.com/@ihabunek/1234567890 ' in out
assert not err
2017-04-16 12:06:16 +00:00
2018-06-07 08:00:50 +00:00
def test_post_invalid_visibility ( capsys ) :
2017-04-16 12:06:16 +00:00
args = [ ' Hello world ' , ' --visibility ' , ' foo ' ]
with pytest . raises ( SystemExit ) :
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' post ' , args )
2017-04-16 12:06:16 +00:00
out , err = capsys . readouterr ( )
assert " invalid visibility value: ' foo ' " in err
2018-06-07 08:00:50 +00:00
def test_post_invalid_media ( capsys ) :
2017-04-16 12:06:16 +00:00
args = [ ' Hello world ' , ' --media ' , ' does_not_exist.jpg ' ]
with pytest . raises ( SystemExit ) :
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' post ' , args )
2017-04-15 12:46:22 +00:00
2017-04-16 12:06:16 +00:00
out , err = capsys . readouterr ( )
assert " can ' t open ' does_not_exist.jpg ' " in err
2017-04-15 12:46:22 +00:00
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.get ' )
def test_timeline ( mock_get , monkeypatch , capsys ) :
mock_get . return_value = MockResponse ( [ {
' account ' : {
' display_name ' : ' Frank Zappa ' ,
' username ' : ' fz '
} ,
' created_at ' : ' 2017-04-12T15:53:18.174Z ' ,
' content ' : " <p>The computer can ' t tell you the emotional story. It can give you the exact mathematical design, but what ' s missing is the eyebrows.</p> " ,
' reblog ' : None ,
} ] )
2017-04-16 12:06:16 +00:00
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' timeline ' , [ ] )
2017-04-16 12:06:16 +00:00
2018-06-07 08:00:50 +00:00
mock_get . assert_called_once_with ( app , user , ' /api/v1/timelines/home ' )
2017-04-16 12:06:16 +00:00
out , err = capsys . readouterr ( )
assert " The computer can ' t tell you the emotional story. " in out
assert " Frank Zappa @fz " in out
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.post ' )
def test_upload ( mock_post , capsys ) :
mock_post . return_value = MockResponse ( {
' id ' : 123 ,
' url ' : ' https://bigfish.software/123/456 ' ,
' preview_url ' : ' https://bigfish.software/789/012 ' ,
' text_url ' : ' https://bigfish.software/345/678 ' ,
' type ' : ' image ' ,
} )
2017-04-16 12:06:16 +00:00
2018-06-07 08:00:50 +00:00
console . run_command ( app , user , ' upload ' , [ __file__ ] )
2017-04-16 12:06:16 +00:00
2018-06-07 08:00:50 +00:00
mock_post . assert_called_once ( )
2017-04-15 12:46:22 +00:00
2018-06-07 08:00:50 +00:00
args , kwargs = http . post . call_args
assert args == ( app , user , ' /api/v1/media ' )
assert isinstance ( kwargs [ ' files ' ] [ ' file ' ] , io . BufferedReader )
2017-04-15 12:46:22 +00:00
2017-04-16 12:06:16 +00:00
out , err = capsys . readouterr ( )
assert " Uploading media " in out
assert __file__ in out
2017-04-16 13:07:27 +00:00
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.get ' )
def test_search ( mock_get , capsys ) :
mock_get . return_value = MockResponse ( {
' hashtags ' : [ ' foo ' , ' bar ' , ' baz ' ] ,
' accounts ' : [ {
' acct ' : ' thequeen ' ,
' display_name ' : ' Freddy Mercury '
} , {
' acct ' : ' thequeen@other.instance ' ,
' display_name ' : ' Mercury Freddy '
} ] ,
' statuses ' : [ ] ,
} )
2017-04-16 13:07:27 +00:00
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' search ' , [ ' freddy ' ] )
2017-04-16 13:07:27 +00:00
2018-06-07 08:00:50 +00:00
mock_get . assert_called_once_with ( app , user , ' /api/v1/search ' , {
' q ' : ' freddy ' ,
' resolve ' : False ,
} )
2017-04-16 13:07:27 +00:00
out , err = capsys . readouterr ( )
assert " Hashtags: \n \033 [32m#foo \033 [0m, \033 [32m#bar \033 [0m, \033 [32m#baz \033 [0m " in out
assert " Accounts: " in out
assert " \033 [32m@thequeen \033 [0m Freddy Mercury " in out
assert " \033 [32m@thequeen@other.instance \033 [0m Mercury Freddy " in out
2017-04-16 15:15:05 +00:00
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.post ' )
@mock.patch ( ' toot.http.get ' )
def test_follow ( mock_get , mock_post , capsys ) :
mock_get . return_value = MockResponse ( [
2017-12-30 15:30:35 +00:00
{ ' id ' : 123 , ' acct ' : ' blixa@other.acc ' } ,
{ ' id ' : 321 , ' acct ' : ' blixa ' } ,
] )
2018-06-07 08:00:50 +00:00
mock_post . return_value = MockResponse ( )
2017-04-16 15:15:05 +00:00
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' follow ' , [ ' blixa ' ] )
2017-04-16 15:15:05 +00:00
2018-06-07 08:00:50 +00:00
mock_get . assert_called_once_with ( app , user , ' /api/v1/accounts/search ' , { ' q ' : ' blixa ' } )
mock_post . assert_called_once_with ( app , user , ' /api/v1/accounts/321/follow ' )
2017-04-16 15:15:05 +00:00
out , err = capsys . readouterr ( )
assert " You are now following blixa " in out
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.get ' )
def test_follow_not_found ( mock_get , capsys ) :
mock_get . return_value = MockResponse ( )
2017-04-16 15:15:05 +00:00
2017-04-20 08:58:49 +00:00
with pytest . raises ( ConsoleError ) as ex :
console . run_command ( app , user , ' follow ' , [ ' blixa ' ] )
2018-06-07 08:00:50 +00:00
mock_get . assert_called_once_with ( app , user , ' /api/v1/accounts/search ' , { ' q ' : ' blixa ' } )
2017-04-20 08:58:49 +00:00
assert " Account not found " == str ( ex . value )
2017-04-16 15:15:05 +00:00
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.post ' )
@mock.patch ( ' toot.http.get ' )
def test_unfollow ( mock_get , mock_post , capsys ) :
mock_get . return_value = MockResponse ( [
2017-12-30 15:30:35 +00:00
{ ' id ' : 123 , ' acct ' : ' blixa@other.acc ' } ,
{ ' id ' : 321 , ' acct ' : ' blixa ' } ,
] )
2017-04-16 15:15:05 +00:00
2018-06-07 08:00:50 +00:00
mock_post . return_value = MockResponse ( )
2017-04-16 15:15:05 +00:00
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' unfollow ' , [ ' blixa ' ] )
2017-04-16 15:15:05 +00:00
2018-06-07 08:00:50 +00:00
mock_get . assert_called_once_with ( app , user , ' /api/v1/accounts/search ' , { ' q ' : ' blixa ' } )
mock_post . assert_called_once_with ( app , user , ' /api/v1/accounts/321/unfollow ' )
2017-04-16 15:15:05 +00:00
out , err = capsys . readouterr ( )
assert " You are no longer following blixa " in out
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.get ' )
def test_unfollow_not_found ( mock_get , capsys ) :
mock_get . return_value = MockResponse ( [ ] )
2017-04-16 15:15:05 +00:00
2017-04-20 08:58:49 +00:00
with pytest . raises ( ConsoleError ) as ex :
console . run_command ( app , user , ' unfollow ' , [ ' blixa ' ] )
2017-04-16 15:52:54 +00:00
2018-06-07 08:00:50 +00:00
mock_get . assert_called_once_with ( app , user , ' /api/v1/accounts/search ' , { ' q ' : ' blixa ' } )
2017-04-16 15:52:54 +00:00
2018-06-07 08:00:50 +00:00
assert " Account not found " == str ( ex . value )
2017-12-30 15:30:35 +00:00
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.http.get ' )
def test_whoami ( mock_get , capsys ) :
mock_get . return_value = MockResponse ( {
2017-12-30 15:30:35 +00:00
' acct ' : ' ihabunek ' ,
' avatar ' : ' https://files.mastodon.social/accounts/avatars/000/046/103/original/6a1304e135cac514.jpg?1491312434 ' ,
' avatar_static ' : ' https://files.mastodon.social/accounts/avatars/000/046/103/original/6a1304e135cac514.jpg?1491312434 ' ,
' created_at ' : ' 2017-04-04T13:23:09.777Z ' ,
' display_name ' : ' Ivan Habunek ' ,
' followers_count ' : 5 ,
' following_count ' : 9 ,
' header ' : ' /headers/original/missing.png ' ,
' header_static ' : ' /headers/original/missing.png ' ,
' id ' : 46103 ,
' locked ' : False ,
' note ' : ' A developer. ' ,
' statuses_count ' : 19 ,
' url ' : ' https://mastodon.social/@ihabunek ' ,
' username ' : ' ihabunek '
} )
2017-04-19 12:47:30 +00:00
console . run_command ( app , user , ' whoami ' , [ ] )
2017-04-16 15:52:54 +00:00
2018-06-07 08:00:50 +00:00
mock_get . assert_called_once_with ( app , user , ' /api/v1/accounts/verify_credentials ' )
2017-04-16 15:52:54 +00:00
out , err = capsys . readouterr ( )
out = uncolorize ( out )
assert " @ihabunek Ivan Habunek " in out
assert " A developer. " in out
assert " https://mastodon.social/@ihabunek " in out
assert " ID: 46103 " in out
assert " Since: 2017-04-04 @ 13:23:09 " in out
assert " Followers: 5 " in out
assert " Following: 9 " in out
assert " Statuses: 19 " in out
2018-01-02 09:44:32 +00:00
def u ( user_id , access_token = " abc " ) :
username , instance = user_id . split ( " @ " )
return {
" instance " : instance ,
" username " : username ,
" access_token " : access_token ,
}
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.config.save_config ' )
@mock.patch ( ' toot.config.load_config ' )
def test_logout ( mock_load , mock_save , capsys ) :
mock_load . return_value = {
" users " : {
" king@gizzard.social " : u ( " king@gizzard.social " ) ,
" lizard@wizard.social " : u ( " lizard@wizard.social " ) ,
} ,
" active_user " : " king@gizzard.social " ,
}
2018-01-02 09:44:32 +00:00
2018-06-07 08:00:50 +00:00
console . run_command ( app , user , " logout " , [ " king@gizzard.social " ] )
2018-01-02 09:44:32 +00:00
2018-06-07 08:00:50 +00:00
mock_save . assert_called_once_with ( {
' users ' : {
' lizard@wizard.social ' : u ( " lizard@wizard.social " )
} ,
' active_user ' : None
} )
2018-01-02 09:44:32 +00:00
out , err = capsys . readouterr ( )
assert " ✓ User king@gizzard.social logged out " in out
2018-06-07 08:00:50 +00:00
@mock.patch ( ' toot.config.save_config ' )
@mock.patch ( ' toot.config.load_config ' )
def test_activate ( mock_load , mock_save , capsys ) :
mock_load . return_value = {
" users " : {
2018-01-02 09:44:32 +00:00
" king@gizzard.social " : u ( " king@gizzard.social " ) ,
" lizard@wizard.social " : u ( " lizard@wizard.social " ) ,
2018-06-07 08:00:50 +00:00
} ,
" active_user " : " king@gizzard.social " ,
}
2018-01-02 09:44:32 +00:00
2018-06-07 08:00:50 +00:00
console . run_command ( app , user , " activate " , [ " lizard@wizard.social " ] )
2018-01-02 09:44:32 +00:00
2018-06-07 08:00:50 +00:00
mock_save . assert_called_once_with ( {
' users ' : {
" king@gizzard.social " : u ( " king@gizzard.social " ) ,
' lizard@wizard.social ' : u ( " lizard@wizard.social " )
} ,
' active_user ' : " lizard@wizard.social "
} )
2018-01-02 09:44:32 +00:00
out , err = capsys . readouterr ( )
assert " ✓ User lizard@wizard.social active " in out