mecomp-mpris 0.7.2

An MPRIS2 interface for the mecomp music player.
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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
//! Implements the player interface of the MPRIS specification.
//!
//! [org.mpris.MediaPlayer2.Player](https://specifications.freedesktop.org/mpris-spec/latest/Player_Interface.html)

use std::{path::PathBuf, str::FromStr, time::Duration};

use futures::executor::block_on;
use mecomp_core::state::{RepeatMode, SeekType, Status};
use mecomp_prost::{PlaybackSeekRequest, PlaybackSkipRequest, PlaybackVolumeSetRequest};
use mpris_server::{
    LoopStatus, Metadata, PlaybackRate, PlaybackStatus, PlayerInterface, Time, TrackId, Volume,
    zbus::{Error as ZbusError, fdo},
};

use crate::{Mpris, interfaces::root::SUPPORTED_MIME_TYPES, metadata_from_opt_song};

impl PlayerInterface for Mpris {
    async fn next(&self) -> fdo::Result<()> {
        block_on(
            self.daemon
                .clone()
                .playback_skip_forward(PlaybackSkipRequest::new(1)),
        )
        .map_err(|e| fdo::Error::Failed(e.to_string()))?;
        Ok(())
    }

    async fn previous(&self) -> fdo::Result<()> {
        block_on(
            self.daemon
                .clone()
                .playback_skip_backward(PlaybackSkipRequest::new(1)),
        )
        .map_err(|e| fdo::Error::Failed(e.to_string()))?;
        Ok(())
    }

    async fn pause(&self) -> fdo::Result<()> {
        block_on(self.daemon.clone().playback_pause(()))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?;

        Ok(())
    }

    async fn play_pause(&self) -> fdo::Result<()> {
        block_on(self.daemon.clone().playback_toggle(()))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?;
        Ok(())
    }

    async fn stop(&self) -> fdo::Result<()> {
        block_on(self.daemon.clone().playback_stop(()))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?;
        Ok(())
    }

    async fn play(&self) -> fdo::Result<()> {
        block_on(self.daemon.clone().playback_play(()))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?;
        Ok(())
    }

    async fn open_uri(&self, uri: String) -> fdo::Result<()> {
        // the uri should be in the format:
        // file:///path/to/file
        // TODO: Support loading a playlist file when we've implemented importing/exporting external playlists
        log::info!("Opening URI: {uri}");

        // ensure the URI is a supported URI
        if !uri.starts_with("file://") {
            return Err(fdo::Error::InvalidArgs(
                "Only file:// URIs are supported".to_string(),
            ));
        }

        // extract the path from the URI, and ensure it's a valid file path
        let path = uri.strip_prefix("file://").unwrap();
        let mut path = PathBuf::from_str(path)
            .map_err(|_| fdo::Error::InvalidArgs("Invalid file path".to_string()))?;

        // parse out escaped characters (e.g. %20 for space)
        path = percent_encoding::percent_decode_str(&path.to_string_lossy())
            .decode_utf8()
            .map_err(|_| fdo::Error::InvalidArgs("Invalid file path".to_string()))?
            .into_owned()
            .into();

        // ensure the file type is supported
        if !SUPPORTED_MIME_TYPES
            .iter()
            .filter_map(|s| s.split('/').next_back())
            .any(|ext| path.extension().is_some_and(|e| e == ext))
        {
            return Err(fdo::Error::InvalidArgs(
                "File type not supported".to_string(),
            ));
        }

        // expand the tilde if present
        if path.starts_with("~") {
            path = shellexpand::tilde(&path.to_string_lossy())
                .into_owned()
                .into();
        }

        log::debug!("Locating file: {}", path.display());

        // ensure the path exists
        if !path.exists() {
            return Err(fdo::Error::InvalidArgs("File does not exist".to_string()));
        }

        // ensure the path is a file
        if !path.is_file() {
            return Err(fdo::Error::InvalidArgs("Path is not a file".to_string()));
        }

        // canonicalize the path
        path = path.canonicalize().unwrap_or(path);

        // add the song to the queue
        let mut daemon = self.daemon.clone();
        if let Some(song) = block_on(daemon.library_song_get_by_path(mecomp_prost::Path::new(path)))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?
            .into_inner()
            .song
        {
            block_on(daemon.queue_add(song.id)).map_err(|e| fdo::Error::Failed(e.to_string()))?;
        } else {
            return Err(fdo::Error::Failed(
                "Failed to find song in database".to_string(),
            ));
        }

        Ok(())
    }

    async fn playback_status(&self) -> fdo::Result<PlaybackStatus> {
        let status = self.state.read().await.status;
        match status {
            Status::Stopped => Ok(PlaybackStatus::Stopped),
            Status::Paused => Ok(PlaybackStatus::Paused),
            Status::Playing => Ok(PlaybackStatus::Playing),
        }
    }

    async fn loop_status(&self) -> fdo::Result<LoopStatus> {
        let repeat_mode = self.state.read().await.repeat_mode;
        match repeat_mode {
            RepeatMode::None => Ok(LoopStatus::None),
            RepeatMode::One => Ok(LoopStatus::Track),
            RepeatMode::All => Ok(LoopStatus::Playlist),
        }
    }

    async fn set_loop_status(&self, loop_status: LoopStatus) -> Result<(), ZbusError> {
        let repeat_mode = match loop_status {
            LoopStatus::None => RepeatMode::None,
            LoopStatus::Track => RepeatMode::One,
            LoopStatus::Playlist => RepeatMode::All,
        };

        let mut daemon = self.daemon.clone();
        block_on(daemon.playback_repeat(mecomp_prost::PlaybackRepeatRequest::new(repeat_mode)))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?;

        Ok(())
    }

    async fn rate(&self) -> fdo::Result<PlaybackRate> {
        Ok(1.0)
    }

    async fn set_rate(&self, _: PlaybackRate) -> Result<(), ZbusError> {
        Ok(())
    }

    async fn shuffle(&self) -> fdo::Result<bool> {
        // Mecomp has no distinction between shuffle and non-shuffle playback
        // shuffling is done by actually shuffling the queue and is not reversible
        // therefore, we always return true
        Ok(true)
    }

    async fn set_shuffle(&self, shuffle: bool) -> Result<(), ZbusError> {
        // if called with false, does nothing, if called with true, shuffles the queue
        if shuffle {
            let mut daemon = self.daemon.clone();

            block_on(daemon.playback_shuffle(())).map_err(|e| fdo::Error::Failed(e.to_string()))?;
        }

        Ok(())
    }

    async fn metadata(&self) -> fdo::Result<Metadata> {
        let state = self.state.read().await;

        Ok(metadata_from_opt_song(state.current_song.as_ref()))
    }

    async fn volume(&self) -> fdo::Result<Volume> {
        let state = self.state.read().await;
        if state.muted {
            Ok(0.0)
        } else {
            Ok(f64::from(state.volume))
        }
    }

    async fn set_volume(&self, volume: Volume) -> Result<(), ZbusError> {
        let mut daemon = self.daemon.clone();
        #[allow(clippy::cast_precision_loss, clippy::cast_possible_truncation)]
        block_on(daemon.playback_volume(PlaybackVolumeSetRequest::new(volume as f32)))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?;

        Ok(())
    }

    async fn position(&self) -> fdo::Result<Time> {
        self.state.read().await.runtime.map_or_else(
            || Ok(Time::from_micros(0)),
            |runtime| {
                Ok(Time::from_micros(
                    i64::try_from(runtime.seek_position.as_micros()).unwrap_or(i64::MAX),
                ))
            },
        )
    }

    async fn seek(&self, offset: Time) -> fdo::Result<()> {
        //TODO: if the value passed in would mean seeking beyond the end of the track, act like a call to Next
        let seek_type = if offset.as_micros() > 0 {
            SeekType::RelativeForwards
        } else {
            SeekType::RelativeBackwards
        };

        let offset = Duration::from_micros(offset.as_micros().unsigned_abs());

        let mut daemon = self.daemon.clone();

        block_on(daemon.playback_seek(PlaybackSeekRequest::new(seek_type, offset)))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?;
        Ok(())
    }

    async fn set_position(&self, track_id: TrackId, position: Time) -> fdo::Result<()> {
        // "track_id - The currently playing track's identifier. If this does not match the id of the currently-playing track, the call is ignored as 'stale'"
        if Some(track_id) != self.metadata().await?.trackid() {
            return Ok(());
        }

        if let Some(song) = self.state.read().await.current_song.as_ref() {
            // if the position not in the range of the song, ignore the call
            let position = position.as_micros();
            if position < 0 || u128::from(position.unsigned_abs()) > song.runtime.as_micros() {
                return Ok(());
            }

            block_on(self.daemon.clone().playback_seek(PlaybackSeekRequest::new(
                SeekType::Absolute,
                Duration::from_micros(u64::try_from(position).unwrap_or_default()),
            )))
            .map_err(|e| fdo::Error::Failed(e.to_string()))?;
        }

        Ok(())
    }

    async fn minimum_rate(&self) -> fdo::Result<PlaybackRate> {
        Ok(1.0)
    }

    async fn maximum_rate(&self) -> fdo::Result<PlaybackRate> {
        Ok(1.0)
    }

    async fn can_go_next(&self) -> fdo::Result<bool> {
        Ok(true)
    }

    async fn can_go_previous(&self) -> fdo::Result<bool> {
        Ok(true)
    }

    async fn can_play(&self) -> fdo::Result<bool> {
        Ok(true)
    }

    async fn can_pause(&self) -> fdo::Result<bool> {
        Ok(true)
    }

    async fn can_seek(&self) -> fdo::Result<bool> {
        Ok(true)
    }

    async fn can_control(&self) -> fdo::Result<bool> {
        Ok(true)
    }
}

// NOTE: these tests do not run the event `Subscriber` main loop so events from the audio kernel are not
// actually going to be applied to the state, so we have to manually set the state when testing methods
// that simply report the state.
#[cfg(test)]
mod tests {
    use std::sync::{Arc, mpsc::Receiver};

    use mecomp_core::{
        audio::{
            AudioKernelSender,
            commands::{AudioCommand, QueueCommand},
        },
        test_utils::init,
        udp::StateChange,
    };

    use mecomp_storage::db::schemas::song::SongBrief;
    use one_or_many::OneOrMany;
    use pretty_assertions::{assert_eq, assert_ne};
    use rstest::rstest;
    use tempfile::TempDir;

    use super::*;
    use crate::test_utils::fixtures;

