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
|
# Copyright 2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Tests for the various rules around question comment visibility."""
__metaclass__ = type
from zope.component import getUtility
from zope.security.proxy import removeSecurityProxy
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
from lp.coop.answersbugs.visibility import (
TestHideMessageControlMixin,
TestMessageVisibilityMixin,
)
from lp.testing import (
BrowserTestCase,
person_logged_in,
)
from lp.testing.layers import DatabaseFunctionalLayer
class TestQuestionMessageVisibility(
BrowserTestCase, TestMessageVisibilityMixin):
layer = DatabaseFunctionalLayer
def makeHiddenMessage(self):
"""Required by the mixin."""
administrator = getUtility(ILaunchpadCelebrities).admin.teamowner
with person_logged_in(administrator):
question = self.factory.makeQuestion()
comment = question.addComment(administrator, self.comment_text)
removeSecurityProxy(comment).message.visible = False
return question
def getView(self, context, user=None, no_login=False):
"""Required by the mixin."""
view = self.getViewBrowser(
context=context,
user=user,
no_login=no_login)
return view
class TestHideQuestionMessageControls(
BrowserTestCase, TestHideMessageControlMixin):
layer = DatabaseFunctionalLayer
control_text = 'mark-spam-0'
def getContext(self, comment_owner=None):
"""Required by the mixin."""
administrator = getUtility(ILaunchpadCelebrities).admin.teamowner
question = self.factory.makeQuestion()
body = self.factory.getUniqueString()
with person_logged_in(administrator):
question.addComment(administrator, body)
return question
def getView(self, context, user=None, no_login=False):
"""Required by the mixin."""
view = self.getViewBrowser(
context=context,
user=user,
no_login=no_login)
return view
|