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
Lukas Niegsch
erp5
Commits
7f4d8569
Commit
7f4d8569
authored
Aug 28, 2013
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Catalog: test for collation and case sensitivity
parent
3e864237
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
product/ERP5Catalog/tests/testERP5Catalog.py
product/ERP5Catalog/tests/testERP5Catalog.py
+20
-0
No files found.
product/ERP5Catalog/tests/testERP5Catalog.py
View file @
7f4d8569
...
@@ -662,6 +662,26 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor):
...
@@ -662,6 +662,26 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor):
person_module
.
searchFolder
(
title
=
title
)]
person_module
.
searchFolder
(
title
=
title
)]
self
.
assertEquals
([
'5'
],
folder_object_list
)
self
.
assertEquals
([
'5'
],
folder_object_list
)
def
test_Collation
(
self
):
person_module
=
self
.
getPersonModule
()
title
=
'Sébastien'
person
=
person_module
.
newContent
(
id
=
'5'
,
portal_type
=
'Person'
,
title
=
title
)
person
.
immediateReindexObject
()
folder_object_list
=
[
x
.
getObject
().
getId
()
for
x
in
person_module
.
searchFolder
(
title
=
title
)]
self
.
assertEquals
([
'5'
],
folder_object_list
)
# Searching for Sebastien should also find Sébastien
folder_object_list
=
[
x
.
getObject
().
getId
()
for
x
in
person_module
.
searchFolder
(
title
=
'Sebastien'
)]
self
.
assertEquals
([
'5'
],
folder_object_list
)
# Same for sebastien, as catalog searches are case insensitive
folder_object_list
=
[
x
.
getObject
().
getId
()
for
x
in
person_module
.
searchFolder
(
title
=
'sebastien'
)]
self
.
assertEquals
([
'5'
],
folder_object_list
)
def
test_20_SearchFolderWithDynamicRelatedKey
(
self
):
def
test_20_SearchFolderWithDynamicRelatedKey
(
self
):
# Create some objects
# Create some objects
...
...
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