Parent: [0ce64c] (diff)

Child: [14569f] (diff)

Download this file

test_project.py    112 lines (98 with data), 4.2 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
# -*- 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
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
from mock import MagicMock
def setUp():
setup_basic_test()
setup_with_tools()
@td.with_wiki
def setup_with_tools():
setup_global_objects()
@with_setup(setUp)
def test_project():
assert type(c.project.sidebar_menu()) == list
assert c.project.script_name in c.project.url()
old_proj = c.project
h.set_context('test/sub1', neighborhood='Projects')
assert type(c.project.sidebar_menu()) == list
assert type(c.project.sitemap()) == list
assert c.project.sitemap()[0].label == 'Admin'
assert old_proj in 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 p.script_name in p.url()
assert c.project.shortname == 'test'
assert '<p>' in 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'
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')
# 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():
sp = c.project.new_subproject('test-project-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 c.project.sitemap()[0].label == 'Wiki'
assert c.project.install_app.call_args[0][0] == 'tickets'
assert c.project.ordered_mounts()[0]['ac'].tool_name == 'Wiki'
def test_set_ordinal_to_admin_tool():
assert c.project.sitemap()
assert c.project.app_config('admin').options.ordinal == 100
def test_users_and_roles():
p = c.project
sub = c.project.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()