bravia_api 0.1.0

Sony Bravia API wrapper
Documentation
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
use crate::common::{server_setup, FromFile};
use bravia_api::{
    system::{InterfaceInfo, LEDIndicatorStatus, NetworkSettings, RemoteControllerAction},
    Bravia,
};
use wiremock::{
    matchers::{method, path, BodyExactMatcher},
    Mock, ResponseTemplate,
};

const ENDPOINT_PATH: &str = "/sony/system";
const JSON_BASE_PATH: &str = "sample_payloads/system";
const AUTH: Option<&str> = Some("TEST");

#[tokio::test]
async fn test_get_current_time() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body_1_0 = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_current_time_V1_0.json",
        JSON_BASE_PATH
    ));
    let expected_body_1_1 = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_current_time_V1_1.json",
        JSON_BASE_PATH
    ));
    let template_1_0 = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_current_time_V1_0.json",
        JSON_BASE_PATH
    ));
    let template_1_1 = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_current_time_V1_1.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body_1_0)
        .respond_with(template_1_0)
        .named("getCurrentTime POST")
        .mount(&mock_server)
        .await;
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body_1_1)
        .respond_with(template_1_1)
        .named("getCurrentTime POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let time_1_0 = bravia.system().get_current_time(None).await.unwrap();
    let time_1_1 = bravia.system().get_current_time(Some("1.1")).await.unwrap();

    // Assert
    assert_eq!("2018-10-03T13:03:04+0100", time_1_0.date_time);
    assert_eq!("2018-10-03T13:03:59+0100", time_1_1.date_time);
}

#[tokio::test]
async fn test_get_interface_information() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_interface_information.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_interface_information.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getInterfaceInformation POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let interface_info = bravia.system().get_interface_information().await.unwrap();

    // Assert
    let info = InterfaceInfo {
        product_category: "tv".to_string(),
        model_name: "FW-55BZ35F".to_string(),
        product_name: "BRAVIA".to_string(),
        server_name: "".to_string(),
        interface_version: "5.0.1".to_string(),
    };
    assert_eq!(info, interface_info);
}

#[tokio::test]
async fn test_get_led_indicator_status() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_led_indicator_status.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_led_indicator_status.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getLEDIndicatorStatus POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let led_status = bravia.system().get_led_indicator_status().await.unwrap();

    // Assert
    let status = LEDIndicatorStatus {
        mode: "Demo".to_string(),
        status: Some("true".to_string()),
    };
    assert_eq!(status, led_status);
}

#[tokio::test]
async fn test_get_network_settings() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_network_settings.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_network_settings.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getNetworkSettings POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let net_status = bravia
        .system()
        .get_network_settings(Some("eth0".to_string()))
        .await
        .unwrap();

    // Assert
    let eth0 = NetworkSettings {
        netif: "eth0".to_string(),
        hw_addr: "FF-FF-FF-FF-FF-FF".to_string(),
        ip_addr_v4: "0.0.0.0".to_string(),
        ip_addr_v6: "ffff::ffff:ffff:fffd%7".to_string(),
        netmask: "255.255.255.0".to_string(),
        gateway: "0.0.0.0".to_string(),
        dns: vec!["0.0.0.0".to_string(), "1.1.1.1".to_string()],
    };
    let wlan0 = NetworkSettings {
        netif: "wlan0".to_string(),
        hw_addr: "00-00-00-00-00-00".to_string(),
        ip_addr_v4: "0.0.0.1".to_string(),
        ip_addr_v6: "ffff::ffff:ffff:fffd%8".to_string(),
        netmask: "255.255.255.0".to_string(),
        gateway: "0.0.0.0".to_string(),
        dns: vec!["0.0.0.0".to_string(), "fec0:0:0:ffff::1%1".to_string()],
    };
    assert_eq!(vec![eth0, wlan0], net_status);
}

#[tokio::test]
async fn test_get_power_saving_mode() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_power_saving_mode.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_power_saving_mode.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getPowerSavingMode POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let power_saving_mode = bravia.system().get_power_saving_mode().await.unwrap();

    // Assert
    assert_eq!("high", power_saving_mode);
}

#[tokio::test]
async fn test_get_power_status() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_power_status.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_power_status.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getPowerStatus POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let power_status = bravia.system().get_power_status().await.unwrap();

    // Assert
    assert_eq!("standby", power_status);
}

