| Index: appengine/monorail/tracker/test/issueimport_test.py
|
| diff --git a/appengine/monorail/tracker/test/issueimport_test.py b/appengine/monorail/tracker/test/issueimport_test.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..656e76dcb14653256f56a5ac739e91d4d403fcd6
|
| --- /dev/null
|
| +++ b/appengine/monorail/tracker/test/issueimport_test.py
|
| @@ -0,0 +1,30 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is govered by a BSD-style
|
| +# license that can be found in the LICENSE file or at
|
| +# https://developers.google.com/open-source/licenses/bsd
|
| +
|
| +"""Unittests for the issueimport servlet."""
|
| +
|
| +import unittest
|
| +
|
| +from framework import permissions
|
| +from services import service_manager
|
| +from testing import testing_helpers
|
| +from tracker import issueimport
|
| +
|
| +
|
| +class IssueExportTest(unittest.TestCase):
|
| +
|
| + def setUp(self):
|
| + self.services = service_manager.Services()
|
| + self.servlet = issueimport.IssueImport(
|
| + 'req', 'res', services=self.services)
|
| +
|
| + def testAssertBasePermission(self):
|
| + """Only site admins can import issues."""
|
| + mr = testing_helpers.MakeMonorailRequest(
|
| + perms=permissions.OWNER_ACTIVE_PERMISSIONSET)
|
| + self.assertRaises(permissions.PermissionException,
|
| + self.servlet.AssertBasePermission, mr)
|
| + mr.auth.user_pb.is_site_admin = True
|
| + self.servlet.AssertBasePermission(mr)
|
|
|