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
Carlos Ramos Carreño
erp5
Commits
9cd3d20b
Commit
9cd3d20b
authored
Jan 31, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testERP5Catalog py3
parent
ca0f74ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testERP5Catalog.py
...mplateItem/portal_components/test.erp5.testERP5Catalog.py
+5
-5
No files found.
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testERP5Catalog.py
View file @
9cd3d20b
...
...
@@ -572,7 +572,7 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor):
# otherwise it returns the object
self
.
assertEqual
(
obj
,
portal_catalog
.
getObject
(
obj
.
getUid
()).
getObject
())
# but raises KeyError if object is not in catalog
self
.
assertRaises
(
KeyError
,
portal_catalog
.
getObject
,
sys
.
maxint
)
self
.
assertRaises
(
KeyError
,
portal_catalog
.
getObject
,
-
1
)
def
test_getRecordForUid
(
self
):
portal_catalog
=
self
.
getCatalogTool
()
...
...
@@ -584,7 +584,7 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor):
portal_catalog
=
self
.
getCatalogTool
()
obj
=
self
.
_makeOrganisation
()
self
.
assertEqual
(
obj
.
getPath
(),
portal_catalog
.
getpath
(
obj
.
getUid
()))
self
.
assertRaises
(
KeyError
,
portal_catalog
.
getpath
,
sys
.
maxint
)
self
.
assertRaises
(
KeyError
,
portal_catalog
.
getpath
,
-
1
)
def
test_16_newUid
(
self
):
# newUid should not assign the same uid
...
...
@@ -1653,7 +1653,7 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor):
def
test_54_FixIntUid
(
self
):
if
six
.
PY3
:
return
unittest
.
s
kipTest
(
return
unittest
.
S
kipTest
(
"Python3 does not have different types for int and long"
)
portal
=
self
.
getPortal
()
...
...
@@ -3328,7 +3328,7 @@ VALUES
def
test_reindexWithGroupId
(
self
):
CatalogTool
=
type
(
self
.
getCatalogTool
().
aq_base
)
counts
=
[]
orig_catalogObjectList
=
CatalogTool
.
catalogObjectList
.
__func__
orig_catalogObjectList
=
CatalogTool
.
catalogObjectList
def
catalogObjectList
(
self
,
object_list
,
*
args
,
**
kw
):
counts
.
append
(
len
(
object_list
))
return
orig_catalogObjectList
(
self
,
object_list
,
*
args
,
**
kw
)
...
...
@@ -4132,7 +4132,7 @@ VALUES
self
.
assertEqual
(
six
.
moves
.
http_client
.
OK
,
ret
.
getStatus
())
# check if we did not just publish the result of `str(portal_catalog.__call__())`,
# but a proper page
self
.
assertIn
(
'<title>Catalog Tool - portal_catalog'
,
ret
.
getBody
())
self
.
assertIn
(
b
'<title>Catalog Tool - portal_catalog'
,
ret
.
getBody
())
def
testSearchNonAsciiWithTheInitUser
(
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