1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
# serializer version: 1
# name: test_mower_snapshot[battery]
dict({
'battery_percent': 50,
})
# ---
# name: test_mower_snapshot[calendar]
dict({
'events': list([
dict({
'end': FakeDatetime(2024, 5, 13, 2, 49),
'rrule': 'FREQ=WEEKLY;BYDAY=MO',
'start': FakeDatetime(2024, 5, 13, 2, 0),
'uid': '120_49_MO',
'work_area_id': None,
'work_area_name': '',
}),
]),
'tasks': list([
dict({
'duration': 49,
'friday': False,
'monday': True,
'saturday': False,
'start': 120,
'sunday': False,
'thursday': False,
'tuesday': False,
'wednesday': False,
'work_area_id': None,
'work_area_name': '',
}),
]),
})
# ---
# name: test_mower_snapshot[capabilities]
dict({
'headlights': False,
'position': False,
'stay_out_zones': False,
'work_areas': False,
})
# ---
# name: test_mower_snapshot[metadata]
dict({
'connected': True,
'status_dateteime': FakeDatetime(2023, 10, 18, 22, 58, 52, 683000, tzinfo=datetime.timezone.utc),
})
# ---
# name: test_mower_snapshot[mower]
dict({
'activity': 'PARKED_IN_CS',
'error_code': 0,
'error_datetime_naive': None,
'error_key': None,
'error_timestamp': 0,
'inactive_reason': 'NONE',
'is_error_confirmable': False,
'mode': 'MAIN_AREA',
'state': 'RESTRICTED',
'work_area_id': None,
'work_area_name': None,
})
# ---
# name: test_mower_snapshot[planner]
dict({
'next_start': 1685991600000,
'next_start_datetime_naive': FakeDatetime(2023, 6, 5, 19, 0),
'override': dict({
'action': 'NOT_ACTIVE',
}),
'restricted_reason': 'WEEK_SCHEDULE',
})
# ---
# name: test_mower_snapshot[positions]
list([
])
# ---
# name: test_mower_snapshot[settings]
dict({
'cutting_height': None,
'headlight': dict({
'mode': None,
}),
})
# ---
# name: test_mower_snapshot[statistics]
dict({
'cutting_blade_usage_time': None,
'number_of_charging_cycles': None,
'number_of_collisions': None,
'total_charging_time': None,
'total_cutting_time': None,
'total_drive_distance': None,
'total_running_time': None,
'total_searching_time': None,
})
# ---
# name: test_mower_snapshot[stay_out_zones]
None
# ---
# name: test_mower_snapshot[system]
dict({
'model': 'Automower Aspire',
'name': 'Test Mower 1',
'serial_number': 123,
})
# ---
# name: test_mower_snapshot[work_area_dict]
None
# ---
# name: test_mower_snapshot[work_area_names]
None
# ---
# name: test_mower_snapshot[work_areas]
None
# ---
|