2021-03-23 19:28:46 +03:00
|
|
|
# Copyright 2020 Google 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 __future__ import division
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import testing_config # Must be imported before the module under test.
|
|
|
|
|
|
|
|
import mock
|
|
|
|
import werkzeug.exceptions # Flask HTTP stuff.
|
|
|
|
|
2021-05-07 02:37:30 +03:00
|
|
|
# from google.appengine.api import users
|
|
|
|
from framework import users
|
2021-03-24 20:11:13 +03:00
|
|
|
|
|
|
|
from framework import basehandlers
|
2021-03-23 19:28:46 +03:00
|
|
|
from framework import permissions
|
2021-04-28 04:56:37 +03:00
|
|
|
from internals import models
|
2021-03-23 19:28:46 +03:00
|
|
|
|
|
|
|
|
2021-03-24 20:11:13 +03:00
|
|
|
class MockHandler(basehandlers.BaseHandler):
|
2021-03-23 19:28:46 +03:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.called_with = None
|
|
|
|
|
|
|
|
@permissions.require_admin_site
|
|
|
|
def do_get(self, *args):
|
|
|
|
self.called_with = args
|
2021-03-24 20:11:13 +03:00
|
|
|
return {'message': 'did get'}
|
2021-03-23 19:28:46 +03:00
|
|
|
|
2021-03-24 20:11:13 +03:00
|
|
|
@permissions.require_admin_site
|
|
|
|
def do_post(self, *args):
|
|
|
|
self.called_with = args
|
|
|
|
return {'message': 'did post'}
|
2021-03-23 19:28:46 +03:00
|
|
|
|
|
|
|
|
2021-03-24 20:11:13 +03:00
|
|
|
test_app = basehandlers.FlaskApplication(
|
|
|
|
[('/path', MockHandler),
|
|
|
|
],
|
|
|
|
debug=True)
|
|
|
|
|
2021-03-23 19:28:46 +03:00
|
|
|
|
2021-03-24 20:11:13 +03:00
|
|
|
class PermissionFunctionTests(unittest.TestCase):
|
|
|
|
|
2021-06-09 20:35:55 +03:00
|
|
|
def setUp(self):
|
|
|
|
self.app_user = models.AppUser(email='registered@example.com')
|
|
|
|
self.app_user.put()
|
|
|
|
|
|
|
|
self.app_admin = models.AppUser(email='admin@example.com')
|
|
|
|
self.app_admin.is_admin = True
|
|
|
|
self.app_admin.put()
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.app_user.delete()
|
|
|
|
self.app_admin.delete()
|
|
|
|
|
2021-03-24 20:11:13 +03:00
|
|
|
def check_function_results(
|
|
|
|
self, func, additional_args,
|
2021-06-09 20:35:55 +03:00
|
|
|
unregistered='missing', registered='missing',
|
|
|
|
special='missing', admin='missing', anon='missing'):
|
2021-03-24 20:11:13 +03:00
|
|
|
"""Test func under four conditions and check expected results."""
|
2021-06-09 20:35:55 +03:00
|
|
|
# Test unregistered users
|
|
|
|
testing_config.sign_in('unregistered@example.com', 123)
|
|
|
|
user = users.get_current_user()
|
|
|
|
self.assertEqual(unregistered, func(user, *additional_args))
|
|
|
|
|
|
|
|
# Test registered users
|
|
|
|
testing_config.sign_in('registered@example.com', 123)
|
2021-03-24 20:11:13 +03:00
|
|
|
user = users.get_current_user()
|
2021-06-09 20:35:55 +03:00
|
|
|
self.assertEqual(registered, func(user, *additional_args))
|
2021-03-24 20:11:13 +03:00
|
|
|
|
|
|
|
# Test special users
|
|
|
|
# TODO(jrobbins): generalize this.
|
|
|
|
testing_config.sign_in('user@google.com', 123)
|
|
|
|
user = users.get_current_user()
|
|
|
|
self.assertEqual(special, func(user, *additional_args))
|
|
|
|
testing_config.sign_in('user@chromium.org', 123)
|
|
|
|
user = users.get_current_user()
|
|
|
|
self.assertEqual(special, func(user, *additional_args))
|
|
|
|
|
|
|
|
# Test admin users
|
2021-06-09 20:35:55 +03:00
|
|
|
testing_config.sign_in('admin@example.com', 123)
|
2021-03-24 20:11:13 +03:00
|
|
|
user = users.get_current_user()
|
|
|
|
self.assertEqual(admin, func(user, *additional_args))
|
2021-03-23 19:28:46 +03:00
|
|
|
|
2021-03-24 20:11:13 +03:00
|
|
|
# Test anonymous visitors
|
2021-03-23 19:28:46 +03:00
|
|
|
testing_config.sign_out()
|
2021-03-24 20:11:13 +03:00
|
|
|
user = users.get_current_user()
|
|
|
|
self.assertEqual(anon, func(user, *additional_args))
|
|
|
|
|
|
|
|
def test_can_admin_site(self):
|
|
|
|
self.check_function_results(
|
|
|
|
permissions.can_admin_site, tuple(),
|
2021-06-09 20:35:55 +03:00
|
|
|
unregistered=False, registered=False,
|
|
|
|
special=False, admin=True, anon=False)
|
2021-04-28 04:56:37 +03:00
|
|
|
|
2021-03-24 20:11:13 +03:00
|
|
|
def test_can_view_feature(self):
|
|
|
|
self.check_function_results(
|
|
|
|
permissions.can_view_feature, (None,),
|
2021-06-09 20:35:55 +03:00
|
|
|
unregistered=True, registered=True,
|
|
|
|
special=True, admin=True, anon=True)
|
2021-03-24 20:11:13 +03:00
|
|
|
|
|
|
|
def test_can_create_feature(self):
|
|
|
|
self.check_function_results(
|
|
|
|
permissions.can_create_feature, tuple(),
|
2021-06-09 20:35:55 +03:00
|
|
|
unregistered=False, registered=True,
|
|
|
|
special=True, admin=True, anon=False)
|
2021-03-24 20:11:13 +03:00
|
|
|
|
|
|
|
def test_can_edit_any_feature(self):
|
|
|
|
self.check_function_results(
|
|
|
|
permissions.can_edit_any_feature, tuple(),
|
2021-06-09 20:35:55 +03:00
|
|
|
unregistered=False, registered=True,
|
|
|
|
special=True, admin=True, anon=False)
|
2021-03-24 20:11:13 +03:00
|
|
|
|
|
|
|
def test_can_edit_feature(self):
|
|
|
|
self.check_function_results(
|
|
|
|
permissions.can_edit_feature, (None,),
|
2021-06-09 20:35:55 +03:00
|
|
|
unregistered=False, registered=True,
|
|
|
|
special=True, admin=True, anon=False)
|
2021-04-10 01:43:11 +03:00
|
|
|
|
|
|
|
def test_can_approve_feature(self):
|
|
|
|
approvers = []
|
|
|
|
self.check_function_results(
|
|
|
|
permissions.can_approve_feature, (None, approvers),
|
2021-06-09 20:35:55 +03:00
|
|
|
unregistered=False, registered=False,
|
|
|
|
special=False, admin=True, anon=False)
|
2021-04-10 01:43:11 +03:00
|
|
|
|
2021-06-09 20:35:55 +03:00
|
|
|
approvers = ['registered@example.com']
|
2021-04-10 01:43:11 +03:00
|
|
|
self.check_function_results(
|
|
|
|
permissions.can_approve_feature, (None, approvers),
|
2021-06-09 20:35:55 +03:00
|
|
|
unregistered=False, registered=True,
|
|
|
|
special=False, admin=True, anon=False)
|
2021-03-23 19:28:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
class RequireAdminSiteTests(unittest.TestCase):
|
|
|
|
|
2021-06-09 20:35:55 +03:00
|
|
|
def setUp(self):
|
|
|
|
self.app_user = models.AppUser(email='registered@example.com')
|
|
|
|
self.app_user.put()
|
|
|
|
|
|
|
|
self.app_admin = models.AppUser(email='admin@example.com')
|
|
|
|
self.app_admin.is_admin = True
|
|
|
|
self.app_admin.put()
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.app_user.delete()
|
|
|
|
self.app_admin.delete()
|
|
|
|
|
|
|
|
def test_require_admin_site__unregistered_user(self):
|
|
|
|
"""Wrapped method rejects call from an unregistered user."""
|
|
|
|
handler = MockHandler()
|
|
|
|
testing_config.sign_in('unregistered@example.com', 123)
|
|
|
|
with test_app.test_request_context('/path', method='POST'):
|
|
|
|
with self.assertRaises(werkzeug.exceptions.Forbidden):
|
|
|
|
handler.do_post()
|
|
|
|
self.assertEqual(handler.called_with, None)
|
|
|
|
|
|
|
|
def test_require_admin_site__registered_user(self):
|
|
|
|
"""Wrapped method rejects call from registered non-admin user."""
|
2021-03-23 19:28:46 +03:00
|
|
|
handler = MockHandler()
|
2021-06-09 20:35:55 +03:00
|
|
|
testing_config.sign_in('registered@example.com', 123)
|
2021-03-24 20:11:13 +03:00
|
|
|
with test_app.test_request_context('/path', method='POST'):
|
|
|
|
with self.assertRaises(werkzeug.exceptions.Forbidden):
|
|
|
|
handler.do_post()
|
2021-03-23 19:28:46 +03:00
|
|
|
self.assertEqual(handler.called_with, None)
|
|
|
|
|
2021-03-24 20:11:13 +03:00
|
|
|
def test_require_admin_site__googler(self):
|
|
|
|
"""Wrapped method rejects call from googler."""
|
|
|
|
handler = MockHandler()
|
|
|
|
testing_config.sign_in('user@google.com', 123)
|
|
|
|
with test_app.test_request_context('/path', method='POST'):
|
|
|
|
with self.assertRaises(werkzeug.exceptions.Forbidden):
|
|
|
|
handler.do_post()
|
|
|
|
self.assertEqual(handler.called_with, None)
|
|
|
|
|
|
|
|
def test_require_admin_site__admin(self):
|
|
|
|
"""Wrapped method accepts call from an admin user."""
|
2021-03-23 19:28:46 +03:00
|
|
|
handler = MockHandler()
|
2021-06-09 20:35:55 +03:00
|
|
|
testing_config.sign_in('admin@example.com', 123)
|
2021-03-24 20:11:13 +03:00
|
|
|
with test_app.test_request_context('/path'):
|
|
|
|
actual_response = handler.do_get(123, 234)
|
|
|
|
self.assertEqual(handler.called_with, (123, 234))
|
|
|
|
self.assertEqual({'message': 'did get'}, actual_response)
|
|
|
|
|
|
|
|
with test_app.test_request_context('/path', method='POST'):
|
|
|
|
actual_response = handler.do_post(345, 456)
|
|
|
|
self.assertEqual(handler.called_with, (345, 456))
|
|
|
|
self.assertEqual({'message': 'did post'}, actual_response)
|
2021-03-23 19:28:46 +03:00
|
|
|
|
|
|
|
def test_require_admin_site__anon(self):
|
2021-03-24 20:11:13 +03:00
|
|
|
"""Wrapped method rejects call from anon, but offers sign-in."""
|
2021-03-23 19:28:46 +03:00
|
|
|
handler = MockHandler()
|
|
|
|
testing_config.sign_out()
|
2021-03-24 20:11:13 +03:00
|
|
|
with test_app.test_request_context('/path'):
|
|
|
|
actual_response = handler.do_get(123, 234)
|
|
|
|
self.assertEqual(handler.called_with, None)
|
|
|
|
self.assertEqual(302, actual_response.status_code)
|
|
|
|
|
|
|
|
with test_app.test_request_context('/path', method='POST'):
|
|
|
|
with self.assertRaises(werkzeug.exceptions.Forbidden):
|
|
|
|
handler.do_post(345, 456)
|
2021-03-23 19:28:46 +03:00
|
|
|
self.assertEqual(handler.called_with, None)
|