mirror of
https://github.com/home-assistant/core.git
synced 2026-09-03 12:02:16 +01:00
36 lines
1002 B
Python
36 lines
1002 B
Python
"""Constants for the samsungtv tests."""
|
|
SAMPLE_APP_LIST = [
|
|
{
|
|
"appId": "111299001912",
|
|
"app_type": 2,
|
|
"icon": "/opt/share/webappservice/apps_icon/FirstScreen/111299001912/250x250.png",
|
|
"is_lock": 0,
|
|
"name": "YouTube",
|
|
},
|
|
{
|
|
"appId": "3201608010191",
|
|
"app_type": 2,
|
|
"icon": "/opt/share/webappservice/apps_icon/FirstScreen/3201608010191/250x250.png",
|
|
"is_lock": 0,
|
|
"name": "Deezer",
|
|
},
|
|
{
|
|
"appId": "3201606009684",
|
|
"app_type": 2,
|
|
"icon": "/opt/share/webappservice/apps_icon/FirstScreen/3201606009684/250x250.png",
|
|
"is_lock": 0,
|
|
"name": "Spotify - Music and Podcasts",
|
|
},
|
|
]
|
|
|
|
SAMPLE_DEVICE_INFO_WIFI = {
|
|
"id": "uuid:be9554b9-c9fb-41f4-8920-22da015376a4",
|
|
"device": {
|
|
"modelName": "82GXARRS",
|
|
"wifiMac": "aa:bb:ww:ii:ff:ii",
|
|
"name": "[TV] Living Room",
|
|
"type": "Samsung SmartTV",
|
|
"networkType": "wireless",
|
|
},
|
|
}
|