Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sebastian
erp5
Commits
aeea02cf
Commit
aeea02cf
authored
Jun 07, 2011
by
Gabriel Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix my mistake. The automatic approval can be enabled for all tests.
parent
9adaa958
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
22 deletions
+14
-22
product/ERP5/tests/testERP5Credential.py
product/ERP5/tests/testERP5Credential.py
+14
-22
No files found.
product/ERP5/tests/testERP5Credential.py
View file @
aeea02cf
...
...
@@ -68,7 +68,6 @@ class TestERP5Credential(ERP5TypeTestCase):
self
.
createCategories
()
self
.
enableAlarm
()
self
.
validateNotificationMessages
()
self
.
setUpSystemPreference
()
# add a dummy mailhost not to send real messages
if
'MailHost'
in
self
.
portal
.
objectIds
():
self
.
portal
.
manage_delObjects
([
'MailHost'
])
...
...
@@ -90,21 +89,6 @@ class TestERP5Credential(ERP5TypeTestCase):
if
notification_message
.
getValidationState
()
==
'draft'
:
notification_message
.
validate
()
def
setUpSystemPreference
(
self
):
portal_preferences
=
self
.
getPreferenceTool
()
preference
=
getattr
(
portal_preferences
,
'test_site_preference'
,
None
)
if
preference
is
None
:
preference
=
preference
=
portal_preferences
.
newContent
(
portal_type
=
'System Preference'
,
title
=
'Default Site Preference'
,
id
=
'test_site_preference'
)
self
.
stepTic
()
if
preference
.
getPreferenceState
()
==
'disabled'
:
preference
.
enable
()
preference
.
edit
(
preferred_credential_request_automatic_approval
=
True
,
preferred_credential_recovery_automatic_approval
=
True
,
preferred_organisation_credential_update_automatic_approval
=
True
,
preferred_person_credential_update_automatic_approval
=
True
)
@
reindex
def
createCategories
(
self
):
"""Create the categories for our test. """
...
...
@@ -761,10 +745,10 @@ class TestERP5Credential(ERP5TypeTestCase):
def
stepCheckIfMailMessageWasPosted
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
credential_reference
=
sequence
[
"credential_reference"
]
credential_reference
_str
=
sequence
[
"credential_reference"
]
portal_catalog
=
self
.
portal
.
portal_catalog
credential_re
quest
=
portal_catalog
.
getResultValue
(
portal_type
=
"Credential Request"
,
reference
=
credential_reference
)
credential_re
ference
=
portal_catalog
.
getResultValue
(
portal_type
=
"Credential Request"
,
reference
=
credential_reference
_str
)
mail_message
=
portal_catalog
.
getResultValue
(
portal_type
=
"Mail Message"
,
follow_up
=
credential_reference
)
self
.
assertEquals
(
mail_message
.
getSimulationState
(),
"started"
)
...
...
@@ -773,14 +757,17 @@ class TestERP5Credential(ERP5TypeTestCase):
def
testMailMessagePosted
(
self
):
""" Test if the Mail Message was posted correctly """
sequence_list
=
SequenceList
()
sequence_string
=
'CreateCredentialRequestSample '
\
sequence_string
=
'stepSetCredentialRequestAutomaticApprovalPreferences '
\
'CreateCredentialRequestSample '
\
'CheckIfMailMessageWasPosted '
\
'stepUnSetCredentialAutomaticApprovalPreferences'
\
sequence_list
.
addSequenceString
(
sequence_string
)
sequence_list
.
play
(
self
)
def
test_MailFromMailMessageEvent
(
self
):
""" """
self
.
stepSetCredentialRequestAutomaticApprovalPreferences
()
self
.
_createCredentialRequest
(
first_name
=
"Vifib"
,
last_name
=
"Test"
,
reference
=
"vifibtest"
)
...
...
@@ -799,10 +786,12 @@ class TestERP5Credential(ERP5TypeTestCase):
self
.
assertNotEquals
(
re
.
search
(
"Subject
\
:.*Welcome
"
, message_text), None)
self.assertNotEquals(re.search("
Hello
\
Vifib
\
Test
\
,
", message_text), None)
self.assertNotEquals(re.search("
key
\
=
..
%
s
" % mail_message.getReference(), message_text), None)
self.stepUnSetCredentialAutomaticApprovalPreferences()
def testERP5Site_activeLogin(self):
""" Test if the script WebSection_activeLogin will create one user
correctly """
self.stepSetCredentialRequestAutomaticApprovalPreferences()
self._createCredentialRequest()
portal_catalog = self.portal.portal_catalog
credential_request = portal_catalog.getResultValue(portal_type="
Credential
Request
",
...
...
@@ -815,16 +804,19 @@ class TestERP5Credential(ERP5TypeTestCase):
self.stepTic()
person = portal_catalog.getResultValue(reference="
gabriel
", portal_type="
Person
")
self.assertEquals(person.getValidationState(), "
validated
")
self.stepUnSetCredentialAutomaticApprovalPreferences()
def testERP5Site_registerCredentialRequest(self):
""" Test if the script ERP5Site_registerCredentialRequest will create one
Credential Request correctly """
self.stepSetCredentialRequestAutomaticApprovalPreferences()
self._createCredentialRequest()
portal_catalog = self.portal.portal_catalog
credential_request = portal_catalog.getResultValue(portal_type="
Credential
Request
",
reference="
gabriel
")
self.assertEquals(credential_request.getFirstName(), "
Gabriel
")
self.assertEquals(credential_request.getDefaultEmailText(), "
gabriel
@
test
.
com
")
self.stepUnSetCredentialAutomaticApprovalPreferences()
def test_xx_checkCredentialQuestionIsNotCaseSensitive(self):
'''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment