2017-01-27 16:22:40 +00:00
|
|
|
import pytest
|
|
|
|
|
2017-02-17 23:20:23 +00:00
|
|
|
from endpoints.api import api
|
|
|
|
from endpoints.api.team import OrganizationTeamSyncing
|
2017-03-22 18:30:13 +00:00
|
|
|
from endpoints.api.test.shared import client_with_identity, conduct_api_call
|
2017-01-27 16:22:40 +00:00
|
|
|
from endpoints.api.superuser import SuperUserRepositoryBuildLogs, SuperUserRepositoryBuildResource
|
|
|
|
from endpoints.api.superuser import SuperUserRepositoryBuildStatus
|
2017-04-05 17:27:31 +00:00
|
|
|
from endpoints.api.signing import RepositorySignatures
|
2017-02-23 18:48:06 +00:00
|
|
|
from test.fixtures import app, appconfig, database_uri, init_db_path, sqlitedb_file
|
2017-01-27 16:22:40 +00:00
|
|
|
|
2017-03-22 18:30:13 +00:00
|
|
|
TEAM_PARAMS = {'orgname': 'buynlarge', 'teamname': 'owners'}
|
|
|
|
BUILD_PARAMS = {'build_uuid': 'test-1234'}
|
2017-01-27 16:22:40 +00:00
|
|
|
|
2017-03-22 18:30:13 +00:00
|
|
|
@pytest.mark.parametrize('resource,method,params,body,identity,expected', [
|
2017-02-17 23:20:23 +00:00
|
|
|
(OrganizationTeamSyncing, 'POST', TEAM_PARAMS, {}, None, 403),
|
|
|
|
(OrganizationTeamSyncing, 'POST', TEAM_PARAMS, {}, 'freshuser', 403),
|
|
|
|
(OrganizationTeamSyncing, 'POST', TEAM_PARAMS, {}, 'reader', 403),
|
|
|
|
(OrganizationTeamSyncing, 'POST', TEAM_PARAMS, {}, 'devtable', 400),
|
|
|
|
|
|
|
|
(OrganizationTeamSyncing, 'DELETE', TEAM_PARAMS, {}, None, 403),
|
|
|
|
(OrganizationTeamSyncing, 'DELETE', TEAM_PARAMS, {}, 'freshuser', 403),
|
|
|
|
(OrganizationTeamSyncing, 'DELETE', TEAM_PARAMS, {}, 'reader', 403),
|
|
|
|
(OrganizationTeamSyncing, 'DELETE', TEAM_PARAMS, {}, 'devtable', 200),
|
|
|
|
|
2017-03-22 18:30:13 +00:00
|
|
|
(SuperUserRepositoryBuildLogs, 'GET', BUILD_PARAMS, None, None, 401),
|
|
|
|
(SuperUserRepositoryBuildLogs, 'GET', BUILD_PARAMS, None, 'freshuser', 403),
|
|
|
|
(SuperUserRepositoryBuildLogs, 'GET', BUILD_PARAMS, None, 'reader', 403),
|
|
|
|
(SuperUserRepositoryBuildLogs, 'GET', BUILD_PARAMS, None, 'devtable', 400),
|
2017-01-27 16:22:40 +00:00
|
|
|
|
2017-03-22 18:30:13 +00:00
|
|
|
(SuperUserRepositoryBuildStatus, 'GET', BUILD_PARAMS, None, None, 401),
|
|
|
|
(SuperUserRepositoryBuildStatus, 'GET', BUILD_PARAMS, None, 'freshuser', 403),
|
|
|
|
(SuperUserRepositoryBuildStatus, 'GET', BUILD_PARAMS, None, 'reader', 403),
|
|
|
|
(SuperUserRepositoryBuildStatus, 'GET', BUILD_PARAMS, None, 'devtable', 400),
|
2017-01-27 16:22:40 +00:00
|
|
|
|
2017-03-22 18:30:13 +00:00
|
|
|
(SuperUserRepositoryBuildResource, 'GET', BUILD_PARAMS, None, None, 401),
|
|
|
|
(SuperUserRepositoryBuildResource, 'GET', BUILD_PARAMS, None, 'freshuser', 403),
|
|
|
|
(SuperUserRepositoryBuildResource, 'GET', BUILD_PARAMS, None, 'reader', 403),
|
|
|
|
(SuperUserRepositoryBuildResource, 'GET', BUILD_PARAMS, None, 'devtable', 404),
|
2017-04-05 17:27:31 +00:00
|
|
|
|
|
|
|
(RepositorySignatures, 'GET', 401, None, None),
|
|
|
|
(RepositorySignatures, 'GET', 403, 'freshuser', None),
|
|
|
|
(RepositorySignatures, 'GET', 403, 'reader', None),
|
|
|
|
(RepositorySignatures, 'GET', 404, 'devtable', None),
|
2017-01-27 16:22:40 +00:00
|
|
|
])
|
2017-03-22 18:30:13 +00:00
|
|
|
def test_api_security(resource, method, params, body, identity, expected, client):
|
|
|
|
with client_with_identity(identity, client) as cl:
|
|
|
|
conduct_api_call(cl, resource, method, params, body, expected)
|