File: test_update_index.py

package info (click to toggle)
python-globus-sdk 4.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,144 kB
  • sloc: python: 35,242; sh: 37; makefile: 35
file content (24 lines) | stat: -rw-r--r-- 658 bytes parent folder | download
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

import globus_sdk
from globus_sdk.testing import load_response


def test_update_index(client):
    meta = load_response(client.update_index).metadata

    res = client.update_index(meta["index_id"], display_name="foo")
    assert res.http_status == 200
    assert res["display_name"] == meta["display_name"]


def test_update_index_forbidden_error(client):
    meta = load_response(client.update_index, case="forbidden").metadata

    with pytest.raises(globus_sdk.SearchAPIError) as excinfo:
        client.update_index(meta["index_id"])

    err = excinfo.value

    assert err.http_status == 403
    assert err.code == "Forbidden.Generic"