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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
erp5
Commits
e6ad58fb
Commit
e6ad58fb
authored
Oct 13, 2022
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zope4: depend on Zope 4.8.3 ( unreleased 68f0c122 )
parent
3307b024
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
11 deletions
+9
-11
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testAutoLogout.py
...emplateItem/portal_components/test.erp5.testAutoLogout.py
+4
-2
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testERP5Type.py
...tTemplateItem/portal_components/test.erp5.testERP5Type.py
+0
-4
bt5/erp5_oauth_facebook_login/TestTemplateItem/portal_components/test.erp5.testFacebookLogin.py
...lateItem/portal_components/test.erp5.testFacebookLogin.py
+1
-1
bt5/erp5_oauth_google_login/TestTemplateItem/portal_components/test.erp5.testGoogleLogin.py
...mplateItem/portal_components/test.erp5.testGoogleLogin.py
+1
-1
bt5/erp5_openid_connect_client_login/TestTemplateItem/portal_components/test.erp5.testOpenIdConnectLogin.py
...tem/portal_components/test.erp5.testOpenIdConnectLogin.py
+1
-1
product/ERP5Security/tests/testERP5Security.py
product/ERP5Security/tests/testERP5Security.py
+2
-2
No files found.
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testAutoLogout.py
View file @
e6ad58fb
...
...
@@ -34,6 +34,8 @@ import unittest
import
urllib
from
Products.ERP5Type.tests.ERP5TypeTestCase
import
ERP5TypeTestCase
from
DateTime
import
DateTime
from
ZPublisher.cookie
import
normalizeCookieParameterName
class
TestAuoLogout
(
ERP5TypeTestCase
):
"""
...
...
@@ -87,7 +89,7 @@ class TestAuoLogout(ERP5TypeTestCase):
# check '__ac' cookie has set an expire timeout
ac_cookie
=
response
.
getCookie
(
'__ac'
)
self
.
assertNotEqual
(
ac_cookie
,
None
)
cookie_expire
=
ac_cookie
[
'expires'
]
cookie_expire
=
ac_cookie
[
normalizeCookieParameterName
(
'expires'
)
]
one_second
=
1
/
24.0
/
60.0
/
60.0
self
.
assertGreater
((
now
+
(
5
+
1
)
*
one_second
),
DateTime
(
cookie_expire
))
# give 1s tollerance
...
...
@@ -100,7 +102,7 @@ class TestAuoLogout(ERP5TypeTestCase):
self
.
assertIn
(
'Welcome to ERP5'
,
response
.
getBody
())
ac_cookie
=
response
.
getCookie
(
'__ac'
)
self
.
assertNotEqual
(
ac_cookie
,
None
)
self
.
assertEqual
(
ac_cookie
.
get
(
'expires'
,
None
),
None
)
self
.
assertEqual
(
ac_cookie
.
get
(
normalizeCookieParameterName
(
'expires'
)
,
None
),
None
)
def
test_suite
():
suite
=
unittest
.
TestSuite
()
...
...
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testERP5Type.py
View file @
e6ad58fb
...
...
@@ -3285,10 +3285,6 @@ def test_suite():
add_tests
(
suite
,
ZPublisher
.
tests
.
testHTTPRequest
)
import
ZPublisher.tests.testHTTPResponse
testHTTPResponse_TestHeaderEncodingRegistry_test_encode_words
=
\
ZPublisher
.
tests
.
testHTTPResponse
.
TestHeaderEncodingRegistry
.
test_encode_words
ZPublisher
.
tests
.
testHTTPResponse
.
TestHeaderEncodingRegistry
.
test_encode_words
=
\
unittest
.
expectedFailure
(
testHTTPResponse_TestHeaderEncodingRegistry_test_encode_words
)
add_tests
(
suite
,
ZPublisher
.
tests
.
testHTTPResponse
)
import
ZPublisher.tests.testIterators
...
...
bt5/erp5_oauth_facebook_login/TestTemplateItem/portal_components/test.erp5.testFacebookLogin.py
View file @
e6ad58fb
...
...
@@ -167,7 +167,7 @@ class TestFacebookLogin(ERP5TypeTestCase):
ac_cookie
,
=
[
v
for
(
k
,
v
)
in
response
.
listHeaders
()
if
k
.
lower
()
==
'set-cookie'
and
'__ac_facebook_hash='
in
v
]
self
.
assertIn
(
'; Secure'
,
ac_cookie
)
self
.
assertIn
(
'; H
TTP
Only'
,
ac_cookie
)
self
.
assertIn
(
'; H
ttp
Only'
,
ac_cookie
)
self
.
assertIn
(
'; SameSite=Lax'
,
ac_cookie
)
def
test_create_user_in_ERP5Site_createFacebookUserToOAuth
(
self
):
...
...
bt5/erp5_oauth_google_login/TestTemplateItem/portal_components/test.erp5.testGoogleLogin.py
View file @
e6ad58fb
...
...
@@ -216,7 +216,7 @@ class TestGoogleLogin(GoogleLoginTestCase):
ac_cookie
,
=
[
v
for
(
k
,
v
)
in
response
.
listHeaders
()
if
k
.
lower
()
==
'set-cookie'
and
'__ac_google_hash='
in
v
]
self
.
assertIn
(
'; Secure'
,
ac_cookie
)
self
.
assertIn
(
'; H
TTP
Only'
,
ac_cookie
)
self
.
assertIn
(
'; H
ttp
Only'
,
ac_cookie
)
self
.
assertIn
(
'; SameSite=Lax'
,
ac_cookie
)
def
test_create_user_in_ERP5Site_createGoogleUserToOAuth
(
self
):
...
...
bt5/erp5_openid_connect_client_login/TestTemplateItem/portal_components/test.erp5.testOpenIdConnectLogin.py
View file @
e6ad58fb
...
...
@@ -135,7 +135,7 @@ class TestOpenIdConnectLogin(OpenIdConnectLoginTestCase):
ac_cookie
,
=
[
v
for
(
k
,
v
)
in
response
.
listHeaders
()
if
k
.
lower
()
==
'set-cookie'
and
'__ac_openidconnect_hash='
in
v
]
self
.
assertIn
(
'; Secure'
,
ac_cookie
)
self
.
assertIn
(
'; H
TTP
Only'
,
ac_cookie
)
self
.
assertIn
(
'; H
ttp
Only'
,
ac_cookie
)
self
.
assertIn
(
'; SameSite=Lax'
,
ac_cookie
)
def
test_existing_user
(
self
):
...
...
product/ERP5Security/tests/testERP5Security.py
View file @
e6ad58fb
...
...
@@ -1585,8 +1585,8 @@ class TestAuthenticationCookie(UserManagementTestCase):
# Secure flag so that cookie is sent only on https
self
.
assertIn
(
'; Secure'
,
ac_cookie
)
# H
TTP
Only flag so that javascript cannot access cookie
self
.
assertIn
(
'; H
TTP
Only'
,
ac_cookie
)
# H
ttp
Only flag so that javascript cannot access cookie
self
.
assertIn
(
'; H
ttp
Only'
,
ac_cookie
)
# SameSite=Lax flag so that cookie is not sent on cross origin requests.
# We set Lax (and not strict) so that opening a link to ERP5 from an
...
...
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