123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- # -*- coding: utf-8 -*-
- """
- (c) 2018 - Copyright Red Hat Inc
- Authors:
- Pierre-Yves Chibon <pingou@pingoured.fr>
- """
- from __future__ import unicode_literals, absolute_import
- import copy
- import datetime
- import unittest
- import shutil
- import sys
- import time
- import os
- import json
- from mock import patch, MagicMock
- sys.path.insert(0, os.path.join(os.path.dirname(
- os.path.abspath(__file__)), '..'))
- import pagure.lib.query
- import tests
- class PagureFlaskApiProjectUpdateWatchTests(tests.Modeltests):
- """ Tests for the flask API of pagure for changing the watch status on
- a project via the API
- """
- @patch('pagure.lib.notify.send_email', MagicMock(return_value=True))
- def setUp(self):
- """ Set up the environnment, ran before every tests. """
- super(PagureFlaskApiProjectUpdateWatchTests, self).setUp()
- tests.create_projects(self.session)
- tests.create_projects_git(os.path.join(self.path, 'tickets'))
- tests.create_tokens(self.session)
- tests.create_tokens_acl(self.session)
- # Create normal issue
- repo = pagure.lib.query.get_authorized_project(self.session, 'test')
- msg = pagure.lib.query.new_issue(
- session=self.session,
- repo=repo,
- title='Test issue #1',
- content='We should work on this',
- user='pingou',
- private=False,
- )
- self.session.commit()
- self.assertEqual(msg.title, 'Test issue #1')
- # Create project-less token for user foo
- item = pagure.lib.model.Token(
- id='project-less-foo',
- user_id=1,
- project_id=None,
- expiration=datetime.datetime.utcnow()
- + datetime.timedelta(days=30)
- )
- self.session.add(item)
- self.session.commit()
- tests.create_tokens_acl(self.session, token_id='project-less-foo')
- def test_api_update_project_watchers_invalid_project(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- # Invalid project
- output = self.app.post(
- '/api/0/foobar/watchers/update', headers=headers)
- self.assertEqual(output.status_code, 404)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- "error": "Project not found",
- "error_code": "ENOPROJECT",
- }
- )
- def test_api_change_status_issue_token_not_for_project(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- # Valid token, wrong project
- output = self.app.post(
- '/api/0/test2/watchers/update', headers=headers)
- self.assertEqual(output.status_code, 401)
- data = json.loads(output.get_data(as_text=True))
- self.assertEqual(pagure.api.APIERROR.EINVALIDTOK.name,
- data['error_code'])
- self.assertEqual(pagure.api.APIERROR.EINVALIDTOK.value, data['error'])
- def test_api_update_project_watchers_no_user_watching(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'status': '42',
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 400)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'error': u'Invalid or incomplete input submitted',
- u'error_code': u'EINVALIDREQ'
- }
- )
- def test_api_update_project_watchers_no_watch_status(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'watcher': 'pingou',
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 400)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'error': u'The watch value of "None" is invalid',
- u'error_code': u'ENOCODE'
- }
- )
- def test_api_update_project_watchers_invalid_status(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'watcher': 'pingou',
- 'status': '42',
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 400)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'error': u'The watch value of "42" is invalid',
- u'error_code': u'ENOCODE'
- }
- )
- def test_api_update_project_watchers_invalid_user(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'watcher': 'example',
- 'status': '2',
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 401)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'error': u'You are not allowed to modify this project',
- u'error_code': u'EMODIFYPROJECTNOTALLOWED'
- }
- )
- def test_api_update_project_watchers_other_user(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'watcher': 'foo',
- 'status': '2',
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 401)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'error': u'You are not allowed to modify this project',
- u'error_code': u'EMODIFYPROJECTNOTALLOWED'
- }
- )
- def test_api_update_project_watchers_all_good(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'watcher': 'pingou',
- 'status': 1,
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 200)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'message': u'You are now watching issues and PRs on this project',
- u'status': u'ok'
- }
- )
- @patch('pagure.utils.is_admin', MagicMock(return_value=True))
- def test_api_update_project_watchers_other_user_admin(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'watcher': 'foo',
- 'status': '2',
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 200)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'message': u'You are now watching commits on this project',
- u'status': u'ok'
- }
- )
- @patch('pagure.utils.is_admin', MagicMock(return_value=True))
- def test_api_update_project_watchers_invalid_user_admin(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'watcher': 'example',
- 'status': '2',
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 400)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'error': u'Invalid or incomplete input submitted',
- u'error_code': u'EINVALIDREQ'
- }
- )
- @patch('pagure.utils.is_admin', MagicMock(return_value=True))
- def test_api_update_project_watchers_missing_user_admin(self):
- """ Test the api_update_project_watchers method of the flask api. """
- headers = {'Authorization': 'token aaabbbcccddd'}
- data = {
- 'status': '2',
- }
- output = self.app.post(
- '/api/0/test/watchers/update', headers=headers, data=data)
- self.assertEqual(output.status_code, 400)
- data = json.loads(output.get_data(as_text=True))
- self.assertDictEqual(
- data,
- {
- u'error': u'Invalid or incomplete input submitted',
- u'error_code': u'EINVALIDREQ'
- }
- )
- if __name__ == '__main__':
- unittest.main(verbosity=2)
|