Parent: [e7850d] (diff)

Download this file

test_project.py    141 lines (124 with data), 5.5 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# -*- coding: utf-8 -*-
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
"""
Model tests for project
"""
from nose.tools import with_setup, assert_equals, assert_in
from pylons import tmpl_context as c
from ming.orm.ormsession import ThreadLocalORMSession
from allura import model as M
from allura.lib import helpers as h
from allura.tests import decorators as td
from alluratest.controller import setup_basic_test, setup_global_objects
from allura.lib.exceptions import ToolError, Invalid
from mock import MagicMock, patch
def setUp():
setup_basic_test()
setup_with_tools()
@td.with_wiki
def setup_with_tools():
setup_global_objects()
def test_project():
assert_equals(type(c.project.sidebar_menu()), list)
assert_in(c.project.script_name, c.project.url())
old_proj = c.project
h.set_context('test/sub1', neighborhood='Projects')
assert_equals(type(c.project.sidebar_menu()), list)
assert_equals(type(c.project.sitemap()), list)
assert_equals(c.project.sitemap()[1].label, 'Admin')
assert_in(old_proj, list(c.project.parent_iter()))
h.set_context('test', 'wiki', neighborhood='Projects')
adobe_nbhd = M.Neighborhood.query.get(name='Adobe')
p = M.Project.query.get(shortname='adobe-1', neighborhood_id=adobe_nbhd._id)
# assert 'http' in p.url() # We moved adobe into /adobe/, not http://adobe....
assert_in(p.script_name, p.url())
assert_equals(c.project.shortname, 'test')
assert_in('<p>', c.project.description_html)
c.project.uninstall_app('hello-test-mount-point')
ThreadLocalORMSession.flush_all()
c.project.install_app('Wiki', 'hello-test-mount-point')
c.project.support_page = 'hello-test-mount-point'
assert_equals(c.project.app_config('wiki').tool_name, 'wiki')
ThreadLocalORMSession.flush_all()
with td.raises(ToolError):
# already installed
c.project.install_app('Wiki', 'hello-test-mount-point')
ThreadLocalORMSession.flush_all()
c.project.uninstall_app('hello-test-mount-point')
ThreadLocalORMSession.flush_all()
with td.raises(ToolError):
# mount point reserved
c.project.install_app('Wiki', 'feed')
with td.raises(ToolError):
# mount point too long
c.project.install_app('Wiki', 'a' * 64)
with td.raises(ToolError):
# mount point must begin with letter
c.project.install_app('Wiki', '1')
# single letter mount points are allowed
c.project.install_app('Wiki', 'a')
# Make sure the project support page is reset if the tool it was pointing
# to is uninstalled.
assert c.project.support_page == ''
app_config = c.project.app_config('hello')
app_inst = c.project.app_instance(app_config)
app_inst = c.project.app_instance('hello')
app_inst = c.project.app_instance('hello2123')
c.project.breadcrumbs()
c.app.config.breadcrumbs()
def test_subproject():
project = M.Project.query.get(shortname='test')
with td.raises(ToolError):
with patch('allura.lib.plugin.ProjectRegistrationProvider') as Provider:
Provider.get().shortname_validator.to_python.side_effect = Invalid('name', 'value', {})
# name doesn't validate
sp = project.new_subproject('test-proj-nose')
sp = project.new_subproject('test-proj-nose')
spp = sp.new_subproject('spp')
ThreadLocalORMSession.flush_all()
sp.delete()
ThreadLocalORMSession.flush_all()
@td.with_wiki
def test_anchored_tools():
c.project.neighborhood.anchored_tools = 'wiki:Wiki, tickets:Ticket'
c.project.install_app = MagicMock()
assert_equals(c.project.sitemap()[0].label, 'Wiki')
assert_equals(c.project.install_app.call_args[0][0], 'tickets')
assert_equals(c.project.ordered_mounts()[0]['ac'].tool_name, 'wiki')
def test_set_ordinal_to_admin_tool():
with h.push_config(c,
user=M.User.anonymous(),
project=M.Project.query.get(shortname='test')):
assert c.project.sitemap()
assert c.project.app_config('admin').options.ordinal == 100
def test_users_and_roles():
p = M.Project.query.get(shortname='test')
sub = p.direct_subprojects.next()
u = M.User.by_username('test-admin')
assert p.users_with_role('Admin') == [u]
assert p.users_with_role('Admin') == sub.users_with_role('Admin')
assert p.users_with_role('Admin') == p.admins()
def test_project_disabled_users():
p = M.Project.query.get(shortname='test')
users = p.users()
assert users[0].username == 'test-admin'
user = M.User.by_username('test-admin')
user.disabled = True
ThreadLocalORMSession.flush_all()
users = p.users()
assert users == []