aboutsummaryrefslogblamecommitdiff
blob: eae0e809b2c841ff95865f9b9f8d1ce2edc8ff76 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                  

                                                    






                                                             

                                



                                                       

                              


                                                       


                                                    


                                                           
                                       





                                                  
import pytest

@pytest.mark.vcr()
def test_public_tl_anonymous(api_anonymous, status):
    tl = api_anonymous.timeline_public()
    assert status['id'] in map(lambda st: st['id'], tl)
    # although tempting, we can't do
    #     assert status in tl
    # because the statuses returned in the tl have additional
    # pagination-related attributes

@pytest.mark.vcr()
def test_public_tl(api, status):
    tl = api.timeline_public()
    print(tl[0])
    assert status['id'] in map(lambda st: st['id'], tl)

@pytest.mark.vcr()
def test_home_tl(api, status):
    tl = api.timeline_home()
    assert status['id'] in map(lambda st: st['id'], tl)

@pytest.mark.vcr()
def test_hashtag_tl(api):
    status = api.status_post('#hoot (hashtag toot)')
    tl = api.timeline_hashtag('hoot')
    try:
        assert status['id'] in map(lambda st: st['id'], tl)
    finally:
        api.status_delete(status['id'])

@pytest.mark.vcr()
def test_home_tl_anonymous_throws(api_anonymous):
    from mastodon.Mastodon import MastodonAPIError
    with pytest.raises(MastodonAPIError):
        tl = api_anonymous.timeline_home()
Powered by cgit v1.2.3 (git 2.41.0)