Parent: [c2e3f8] (diff)

Child: [aabd32] (diff)

Download this file

test_artifact.py    138 lines (126 with data), 4.4 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
# -*- coding: utf-8 -*-
"""
Model tests for artifact
"""
import re
from datetime import datetime
from pylons import c, g
from nose.tools import assert_raises
import mock
from ming import schema as S
from ming.base import Object
from ming.orm.property import FieldProperty
from ming.orm.ormsession import ThreadLocalORMSession
import allura.model.artifact
from allura import model as M
from allura.lib import helpers as h
from allura.lib.custom_middleware import MagicalC, environ as ENV
from allura.lib.app_globals import Globals
from forgewiki import model as WM
class Checkmessage(M.Message):
class __mongometa__:
name='checkmessage'
def url(self):
return ''
def __init__(self, **kw):
super(Checkmessage, self).__init__(**kw)
if self.slug is not None and self.full_slug is None:
self.full_slug = datetime.utcnow().strftime('%Y%m%d%H%M%S') + ':' + self.slug
Checkmessage.compile_all()
def setUp():
g._push_object(Globals())
c._push_object(MagicalC(mock.Mock(), ENV))
ThreadLocalORMSession.close_all()
g.set_project('test')
g.set_app('wiki')
Checkmessage.query.remove({})
WM.Page.query.remove({})
WM.PageHistory.query.remove({})
M.ArtifactLink.query.remove({})
c.user = M.User.query.get(username='test-admin')
Checkmessage.project = c.project
Checkmessage.app_config = c.app.config
def tearDown():
ThreadLocalORMSession.close_all()
def test_artifact():
pg = WM.Page(title='TestPage1')
assert pg.project == c.project
assert pg.project_id == c.project._id
assert pg.app.config == c.app.config
assert pg.app_config == c.app.config
u = M.User.query.get(username='test-user')
pg.give_access('delete', user=u)
ThreadLocalORMSession.flush_all()
assert u.project_role()._id in pg.acl['delete']
pg.revoke_access('delete', user=u)
assert u.project_role()._id not in pg.acl['delete']
idx = pg.index()
assert 'title_s' in idx
assert 'url_s' in idx
assert 'project_id_s' in idx
assert 'mount_point_s' in idx
assert 'type_s' in idx
assert 'id' in idx
assert idx['id'] == pg.index_id()
assert 'text' in idx
assert 'TestPage' in pg.shorthand_id()
def test_artifactlink():
pg = WM.Page(title='TestPage2')
q = M.ArtifactLink.query.find(dict(
project_id=c.project._id,
mount_point='wiki',
link=pg.shorthand_id()))
assert q.count() == 0
ThreadLocalORMSession.flush_all()
assert q.count() == 1
assert M.ArtifactLink.lookup('[TestPage2]')
assert M.ArtifactLink.lookup('[wiki:TestPage2]')
assert M.ArtifactLink.lookup('[Wiki:TestPage2]')
assert M.ArtifactLink.lookup('[/test:wiki:TestPage2]')
assert M.ArtifactLink.lookup('[../test:wiki:TestPage2]')
assert not M.ArtifactLink.lookup('[TestPage2_no_such_page]')
pg.delete()
ThreadLocalORMSession.flush_all()
assert q.count() == 0
def test_gen_messageid():
assert re.match(r'[0-9a-zA-Z]*.wiki@test.p.sourceforge.net', h.gen_message_id())
def test_versioning():
pg = WM.Page(title='TestPage3')
pg.commit()
ThreadLocalORMSession.flush_all()
pg.text = 'Here is some text'
pg.commit()
ThreadLocalORMSession.flush_all()
ss = pg.get_version(1)
assert ss.index()['is_history_b']
assert ss.shorthand_id() == pg.shorthand_id() + '#1'
assert ss.title == pg.title
assert ss.text != pg.text
ss = pg.get_version(-1)
assert ss.index()['is_history_b']
assert ss.shorthand_id() == pg.shorthand_id() + '#2'
assert ss.title == pg.title
assert ss.text == pg.text
assert_raises(IndexError, pg.get_version, 42)
pg.revert(1)
pg.commit()
ThreadLocalORMSession.flush_all()
assert ss.text != pg.text
assert pg.history().count() == 3
def test_messages():
m = Checkmessage()
assert m.author() == c.user
rm1 = m.reply()
assert rm1.slug.startswith(m.slug)
rm2 = rm1.reply()
rm3 = m.reply()
ThreadLocalORMSession.flush_all()
assert rm1 in list(m.descendants())
assert rm2 in list(m.descendants())
assert rm1 in list(m.replies())
assert rm2 not in list(m.replies())
idx = m.index()
assert 'author_user_name_t' in idx
assert 'author_display_name_t' in idx
assert 'timestamp_dt' in idx
assert m.shorthand_id() == m.slug