view kallithea/tests/functional/test_repo_groups.py @ 5922:7f2aa3ec2931

pytest migration: rename TestControllerPytest back to TestController The name TestControllerPytest was introduced to allow a temporary situation where nose/unittest and pytest-based tests could coexist. This situation is now over, so the base test class can be renamed again.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Sun, 15 May 2016 22:37:37 +0200
parents 5adc4ad9ce77
children 32b674ab4878
line wrap: on
line source

from kallithea.tests import *


class TestRepoGroupsController(TestController):

    def test_index(self):
        self.log_user()
        response = self.app.get(url('repos_groups'))
        response.mustcontain('{"totalRecords": 0, "sort": null, "startIndex": 0, "dir": "asc", "records": []};')

#    def test_create(self):
#        response = self.app.post(url('repos_groups'))

    def test_new(self):
        self.log_user()
        response = self.app.get(url('new_repos_group'))

    def test_new_by_regular_user(self):
        self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS)
        response = self.app.get(url('new_repos_group'), status=403)
#
#    def test_update(self):
#        response = self.app.put(url('repos_group', group_name=1))
#
#    def test_delete(self):
#        self.log_user()
#        response = self.app.delete(url('repos_group', group_name=1))
#
#    def test_show(self):
#        response = self.app.get(url('repos_group', group_name=1))
#
#    def test_edit(self):
#        response = self.app.get(url('edit_repo_group', group_name=1))