    /// """
    /// Skips to the next track in the tracklist.
    /// If there is no next track (and endless playback and track repeat are both off), stop playback.
    /// If playback is paused or stopped, it remains that way.
    /// If [CanGoNext] is false, attempting to call this method should have no effect.
    /// """
    ///
    /// Mecomp supports skipping to the next track in the queue.
    ///
    /// the last case is irrelevant here, as we always return true for [CanGoNext]
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 3)]
    async fn test_next(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        assert_eq!(mpris.can_go_next().await.unwrap(), true);

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            songs.into_iter().map(Into::into).collect(),
        )));
        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));
        let Ok(StateChange::TrackChanged(Some(first_song))) = event_rx.recv() else {
            panic!("Expected a TrackChanged event, but got something else");
        };
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // it skips to the next track //
        mpris.next().await.unwrap();

        let Ok(StateChange::TrackChanged(Some(second_song))) = event_rx.recv() else {
            panic!("Expected a TrackChanged event, but got something else");
        };

        // the current song should be different from the previous song
        assert_ne!(first_song, second_song);

        drop(tempdir);
    }

    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_next_maintains_status(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        assert_eq!(mpris.can_go_next().await.unwrap(), true);

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            songs.into_iter().map(Into::into).collect(),
        )));
        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));
        let Ok(StateChange::TrackChanged(Some(first_song))) = event_rx.recv() else {
            panic!("Expected a TrackChanged event, but got something else");
        };
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // if playback is paused or stopped, it remains that way //

        // stop playback
        mpris.stop().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::Seeked(Duration::from_secs(0)))
        );
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Stopped))
        );

        // skip to the next track
        mpris.next().await.unwrap();
        let Ok(StateChange::TrackChanged(Some(second_song))) = event_rx.recv() else {
            panic!("Expected a TrackChanged event, but got something else");
        };
        // playback should remain stopped
        assert!(event_rx.try_recv().is_err());

        // the current song should be different from the previous song
        assert_ne!(first_song, second_song);

        // pause playback
        mpris.pause().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Paused))
        );

        // skip to the next track
        mpris.next().await.unwrap();
        let Ok(StateChange::TrackChanged(Some(third_song))) = event_rx.recv() else {
            panic!("Expected a TrackChanged event, but got something else");
        };
        // playback should remain paused
        assert!(event_rx.try_recv().is_err());

        // the current song should be different from the previous song
        assert_ne!(second_song, third_song);

        drop(tempdir);
    }

    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_next_no_next_track(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        assert_eq!(mpris.can_go_next().await.unwrap(), true);

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        // send one song to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            OneOrMany::One(Box::new(songs[0].clone().into())),
        )));
        let _ = event_rx.recv();
        let _ = event_rx.recv();
        let _ = event_rx.recv();

        // if there is no next track (and endless playback and track repeat are both off), stop playback. //
        // skip to the next track (which should be nothing)
        mpris.next().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::QueueChanged),
            "since it was the last song, the queue clears"
        );
        assert_eq!(event_rx.recv(), Ok(StateChange::TrackChanged(None)));
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Stopped))
        );
        drop(tempdir);
    }

    /// """
    /// Skips to the previous track in the tracklist.
    /// If there is no previous track (and endless playback and track repeat are both off), stop playback.
    /// If playback is paused or stopped, it remains that way.
    /// If [CanGoPrevious] is false, attempting to call this method should have no effect.
    /// """
    ///
    /// Mecomp supports skipping to the previous track in the queue.
    ///
    /// the last case is irrelevant here, as we always return true for [CanGoPrevious]
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_prev(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        assert_eq!(mpris.can_go_previous().await.unwrap(), true);

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        let first_song: mecomp_storage::db::schemas::RecordId = songs[0].id.clone().into();
        let third_song: mecomp_storage::db::schemas::RecordId = songs[2].id.clone().into();
        let fourth_song: mecomp_storage::db::schemas::RecordId = songs[3].id.clone().into();

        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            songs.into_iter().map(Into::into).collect(),
        )));
        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(first_song)))
        );
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // skip to the last song in the queue
        audio_kernel.send(AudioCommand::Queue(QueueCommand::SetPosition(3)));
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(fourth_song.clone())))
        );

        // it skips to the previous track //
        mpris.previous().await.unwrap();
        // should go back to the fourth song
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(third_song))),
        );

        drop(tempdir);
    }
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_prev_maintains_state(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        assert_eq!(mpris.can_go_previous().await.unwrap(), true);

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        let first_song: mecomp_storage::db::schemas::RecordId = songs[0].id.clone().into();
        let second_song: mecomp_storage::db::schemas::RecordId = songs[1].id.clone().into();
        let third_song: mecomp_storage::db::schemas::RecordId = songs[2].id.clone().into();
        let fourth_song: mecomp_storage::db::schemas::RecordId = songs[3].id.clone().into();

        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            songs.into_iter().map(Into::into).collect(),
        )));
        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(first_song)))
        );
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // skip to the last song in the queue
        audio_kernel.send(AudioCommand::Queue(QueueCommand::SetPosition(3)));
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(fourth_song.clone())))
        );

        // if playback is paused or stopped, it remains that way //

        // stop playback
        mpris.stop().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::Seeked(Duration::from_secs(0)))
        );
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Stopped))
        );
        // skip to the previous track
        mpris.previous().await.unwrap();
        // should go back to the third
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(third_song))),
        );
        // playback should remain stopped
        assert!(event_rx.try_recv().is_err());

        // pause playback
        mpris.pause().await.unwrap();
        assert!(matches!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Paused))
        ));

        // skip to the previous track
        mpris.previous().await.unwrap();
        // should go back to the second song
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(second_song))),
        );
        // playback should remain paused
        assert!(event_rx.try_recv().is_err());

        drop(tempdir);
    }

    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_prev_no_prev_track(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        assert_eq!(mpris.can_go_previous().await.unwrap(), true);

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);

        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            OneOrMany::One(Box::new(songs[0].clone().into())),
        )));
        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));
        let _ = event_rx.recv();
        let _ = event_rx.recv();

        // if there is no previous track (and endless playback and track repeat are both off), stop playback. //
        // skip to the previous track
        mpris.previous().await.unwrap();
        // should go back to nothing
        assert_eq!(event_rx.recv(), Ok(StateChange::TrackChanged(None)),);
        // playback should be stopped
        assert!(matches!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Stopped))
        ));

        drop(tempdir);
    }

    /// """
    /// Pauses playback.
    /// If playback is already paused, this has no effect.
    /// Calling [Play] after this should cause playback to start again from the same position.
    /// If [CanPause] is false, attempting to call this method should have no effect.
    /// """
    ///
    /// Mecomp supports pausing playback.
    ///
    /// the last case is irrelevant here, as we always return true for [CanPause]
    ///
    /// """
    /// Starts or resumes playback.
    /// If already playing, this has no effect.
    /// If paused, playback resumes from the current position.
    /// If there is no track to play, this has no effect.
    /// If [CanPlay] is false, attempting to call this method should have no effect.
    /// """
    ///
    /// Mecomp supports starting or resuming playback.
    ///
    /// the last case is irrelevant here, as we always return true for [CanPlay]
    ///
    /// """
    /// Pauses playback.
    /// If playback is already paused, resumes playback.
    /// If playback is stopped, starts playback.
    /// If [CanPause] is false, attempting to call this method should have no effect and raise an error.
    /// """
    ///
    /// Mecomp supports toggling between playing and pausing playback.
    ///
    /// """
    /// Stops playback.
    /// If playback is already stopped, this has no effect.
    /// Calling Play after this should cause playback to start again from the beginning of the track.
    /// If [CanControl] is false, attempting to call this method should have no effect and raise an error.
    /// """
    ///
    /// Mecomp supports stopping playback.
    ///
    /// the last case is irrelevant here, as we always return true for [CanControl]
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_play_pause_stop(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        assert_eq!(mpris.can_pause().await.unwrap(), true);
        assert_eq!(mpris.can_play().await.unwrap(), true);
        assert_eq!(mpris.can_control().await.unwrap(), true);

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        let first_song = songs[0].clone();

        // Play: if there is no track to play, this has no effect //
        mpris.play().await.unwrap();
        let event = event_rx.try_recv();
        assert!(
            event.is_err(),
            "Expected not to receive an event, but got {event:?}"
        );

        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            OneOrMany::One(Box::new(first_song.clone().into())),
        )));
        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(
                first_song.id.clone().into()
            )))
        );
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // Pause: pauses playback //
        mpris.pause().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Paused))
        );

        // Pause: if playback is already paused, this has no effect //
        mpris.pause().await.unwrap();
        let event = event_rx.try_recv();
        assert!(
            event.is_err(),
            "Expected not to receive an event, but got {event:?}"
        );

        // Pause: calling [Play] after this should cause playback to start again from the same position. //
        // not easily testable

        // Play: Starts or resumes playback. //
        mpris.play().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // Play if already playing, this has no effect //
        mpris.play().await.unwrap();
        let event = event_rx.try_recv();
        assert!(
            event.is_err(),
            "Expected not to receive an event, but got {event:?}"
        );

        // Play: If paused, playback resumes from the current position. //
        // not easily testable

        // Play: If there is no track to play, this has no effect. //
        // tested above before sending the songs to the audio kernel

        // Play-Pause: Pauses playback. //
        mpris.play_pause().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Paused))
        );

        // Play-Pause: If playback is already paused, resumes playback. //
        mpris.play_pause().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // Play-Pause: If playback is stopped, starts playback. //
        mpris.stop().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::Seeked(Duration::from_secs(0)))
        );
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Stopped))
        );
        mpris.play_pause().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // Stop: Stops playback. //
        mpris.stop().await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::Seeked(Duration::from_secs(0)))
        );
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Stopped))
        );

        // Stop: If playback is already stopped, this has no effect. //
        mpris.stop().await.unwrap();
        let event = event_rx.try_recv();
        assert!(
            event.is_err(),
            "Expected not to receive an event, but got {event:?}"
        );

        // Stop: Calling Play after this should cause playback to start again from the beginning of the track. //
        // not easily testable

        drop(tempdir);
    }

    /// """
    /// Opens the uri given as an argument
    /// If the playback is stopped, starts playing
    /// If the uri scheme or the mime-type of the uri to open is not supported,
    ///  this method does nothing and may raise an error.
    ///  In particular, if the list of available uri schemes is empty,
    ///  this method may not be implemented.
    /// If the media player implements the [TrackList interface], then the opened track should be made part of the tracklist,
    ///  the [TrackAdded] or [TrackListReplaced] signal should be fired, as well as the
    ///  org.freedesktop.DBus.Properties.PropertiesChanged signal on the [TrackList interface]
    /// """
    ///
    /// Mecomp supports opening file URIs, and returns errors for unsupported or invalid URIs.
    ///
    /// Mecomp does not currently implement the [TrackList interface], so the last case is irrelevant here.
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_open_uri(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, _) = fixtures.await;

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        let first_song = songs[0].clone();

        // Opens the uri given as an argument //

        // open a valid file uri
        let file_uri = format!("file://{}", first_song.path);
        mpris.open_uri(file_uri).await.unwrap();
        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(
                first_song.id.clone().into()
            )))
        );
        // If the playback is stopped, starts playing //
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::StatusChanged(Status::Playing))
        );

        // If the uri scheme or the mime-type of the uri to open is not supported, this method does nothing and may raise an error. //
        // In particular, if the list of available uri schemes is empty, this method may not be implemented. //

        // open a uri with an unsupported scheme
        let file_uri = "http://example.com/song.mp3".to_string();
        let result = mpris.open_uri(file_uri).await;
        assert!(result.is_err());
        // open a file uri with an invalid path (is not a file path)
        let file_uri = "file://".to_string();
        let result = mpris.open_uri(file_uri).await;
        assert!(result.is_err());
        // open a file uri with an invalid path (a directory)
        let file_uri = format!("file://{}", tempdir.path().display());
        let result = mpris.open_uri(file_uri).await;
        assert!(result.is_err());
        // open a file uri that doesn't exist
        let file_uri = "file:///nonexistent.mp3".to_string();
        let result = mpris.open_uri(file_uri).await;
        assert!(result.is_err());
        // open a file uri with an unsupported mime type
        std::fs::write(tempdir.path().join("unsupported.txt"), "unsupported")
            .expect("Failed to write file");
        let file_uri = format!(
            "file:///{}",
            tempdir.path().join("unsupported.txt").display()
        );
        let result = mpris.open_uri(file_uri).await;
        assert!(result.is_err());

        // If the media player implements the [TrackList interface], then the opened track should be made part of the tracklist, the [TrackAdded] or [TrackListReplaced] signal should be fired, as well as the org.freedesktop.DBus.Properties.PropertiesChanged signal on the [TrackList interface] //
        // TODO: test this when we implement the [TrackList interface]

        drop(tempdir);
    }

    /// """
    /// Returns the playback status.
    /// """
    /// Mecomp supports returning the playback status.
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_playback_status(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        let first_song = songs[0].clone();

        // Returns the playback status. //
        // playback is stopped
        assert_eq!(
            mpris.playback_status().await.unwrap(),
            PlaybackStatus::Stopped
        );

        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            OneOrMany::One(Box::new(first_song.clone().into())),
        )));

        // pause playback
        mpris.pause().await.unwrap();

        // we expect there to be 4 events
        let mut events = [false; 4];
        for _ in 0..4 {
            let event = event_rx.recv().unwrap();

            match event {
                StateChange::QueueChanged => {
                    events[0] = true;
                }
                StateChange::TrackChanged(Some(_)) => {
                    mpris.state.write().await.current_song = Some(first_song.clone().into());
                    events[1] = true;
                }
                StateChange::StatusChanged(Status::Playing) => {
                    mpris.state.write().await.status = Status::Playing;
                    assert_eq!(
                        mpris.playback_status().await.unwrap(),
                        PlaybackStatus::Playing
                    );
                    events[2] = true;
                }
                StateChange::StatusChanged(Status::Paused) => {
                    mpris.state.write().await.status = Status::Paused;
                    assert_eq!(
                        mpris.playback_status().await.unwrap(),
                        PlaybackStatus::Paused
                    );
                    events[3] = true;
                }
                _ => panic!("Unexpected event: {event:?}"),
            }
        }

        assert!(events.iter().all(|&e| e));

        drop(tempdir);
    }

    /// """
    /// Returns the loop status.
    /// """
    ///
    /// Mecomp supports returning the loop status.
    ///
    /// """
    /// Sets the loop status.
    /// """
    ///
    /// Mecomp supports setting the loop status.
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_loop_status(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, _, _) = fixtures.await;

        // Returns the loop status. //
        // loop status is none
        assert_eq!(mpris.loop_status().await.unwrap(), LoopStatus::None);

        // set loop status to track
        mpris.set_loop_status(LoopStatus::Track).await.unwrap();
        if event_rx.recv() == Ok(StateChange::RepeatModeChanged(RepeatMode::One)) {
            mpris.state.write().await.repeat_mode = RepeatMode::One;
        } else {
            panic!("Expected a RepeatModeChanged event, but got something else");
        }
        assert_eq!(mpris.loop_status().await.unwrap(), LoopStatus::Track);

        // set loop status to playlist
        mpris.set_loop_status(LoopStatus::Playlist).await.unwrap();
        if event_rx.recv() == Ok(StateChange::RepeatModeChanged(RepeatMode::All)) {
            mpris.state.write().await.repeat_mode = RepeatMode::All;
        } else {
            panic!("Expected a RepeatModeChanged event, but got something else");
        }
        assert_eq!(mpris.loop_status().await.unwrap(), LoopStatus::Playlist);

        // set loop status to none
        mpris.set_loop_status(LoopStatus::None).await.unwrap();
        if event_rx.recv() == Ok(StateChange::RepeatModeChanged(RepeatMode::None)) {
            mpris.state.write().await.repeat_mode = RepeatMode::None;
        } else {
            panic!("Expected a RepeatModeChanged event, but got something else");
        }
        assert_eq!(mpris.loop_status().await.unwrap(), LoopStatus::None);
    }

    /// """
    /// Returns the rate.
    /// """
    /// """
    /// The minimum value which the [Rate] property can take. Clients should not attempt to set the [Rate] property below this value.
    /// """
    /// """
    /// """
    /// The maximum value which the [Rate] property can take. Clients should not attempt to set the [Rate] property above this value.
    /// """
    /// """
    /// Sets the playback rate.
    /// """
    ///
    /// Mecomp supports returning the playback rate, but does not support changing it.
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_rate(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, _, _) = fixtures.await;

        // Returns the playback rate. //
        let rate = mpris.rate().await.unwrap();
        assert!(f64::EPSILON > (rate - 1.0).abs(), "{rate} != 1.0");

        // The minimum value which the [Rate] property can take. Clients should not attempt to set the [Rate] property below this value. //
        let min_rate = mpris.minimum_rate().await.unwrap();
        assert!(f64::EPSILON > (min_rate - 1.0).abs(), "{min_rate} != 1.0");

        // The maximum value which the [Rate] property can take. Clients should not attempt to set the [Rate] property above this value. //
        let max_rate = mpris.maximum_rate().await.unwrap();
        assert!(f64::EPSILON > (max_rate - 1.0).abs(), "{max_rate} != 1.0");

        // Sets the playback rate. //
        // not supported, but the spec doesn't specify that an error should be reported so we just return Ok
        let result = mpris.set_rate(1.0).await;
        assert!(result.is_ok());
        assert!(event_rx.try_recv().is_err());
    }

    /// """
    /// Returns whether playback is shuffled.
    /// """
    ///
    /// Mecomp supports returning whether playback is shuffled.
    ///
    /// """
    /// Sets whether playback is shuffled.
    /// """
    ///
    /// Mecomp supports setting whether playback is shuffled.
    ///
    /// NOTE: Mecomp does not actually implement this properly,
    /// as setting shuffle to false will not restore the original order of the queue
    /// and is instead a no-op.
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_shuffle(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, _, _) = fixtures.await;

        // Returns whether playback is shuffled. //
        assert_eq!(mpris.shuffle().await.unwrap(), true);

        // Sets whether playback is shuffled. //
        // set shuffle to true
        mpris.set_shuffle(true).await.unwrap();
        assert_eq!(mpris.shuffle().await.unwrap(), true);
        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));

        // set shuffle to false
        mpris.set_shuffle(false).await.unwrap();
        assert_eq!(mpris.shuffle().await.unwrap(), true);
        assert!(event_rx.recv_timeout(Duration::from_millis(100)).is_err());
    }

    /// """
    /// The metadata of the current element.
    /// When this property changes, the org.freedesktop.DBus.Properties.PropertiesChanged
    ///     signal via [properties_changed] must be emitted with the new value.
    /// If there is a current track, this must have a [mpris:trackid] entry at the very least,
    ///     which contains a D-Bus path that uniquely identifies this track.
    /// """
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_metadata(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        let first_song: SongBrief = songs[0].clone().into();

        // The metadata of the current element. //
        // when there is no current song
        assert_eq!(
            mpris.metadata().await.unwrap(),
            Metadata::builder().trackid(TrackId::NO_TRACK).build()
        );

        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            first_song.clone().into(),
        )));

        assert_eq!(event_rx.recv(), Ok(StateChange::QueueChanged));
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::TrackChanged(Some(
                first_song.id.clone().into()
            )))
        );

        *mpris.state.write().await = mpris
            .daemon
            .clone()
            .state_audio(())
            .await
            .unwrap()
            .into_inner()
            .state
            .unwrap()
            .into();

        // when there is a current song
        let metadata = mpris.metadata().await.unwrap();
        assert_eq!(metadata, metadata_from_opt_song(Some(&first_song)));
        assert_ne!(
            metadata,
            Metadata::builder().trackid(TrackId::NO_TRACK).build()
        );

        drop(tempdir);
    }

    /// """
    /// The volume level.
    /// When setting, if a negative value is passed, the volume should be set to 0.0.
    /// """
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_volume(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        let (mpris, event_rx, _, _) = fixtures.await;

        // The volume level. //
        let volume = mpris.volume().await.unwrap();
        assert!(f64::EPSILON > (volume - 1.0).abs(), "{volume} != 1.0");

        // When setting, if a negative value is passed, the volume should be set to 0.0. //
        mpris.set_volume(-1.0).await.unwrap();
        if event_rx.recv() == Ok(StateChange::VolumeChanged(0.0)) {
            mpris.state.write().await.volume = 0.0;
            let volume = mpris.volume().await.unwrap();
            assert!(f64::EPSILON > volume.abs(), "{volume} != 0.0");
        } else {
            panic!("Expected a VolumeChanged event, but got something else");
        }

        // set the volume back to 1.0
        mpris.set_volume(1.0).await.unwrap();
        if event_rx.recv() == Ok(StateChange::VolumeChanged(1.0)) {
            mpris.state.write().await.volume = 1.0;
            let volume = mpris.volume().await.unwrap();
            assert!(f64::EPSILON > (volume - 1.0).abs(), "{volume} != 1.0");
        } else {
            panic!("Expected a VolumeChanged event, but got something else");
        }

        // set the volume to the same value
        mpris.set_volume(1.0).await.unwrap();
        assert!(event_rx.try_recv().is_err());
    }

    /// """
    /// The current track position, between 0 and the [mpris:length] metadata entry.
    /// If the media player allows it, the current playback position can be changed either the [SetPosition] method or the [Seek] method on this interface.
    /// If this is not the case, the [CanSeek] property is false, and setting this property has no effect and can raise an error.
    /// """
    ///
    /// for set_position:
    /// """
    /// If the Position argument is less than 0, do nothing.
    /// If the Position argument is greater than the track length, do nothing.
    /// If the given `track_id` this does not match the id of the currently-playing track, the call is ignored as "stale"
    /// """
    #[rstest]
    #[timeout(Duration::from_secs(20))]
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_position(
        #[future] fixtures: (
            Mpris,
            Receiver<StateChange>,
            TempDir,
            Arc<AudioKernelSender>,
        ),
    ) {
        init();
        let (mpris, event_rx, tempdir, audio_kernel) = fixtures.await;

        assert!(mpris.can_seek().await.unwrap());

        // setup
        let songs = mpris
            .daemon
            .clone()
            .library_songs(())
            .await
            .unwrap()
            .into_inner()
            .songs;
        assert_eq!(songs.len(), 4);
        let first_song: SongBrief = songs[0].clone().into();

        // The current track position, between 0 and the [mpris:length] metadata entry. //
        // when there is no current song
        assert_eq!(mpris.position().await.unwrap(), Time::from_micros(0));

        // send all the songs to the audio kernel (adding them to the queue and starting playback)
        audio_kernel.send(AudioCommand::Queue(QueueCommand::AddToQueue(
            first_song.clone().into(),
        )));
        audio_kernel.send(AudioCommand::Pause);
        let _ = event_rx.recv().unwrap();
        let _ = event_rx.recv().unwrap();
        let _ = event_rx.recv().unwrap();
        let _ = event_rx.recv().unwrap();
        // update internal state
        *mpris.state.write().await = mpris
            .daemon
            .clone()
            .state_audio(())
            .await
            .unwrap()
            .into_inner()
            .state
            .unwrap()
            .into();

        let first_song_track_id = mpris.metadata().await.unwrap().trackid().unwrap();

        // normal:
        mpris
            .set_position(first_song_track_id.clone(), Time::from_secs(2))
            .await
            .unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::Seeked(Duration::from_secs(2)))
        );

        // If the Position argument is less than 0, do nothing. //
        mpris
            .set_position(first_song_track_id.clone(), Time::from_secs(-1))
            .await
            .unwrap();
        assert!(event_rx.try_recv().is_err());

        // If the Position argument is greater than the track length, do nothing. //
        mpris
            .set_position(first_song_track_id.clone(), Time::from_secs(100))
            .await
            .unwrap();
        assert!(event_rx.try_recv().is_err());

        // If the media player allows it, the current playback position can be changed either the [SetPosition] method or the [Seek] method on this interface. //
        // If this is not the case, the [CanSeek] property is false, and setting this property has no effect and can raise an error. //
        assert!(mpris.can_seek().await.unwrap());

        mpris.seek(Time::from_secs(1)).await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::Seeked(Duration::from_secs(3)))
        );

        mpris.seek(Time::from_secs(-1)).await.unwrap();
        assert_eq!(
            event_rx.recv(),
            Ok(StateChange::Seeked(Duration::from_secs(2)))
        );

        drop(tempdir);
    }
}