Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
edce497a
"README.md" did not exist on "6db42241c4dd5b9f66fee7d857b14c4fadf8a025"
Commit
edce497a
authored
5 years ago
by
Claudio Heckler
Committed by
Fabian Affolter
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
New date_time_utc display option added to the time_date sensor platform (#30158)
parent
059e8722
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
homeassistant/components/time_date/sensor.py
+5
-1
5 additions, 1 deletion
homeassistant/components/time_date/sensor.py
tests/components/time_date/test_sensor.py
+47
-2
47 additions, 2 deletions
tests/components/time_date/test_sensor.py
with
52 additions
and
3 deletions
homeassistant/components/time_date/sensor.py
+
5
−
1
View file @
edce497a
...
...
@@ -20,7 +20,8 @@ OPTION_TYPES = {
"
time
"
:
"
Time
"
,
"
date
"
:
"
Date
"
,
"
date_time
"
:
"
Date & Time
"
,
"
date_time_iso
"
:
"
Date & Time ISO
"
,
"
date_time_utc
"
:
"
Date & Time (UTC)
"
,
"
date_time_iso
"
:
"
Date & Time (ISO)
"
,
"
time_date
"
:
"
Time & Date
"
,
"
beat
"
:
"
Internet Time
"
,
"
time_utc
"
:
"
Time (UTC)
"
,
...
...
@@ -102,6 +103,7 @@ class TimeDateSensor(Entity):
time
=
dt_util
.
as_local
(
time_date
).
strftime
(
TIME_STR_FORMAT
)
time_utc
=
time_date
.
strftime
(
TIME_STR_FORMAT
)
date
=
dt_util
.
as_local
(
time_date
).
date
().
isoformat
()
date_utc
=
time_date
.
date
().
isoformat
()
# Calculate Swatch Internet Time.
time_bmt
=
time_date
+
timedelta
(
hours
=
1
)
...
...
@@ -119,6 +121,8 @@ class TimeDateSensor(Entity):
self
.
_state
=
date
elif
self
.
type
==
"
date_time
"
:
self
.
_state
=
f
"
{
date
}
,
{
time
}
"
elif
self
.
type
==
"
date_time_utc
"
:
self
.
_state
=
f
"
{
date_utc
}
,
{
time_utc
}
"
elif
self
.
type
==
"
time_date
"
:
self
.
_state
=
f
"
{
time
}
,
{
date
}
"
elif
self
.
type
==
"
time_utc
"
:
...
...
This diff is collapsed.
Click to expand it.
tests/components/time_date/test_sensor.py
+
47
−
2
View file @
edce497a
"""
The tests for
Kira
sensor platform.
"""
"""
The tests for
time_date
sensor platform.
"""
import
unittest
from
unittest.mock
import
patch
...
...
@@ -9,7 +9,7 @@ from tests.common import get_test_home_assistant
class
TestTimeDateSensor
(
unittest
.
TestCase
):
"""
Tests the
Kira
Sensor platform.
"""
"""
Tests the
time_date
Sensor platform.
"""
# pylint: disable=invalid-name
DEVICES
=
[]
...
...
@@ -67,6 +67,14 @@ class TestTimeDateSensor(unittest.TestCase):
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
00:54
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date_time
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
2017-05-18, 00:54
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date_time_utc
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
2017-05-18, 00:54
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
beat
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
@079
"
...
...
@@ -75,6 +83,41 @@ class TestTimeDateSensor(unittest.TestCase):
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
2017-05-18T00:54:00
"
def
test_states_non_default_timezone
(
self
):
"""
Test states of sensors in a timezone other than UTC.
"""
new_tz
=
dt_util
.
get_time_zone
(
"
America/New_York
"
)
assert
new_tz
is
not
None
dt_util
.
set_default_time_zone
(
new_tz
)
now
=
dt_util
.
utc_from_timestamp
(
1495068856
)
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
time
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
20:54
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
2017-05-17
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
time_utc
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
00:54
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date_time
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
2017-05-17, 20:54
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date_time_utc
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
2017-05-18, 00:54
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
beat
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
@079
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date_time_iso
"
)
device
.
_update_internal_state
(
now
)
assert
device
.
state
==
"
2017-05-17T20:54:00
"
# pylint: disable=no-member
def
test_timezone_intervals
(
self
):
"""
Test date sensor behavior in a timezone besides UTC.
"""
...
...
@@ -122,5 +165,7 @@ class TestTimeDateSensor(unittest.TestCase):
assert
device
.
icon
==
"
mdi:calendar
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date_time
"
)
assert
device
.
icon
==
"
mdi:calendar-clock
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date_time_utc
"
)
assert
device
.
icon
==
"
mdi:calendar-clock
"
device
=
time_date
.
TimeDateSensor
(
self
.
hass
,
"
date_time_iso
"
)
assert
device
.
icon
==
"
mdi:calendar-clock
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment