storyboard/storyboard/tests/api/test_comments.py

85 lines
3.0 KiB
Python

# Copyright (c) 2014 Mirantis Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from storyboard.tests import base
class TestComments(base.FunctionalTest):
def setUp(self):
super(TestComments, self).setUp()
self.comments_resource = '/stories/%s/comments'
self.story_id = 2
self.comment_01 = {
'content': 'Just a comment passing by'
}
self.comment_02 = {
'content': 'And another one'
}
self.default_headers['Authorization'] = 'Bearer valid_superuser_token'
def test_comments_endpoint(self):
response = self.get_json(self.comments_resource % self.story_id)
self.assertEqual(0, len(response))
def test_comments_privacy(self):
url = '/stories/6/comments'
response = self.get_json(url, expect_errors=True)
self.assertEqual(200, response.status_code)
self.assertEqual(1, len(response.json))
# The user with token `valid_user_token` can't see the story, and
# so shouldn't be able to see the comment
headers = {'Authorization': 'Bearer valid_user_token'}
response = self.get_json(url, headers=headers, expect_errors=True)
self.assertEqual(0, len(response.json))
# Unauthenticated users shouldn't be able to see anything in private
# stories
self.default_headers.pop('Authorization')
response = self.get_json(url, expect_errors=True)
self.assertEqual(0, len(response.json))
def test_create(self):
self.post_json(self.comments_resource % self.story_id, self.comment_01)
self.post_json(self.comments_resource % self.story_id, self.comment_02)
all_comments = self.get_json(self.comments_resource % self.story_id)
self.assertEqual(2, len(all_comments))
non_existing_comments = self.get_json(self.comments_resource % "123")
self.assertEqual([], non_existing_comments)
def test_update(self):
original = self.post_json(self.comments_resource % self.story_id,
self.comment_01)
original_event = original.json
delta = {
'id': original_event['comment_id'],
'content': 'Updated content',
'is_active': True
}
original_id = original_event['comment_id']
update_url = self.comments_resource % self.story_id + \
"/%d" % original_id
response = self.put_json(update_url, delta, expect_errors=True)
self.assertEqual(405, response.status_code)