#[tokio::test]
async fn test_get_remote_controller_info() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_remote_controller_info.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_remote_controller_info.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getRemoteControllerInfo POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let controller_info = bravia.system().get_remote_controller_info().await.unwrap();

    // Assert
    let power_off = RemoteControllerAction {
        name: "PowerOff".to_string(),
        value: "AAAAAQAAAAEAAAAvAw==".to_string(),
    };
    assert_eq!(&power_off, controller_info.get(0).unwrap());
}

#[tokio::test]
async fn test_get_remote_device_settings() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_remote_device_settings.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_remote_device_settings.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getRemoteDeviceSettings POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let device_settings = bravia
        .system()
        .get_remote_device_settings(Some("accessPermission".to_string()))
        .await
        .unwrap();

    // Assert
    assert_eq!("accessPermission", device_settings.get(0).unwrap().target);
}

#[tokio::test]
async fn test_get_system_information() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_system_information.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_system_information.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getSystemInformation POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let system_info = bravia.system().get_system_information().await.unwrap();

    // Assert
    assert_eq!("FW-55BZ35F", system_info.model);
}

#[tokio::test]
async fn test_get_system_supported_function() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/get_system_supported_function.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_system_supported_function.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getSystemSupportedFunction POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let system_fn = bravia
        .system()
        .get_system_supported_function()
        .await
        .unwrap();
    let system_fn = system_fn.get(0).unwrap();

    // Assert
    assert_eq!("WOL", system_fn.option);
    assert_eq!("00:00:00:00:00:00:00:E0", system_fn.value);
}

#[tokio::test]
async fn test_get_wol_mode() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body =
        BodyExactMatcher::from_json_file(&format!("{}/requests/get_wol_mode.json", JSON_BASE_PATH));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/get_wol_mode.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("getWolMode POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let wol_mode = bravia.system().get_wol_mode().await.unwrap();

    // Assert
    assert!(wol_mode);
}

#[tokio::test]
async fn test_request_reboot() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/request_reboot.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/request_reboot.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("requestReboot POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    bravia.system().request_reboot().await.unwrap();

    // Nothing to assert, this API returns ()
}

#[tokio::test]
async fn test_set_led_indicator_status() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/set_led_indicator_status.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/set_led_indicator_status.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("setLEDIndicatorStatus POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    let led_status = LEDIndicatorStatus::new("Demo".to_string(), Some("true".to_string()));
    bravia
        .system()
        .set_led_indicator_status(led_status)
        .await
        .unwrap();

    // Nothing to assert, this API returns ()
}

#[tokio::test]
async fn test_set_language() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body =
        BodyExactMatcher::from_json_file(&format!("{}/requests/set_language.json", JSON_BASE_PATH));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/set_language.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("setLanguage POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    bravia
        .system()
        .set_language("eng".to_string())
        .await
        .unwrap();

    // Nothing to assert, this API returns ()
}

#[tokio::test]
async fn test_set_power_saving_mode() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/set_power_saving_mode.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/set_power_saving_mode.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("setPowerSavingMode POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    bravia
        .system()
        .set_power_saving_mode("pictureOff".to_string())
        .await
        .unwrap();

    // Nothing to assert, this API returns ()
}

#[tokio::test]
async fn test_set_power_status() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body = BodyExactMatcher::from_json_file(&format!(
        "{}/requests/set_power_status.json",
        JSON_BASE_PATH
    ));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/set_power_status.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("setPowerStatus POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    bravia.system().set_power_status(false).await.unwrap();

    // Nothing to assert, this API returns ()
}

#[tokio::test]
async fn test_set_wol_mode() {
    // Arrange
    let mock_server = server_setup(JSON_BASE_PATH).await;
    let expected_body =
        BodyExactMatcher::from_json_file(&format!("{}/requests/set_wol_mode.json", JSON_BASE_PATH));
    let template = ResponseTemplate::from_json_file(&format!(
        "{}/responses/set_wol_mode.json",
        JSON_BASE_PATH
    ));
    Mock::given(method("POST"))
        .and(path(ENDPOINT_PATH))
        .and(expected_body)
        .respond_with(template)
        .named("setWolMode POST")
        .mount(&mock_server)
        .await;
    let bravia = Bravia::new(&mock_server.uri(), AUTH).await.unwrap();

    // Act
    bravia.system().set_wol_mode(false).await.unwrap();

    // Nothing to assert, this API returns ()
}