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
139
Merge Requests
139
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
118beac2
Commit
118beac2
authored
Jul 06, 2016
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
calendar: add a test for calendar assignent with day light saving switch
parent
0186ac99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
product/ERP5/tests/testCalendar.py
product/ERP5/tests/testCalendar.py
+40
-0
No files found.
product/ERP5/tests/testCalendar.py
View file @
118beac2
...
...
@@ -928,6 +928,46 @@ class TestCalendar(ERP5ReportTestCase):
presence_request
.
setDestinationValue
(
person
)
self
.
assertEqual
(
0
,
len
(
presence_request
.
checkConsistency
()))
def
test_GroupCalendarPeriodicityDayLightSaving
(
self
):
"""Test group calendar periodicity handles day light saving.
If we configure "every day from 09:00 to 12:00 in Europe/Paris time", this is 09:00 GMT+1 or
09:00 GMT+1 according to daylight saving time.
"""
node
=
self
.
portal
.
organisation_module
.
newContent
(
portal_type
=
'Organisation'
,)
group_calendar
=
self
.
portal
.
group_calendar_module
.
newContent
(
portal_type
=
'Group Calendar'
)
group_calendar_period
=
group_calendar
.
newContent
(
portal_type
=
'Group Presence Period'
)
# In 2008, DST switch was Sunday 30 march
group_calendar_period
.
setStartDate
(
'2008/03/29 09:00:00 Europe/Paris'
)
group_calendar_period
.
setStopDate
(
'2008/03/29 12:00:00 Europe/Paris'
)
group_calendar_period
.
setQuantity
(
10
)
group_calendar_period
.
setResourceValue
(
self
.
portal
.
portal_categories
.
calendar_period_type
.
type1
)
group_calendar_period
.
setPeriodicityDayFrequency
(
1
)
group_calendar_period
.
setPeriodicityStopDate
(
DateTime
(
'2008/12/31 00:00:00 Europe/Paris'
))
self
.
tic
()
assignment
=
self
.
portal
.
group_calendar_assignment_module
.
newContent
(
specialise_value
=
group_calendar
,
resource_value
=
self
.
portal
.
portal_categories
.
calendar_period_type
.
type1
,
start_date
=
DateTime
(
'2008/03/29 09:00:00 Europe/Paris'
),
stop_date
=
DateTime
(
'2008/04/02 00:00:00 Europe/Paris'
),
destination_value
=
node
)
assignment
.
confirm
()
self
.
tic
()
self
.
assertEqual
([
(
DateTime
(
'2008/03/29 09:00:00 Europe/Paris'
),
DateTime
(
'2008/03/29 12:00:00 Europe/Paris'
)
),
(
DateTime
(
'2008/03/30 09:00:00 Europe/Paris'
),
DateTime
(
'2008/03/30 12:00:00 Europe/Paris'
)
),
(
DateTime
(
'2008/03/31 09:00:00 Europe/Paris'
),
DateTime
(
'2008/03/31 12:00:00 Europe/Paris'
)
),
(
DateTime
(
'2008/04/01 09:00:00 Europe/Paris'
),
DateTime
(
'2008/04/01 12:00:00 Europe/Paris'
)
),
],
[
(
m
.
getStopDate
(),
m
.
getStartDate
())
for
m
in
assignment
.
asMovementList
()
]
)
def
test_SimpleLeaveRequestWithSameDateAsGroupCalendar
(
self
):
group_calendar
=
self
.
portal
.
group_calendar_module
.
newContent
(
portal_type
=
'Group Calendar'
)
...
...
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