blob: ac75a73af69be5dfddf35cab2def062ac65089d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import pytest
from fatcat_client import EditgroupAnnotation
from fatcat_client.rest import ApiException
from fatcat_tools import public_api, authenticated_api
def test_authenticated_api():
api = authenticated_api("http://localhost:9411/v0")
api.get_changelog()
api.create_editgroup_annotation("aaaaaaaaaaaabo53aaaaaaaaa4",
EditgroupAnnotation(comment_markdown="bloop test thingie"))
def test_public_api():
api = public_api("http://localhost:9411/v0")
api.get_changelog()
# XXX: there is some contamination happening here, and we're getting
# authenticated. Maybe the DefaultAPI thing?
pytest.skip("public_api() client not isolated from authenticated")
with pytest.raises(ApiException):
api.create_editgroup_annotation("aaaaaaaaaaaabo53aaaaaaaaa4",
EditgroupAnnotation(comment_markdown="bloop unauth test thingie"))
|