Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
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
slapos.core
Commits
2ffadf48
Commit
2ffadf48
authored
Nov 20, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assert up to payment.
Also avoid overriding variables, as they are used for assertions.
parent
ae531122
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
15 deletions
+41
-15
master/bt5/slapos_erp5/TestTemplateItem/testSlapOSERP5DefaultScenario.py
...os_erp5/TestTemplateItem/testSlapOSERP5DefaultScenario.py
+40
-14
master/bt5/slapos_erp5/bt/revision
master/bt5/slapos_erp5/bt/revision
+1
-1
No files found.
master/bt5/slapos_erp5/TestTemplateItem/testSlapOSERP5DefaultScenario.py
View file @
2ffadf48
...
...
@@ -390,14 +390,14 @@ class TestSlapOSDefaultScenario(TestSlapOSSecurityMixin):
simulation_movement
.
getStartDate
().
day
())
self
.
assertEqual
(
subscription
.
getPeriodicityMonthDay
(),
simulation_movement
.
getStopDate
().
day
())
delivery
_line
=
simulation_movement
.
getDeliveryValue
()
self
.
assertNotEqual
(
None
,
delivery
_line
)
delivery
=
delivery
_line
.
getParentValue
()
packing_list
_line
=
simulation_movement
.
getDeliveryValue
()
self
.
assertNotEqual
(
None
,
packing_list
_line
)
packing_list
=
packing_list
_line
.
getParentValue
()
self
.
assertEqual
(
'Sale Packing List'
,
delivery
.
getPortalType
())
packing_list
.
getPortalType
())
self
.
assertEqual
(
'delivered'
,
delivery
.
getSimulationState
())
causality_state
=
delivery
.
getCausalityState
()
packing_list
.
getSimulationState
())
causality_state
=
packing_list
.
getCausalityState
()
self
.
assertEqual
(
'solved'
,
causality_state
)
applied_rule_list_l2
=
simulation_movement
.
contentValues
(
...
...
@@ -412,15 +412,42 @@ class TestSlapOSDefaultScenario(TestSlapOSSecurityMixin):
invoice_simulation_movement
.
getResource
())
self
.
assertEqual
(
subscription
.
getRelativeUrl
(),
invoice_simulation_movement
.
getAggregate
())
delivery
_line
=
invoice_simulation_movement
.
getDeliveryValue
()
self
.
assertNotEqual
(
None
,
delivery
_line
)
delivery
=
delivery
_line
.
getParentValue
()
invoice
_line
=
invoice_simulation_movement
.
getDeliveryValue
()
self
.
assertNotEqual
(
None
,
invoice
_line
)
invoice
=
invoice
_line
.
getParentValue
()
self
.
assertEqual
(
'Sale Invoice Transaction'
,
delivery
.
getPortalType
())
self
.
assertEqual
(
'delivered'
,
delivery
.
getSimulationState
())
causality_state
=
delivery
.
getCausalityState
()
invoice
.
getPortalType
())
self
.
assertEqual
(
'delivered'
,
invoice
.
getSimulationState
())
causality_state
=
invoice
.
getCausalityState
()
self
.
assertEqual
(
'solved'
,
causality_state
)
self
.
assertEqual
(
0
,
len
(
delivery
.
checkConsistency
()))
self
.
assertEqual
(
0
,
len
(
invoice
.
checkConsistency
()))
self
.
assertSameSet
([
packing_list
.
getRelativeUrl
()],
invoice
.
getCausalityList
(
portal_type
=
self
.
portal
.
getPortalDeliveryTypeList
()))
self
.
assertSameSet
([
invoice
.
getRelativeUrl
()],
packing_list
.
getCausalityRelatedList
(
portal_type
=
self
.
portal
.
getPortalDeliveryTypeList
()))
# now use causality related to find payment, as walking through simulation
# is really complex
# simulation are tested in unit tests, here the assertions are made on
# document level
payment_list
=
invoice
.
getCausalityRelatedValueList
(
portal_type
=
self
.
portal
.
getPortalDeliveryTypeList
())
self
.
assertEqual
(
1
,
len
(
payment_list
))
payment
=
payment_list
[
0
]
self
.
assertEqual
(
'Payment Transaction'
,
payment
.
getPortalType
())
self
.
assertEqual
(
'delivered'
,
payment
.
getSimulationState
())
causality_state
=
payment
.
getCausalityState
()
self
.
assertEqual
(
'solved'
,
causality_state
)
self
.
assertEqual
(
0
,
len
(
payment
.
checkConsistency
()))
self
.
assertSameSet
([
invoice
.
getRelativeUrl
()],
payment
.
getCausalityList
(
portal_type
=
self
.
portal
.
getPortalDeliveryTypeList
()))
self
.
assertSameSet
([
payment
.
getRelativeUrl
()],
invoice
.
getCausalityRelatedList
(
portal_type
=
self
.
portal
.
getPortalDeliveryTypeList
()))
def
assertOpenSaleOrderCoverage
(
self
,
person_reference
):
self
.
login
()
...
...
@@ -626,4 +653,3 @@ class TestSlapOSDefaultScenario(TestSlapOSSecurityMixin):
default_destination_section_uid
=
person
.
getUid
()):
self
.
assertHostingSubscriptionSimulationCoverage
(
subscription
.
getObject
())
raise
NotImplementedError
(
'Waiting for implementation of payment'
)
master/bt5/slapos_erp5/bt/revision
View file @
2ffadf48
98
\ No newline at end of file
99
\ No newline at end of file
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