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
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
0e01ee91
Commit
0e01ee91
authored
Feb 01, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testTrashTool: py3
parent
9cfe959c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testTrashTool.py
...TemplateItem/portal_components/test.erp5.testTrashTool.py
+4
-4
No files found.
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testTrashTool.py
View file @
0e01ee91
...
...
@@ -267,7 +267,7 @@ class TestTrashTool(ERP5TypeTestCase):
bc_path
=
base_category
.
getPath
().
split
(
'/'
)[
2
:
-
1
]
# check backup
backup_subobjects_ids
=
trash
.
backupObject
(
trashbin
,
bc_path
,
bc_id
,
save
=
1
)
self
.
assert
True
(
backup_subobjects_ids
.
keys
().
sort
()
==
list
(
subobjects_ids
).
sort
(
))
self
.
assert
Equal
(
sorted
(
backup_subobjects_ids
.
keys
()),
sorted
(
subobjects_ids
))
def
stepBackupFolderObjectsWithSave
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
"""
...
...
@@ -297,7 +297,7 @@ class TestTrashTool(ERP5TypeTestCase):
bc_path
=
base_category
.
getPath
().
split
(
'/'
)[
1
:
-
1
]
# check backup
backup_subobjects_ids
=
trash
.
backupObject
(
trashbin
,
bc_path
,
bc_id
,
save
=
0
)
self
.
assert
True
(
backup_subobjects_ids
.
keys
().
sort
()
==
list
(
subobjects_ids
).
sort
(
))
self
.
assert
Equal
(
sorted
(
backup_subobjects_ids
.
keys
()),
sorted
(
subobjects_ids
))
def
stepBackupObjectsWithKeepingSubobjects
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
"""
...
...
@@ -359,8 +359,8 @@ class TestTrashTool(ERP5TypeTestCase):
def
stepCheckRestore
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
bc_id
=
sequence
.
get
(
'bc_id'
)
bc
=
self
.
portal
.
portal_categories
[
bc_id
]
self
.
assert
True
(
sorted
(
bc
.
objectIds
())
==
sorted
(
sequence
.
get
(
'category_id_list'
))
self
.
assert
Equal
(
sorted
(
bc
.
objectIds
())
,
sorted
(
sequence
.
get
(
'category_id_list'
))
)
self
.
assertEqual
(
len
(
...
...
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