File: test_access_token_authorizer.py

package info (click to toggle)
python-globus-sdk 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,172 kB
  • sloc: python: 35,227; sh: 44; makefile: 35
file content (24 lines) | stat: -rw-r--r-- 563 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import pytest

from globus_sdk.authorizers import AccessTokenAuthorizer

TOKEN = "DUMMY_TOKEN"


@pytest.fixture
def authorizer():
    return AccessTokenAuthorizer(TOKEN)


def test_get_authorization_header(authorizer):
    """
    Get authorization header, confirms expected value
    """
    assert authorizer.get_authorization_header() == "Bearer " + TOKEN


def test_handle_missing_authorization(authorizer):
    """
    Confirms that AccessTokenAuthorizer doesn't handle missing authorization
    """
    assert not authorizer.handle_missing_authorization()