Parent: [3abb2e] (diff)

Child: [c2e3f8] (diff)

Download this file

test_admin.py    209 lines (197 with data), 8.9 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import os, allura
import Image, StringIO
from pylons import g, c
from ming.orm.ormsession import ThreadLocalORMSession
from allura.tests import TestController
from allura import model as M
from allura.lib import helpers as h
class TestProjectAdmin(TestController):
def test_admin_controller(self):
self.app.get('/admin/')
self.app.post('/admin/update', params=dict(
name='Test Project',
shortname='test',
short_description='A Test Project',
description='A long description',
labels='aaa,bbb'))
# Add/Remove a subproject
self.app.post('/admin/update_mounts', params={
'new.install':'install',
'new.ep_name':'',
'new.ordinal':1,
'new.mount_point':'test-subproject',
'new.mount_label':'Test Subproject'})
self.app.post('/admin/update_mounts', params={
'subproject-0.delete':'on',
'subproject-0.shortname':'test/test-subproject',
'new.ep_name':'',
})
# Add/Remove a tool
r = self.app.post('/admin/update_mounts', params={
'new.install':'install',
'new.ep_name':'hello_forge',
'new.ordinal':1,
'new.mount_point':'test-tool',
'new.mount_label':'Test Tool'})
assert 'error' not in r.cookies_set.get('webflash', ''), r.showbrowser()
# check the nav
r = self.app.get('/p/test/test-tool/')
active_link = r.html.findAll('li',{'class':' active'})
assert len(active_link) == 1
assert active_link[0].find('a')['href'] == '/p/test/test-tool/'
r = self.app.post('/admin/update_mounts', params={
'new.install':'install',
'new.ep_name':'hello_forge',
'new.ordinal':1,
'new.mount_point':'test-tool2',
'new.mount_label':'Test Tool2'})
assert 'error' not in r.cookies_set.get('webflash', ''), r.showbrowser()
# check the nav - the similarly named tool should NOT be active
r = self.app.get('/p/test/test-tool/')
active_link = r.html.findAll('li',{'class':' active'})
assert len(active_link) == 1
assert active_link[0].find('a')['href'] == '/p/test/test-tool/'
r = self.app.get('/p/test/test-tool2/')
active_link = r.html.findAll('li',{'class':' active'})
assert len(active_link) == 1
assert active_link[0].find('a')['href'] == '/p/test/test-tool2/'
r = self.app.post('/admin/update_mounts', params={
'new.install':'install',
'new.ep_name':'hello_forge',
'new.ordinal':1,
'new.mount_point':'test-tool',
'new.mount_label':'Test Tool'})
assert 'error' in r.cookies_set.get('webflash', ''), r.showbrowser()
self.app.post('/admin/update_mounts', params={
'tool-0.delete':'on',
'tool-0.mount_point':'test-tool',
'new.ep_name':'',
})
# Update ACL
h.set_context('test', 'hello')
role = M.User.anonymous().project_role()
self.app.post('/admin/update_acl', params={
'permission':'tool',
'new.add':'on',
'new.id':str(role._id)})
self.app.post('/admin/update_acl', params={
'new.id':'',
'permission':'tool',
'role-0.delete':'on',
'role-0.id':str(role._id)})
self.app.post('/admin/update_acl', params={
'permission':'tool',
'new.add':'on',
'new.id':'',
'new.username':'test-user'})
self.app.post('/admin/update_acl', params={
'permission':'tool',
'new.add':'on',
'new.id':'',
'new.username':'no_such_user'})
# Update project roles
self.app.post('/admin/update_roles', params={
'new.add':'on',
'new.name':'test_role'})
role1 = M.ProjectRole.query.find(dict(name='test_role')).one()
self.app.post('/admin/update_roles', params={
'role-0.id':str(role1._id),
'role-0.new.add':'on',
'role-0.new.id':str(role._id),
'new.name':''})
self.app.post('/admin/update_roles', params={
'role-0.id':str(role1._id),
'role-0.new.id':'',
'role-0.subroles-0.delete':'on',
'role-0.subroles-0.id':str(role._id),
'new.name':''})
self.app.post('/admin/update_roles', params={
'role-0.id':str(role1._id),
'role-0.new.id':'',
'role-0.delete':'on',
'new.name':''})
# Create a role when there are no existing roles
self.app.post('/admin/update_roles', params={
'new.add':'on',
'new.name':'test_role',
'role-0.id':str(role1._id)})
def test_tool_list(self):
r = self.app.get('/admin/tools')
new_ep_opts = r.html.find('select',{'class':"new_ep_name"}).findAll('option')
strings = [ opt.string for opt in new_ep_opts ]
assert strings == [
'New Tool',
'External Link',
'Git',
'Mercurial',
'SVN',
'Wiki',
'Tickets',
'Discussion',
'Downloads',
'Mailing List',
'VHOST',
'Classic Hosted Apps',
'MySQL Databases',
'Subproject' ]
def test_project_icon(self):
file_name = 'neo-icon-set-454545-256x350.png'
file_path = os.path.join(allura.__path__[0],'public','nf','images',file_name)
file_data = file(file_path).read()
upload = ('icon', file_name, file_data)
self.app.get('/admin/')
self.app.post('/admin/update', params=dict(
name='Test Project',
shortname='test',
short_description='A Test Project',
description='A long description'),
upload_files=[upload])
r = self.app.get('/p/test/icon')
image = Image.open(StringIO.StringIO(r.body))
assert image.size == (48,48)
def test_project_screenshot(self):
file_name = 'neo-icon-set-454545-256x350.png'
file_path = os.path.join(allura.__path__[0],'public','nf','images',file_name)
file_data = file(file_path).read()
upload = ('screenshot', file_name, file_data)
self.app.get('/admin/')
self.app.post('/admin/update', params=dict(
name='Test Project',
shortname='test',
short_description='A Test Project',
description='A long description'),
upload_files=[upload])
project = M.Project.query.find({'shortname':'test'}).first()
filename = project.get_screenshots()[0].filename
r = self.app.get('/p/test/screenshot/'+filename)
uploaded = Image.open(file_path)
screenshot = Image.open(StringIO.StringIO(r.body))
assert uploaded.size == screenshot.size
r = self.app.get('/p/test/screenshot/'+filename+'/thumb')
thumb = Image.open(StringIO.StringIO(r.body))
assert thumb.size == (150,150)
def test_project_delete_undelete(self):
r = self.app.get('/p/test/admin/overview')
assert 'This project has been deleted and is not visible to non-admin users' not in r
assert r.html.find('input',{'value':'Delete Project'})
assert not r.html.find('input',{'value':'Undelete Project'})
self.app.post('/admin/update', params=dict(
name='Test Project',
shortname='test',
short_description='A Test Project',
description='A long description',
delete='on'))
r = self.app.get('/p/test/admin/overview')
assert 'This project has been deleted and is not visible to non-admin users' in r
assert not r.html.find('input',{'value':'Delete Project'})
assert r.html.find('input',{'value':'Undelete Project'})
self.app.post('/admin/update', params=dict(
name='Test Project',
shortname='test',
short_description='A Test Project',
description='A long description',
undelete='on'))
r = self.app.get('/p/test/admin/overview')
assert 'This project has been deleted and is not visible to non-admin users' not in r
assert r.html.find('input',{'value':'Delete Project'})
assert not r.html.find('input',{'value':'Undelete Project'})