syncthing-rs 0.1.0-alpha.3

Rust wrapper around the Syncthing API
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
use crate::{
    error::{Error, Result},
    types::{
        cluster::{PendingDevices, PendingFolders},
        config::{
            Configuration, DeviceConfiguration, FolderConfiguration, NewDeviceConfiguration,
            NewFolderConfiguration,
        },
        db::Completion,
        events::Event,
        system::Connections,
    },
};
use reqwest::{StatusCode, header};
use tokio::sync::broadcast::Sender;

const ADDR: &str = "http://localhost:8384/rest";

/// A `ClientBuilder` can be used to create a `Client` with custom configuration.
#[must_use]
pub struct ClientBuilder {
    base_url: Option<String>,
    api_key: String,
}

impl ClientBuilder {
    /// Constructs a new `ClientBuilder`.
    /// This is the same as `Client::builder()`.
    ///
    /// The API can either be generated in the GUI of Syncthing or set
    /// in the configuration file under `configuration/gui/apikey`.
    pub fn new(api_key: impl Into<String>) -> Self {
        Self {
            base_url: None,
            api_key: api_key.into(),
        }
    }

    /// Set the syncthing URL to something different than `http://localhost:8384/rest`.
    pub fn base_url(mut self, url: impl Into<String>) -> Self {
        self.base_url = Some(url.into());
        self
    }

    /// Returns a `Client` that uses this `ClientBuilder` configuration.
    ///
    /// # Errors
    ///
    /// This method fails if the header cannot be created or the HTTP client
    /// cannot be initialized.
    pub fn build(self) -> Result<Client> {
        let base_url = self.base_url.unwrap_or_else(|| ADDR.to_string());

        let mut headers = header::HeaderMap::new();
        let mut api_key_header = header::HeaderValue::from_str(&self.api_key)?;
        api_key_header.set_sensitive(true);
        headers.insert("X-API-KEY", api_key_header);

        let client = reqwest::Client::builder()
            .default_headers(headers)
            .build()?;

        Ok(Client { client, base_url })
    }
}

/// Abstraction to interact with the Syncthing API.
///
/// The Client has various configuration values to tweak, such as the
/// URL which is set to `localhost:8384/rest` by default. To configure a `Client`,
/// use `Client::builder()`.
#[derive(Clone, Debug)]
pub struct Client {
    client: reqwest::Client,
    base_url: String,
}

impl Client {
    /// Creates a new HTTP client, with which the syncthing API can be used.
    ///
    /// # Panics
    ///
    /// This method panics if the client cannot be initialized.
    ///
    /// Use `Client::builder()` if you wish to handle the failure as an `Error`
    /// instead of panicking.
    #[must_use]
    pub fn new(api_key: &str) -> Self {
        ClientBuilder::new(api_key).build().expect("Client::new()")
    }

    /// Creates a `ClientBuilder` to configure a `Client`.
    /// This is the same as `ClientBuilder::new()`
    ///
    /// The API can either be generated in the GUI of Syncthing or set
    /// in the configuration file under `configuration/gui/apikey`.
    pub fn builder(api_key: impl Into<String>) -> ClientBuilder {
        ClientBuilder::new(api_key)
    }

    /// Gets all the connections
    pub async fn get_connections(&self) -> Result<Connections> {
        log::debug!("GET /system/connections");
        Ok(self
            .client
            .get(format!("{}/system/connections", self.base_url))
            .send()
            .await?
            .error_for_status()?
            .json()
            .await?)
    }

    /// Returns `()` if the syncthing API can be reached.
    ///
    /// Use [`health`](crate::client::Client::health) to do the same
    /// without the need of a valid `api_key`.
    pub async fn ping(&self) -> Result<()> {
        log::debug!("GET /system/ping");
        self.client
            .get(format!("{}/system/ping", self.base_url))
            .send()
            .await?
            .error_for_status()?;

        Ok(())
    }

    /// Returns `()` if the syncthing API can be reached.
    ///
    /// Use [`ping`](crate::client::Client::ping) to do the same
    /// but with the requirement of a valid `api_key`.
    pub async fn health(&self) -> Result<()> {
        log::debug!("GET /noauth/health");
        self.client
            .get(format!("{}/noauth/health", self.base_url))
            .send()
            .await?
            .error_for_status()?;

        Ok(())
    }

    /// Returns the ID of the current device. This endpoint
    /// does not require a valid `api_key`.
    pub async fn get_id(&self) -> Result<String> {
        log::debug!("GET /noauth/health");
        Ok(self
            .client
            .get(format!("{}/noauth/health", self.base_url))
            .send()
            .await?
            .error_for_status()?
            .headers()
            .get("X-Syncthing-Id")
            .ok_or(Error::HeaderDeviceIDError)?
            .to_str()
            .map_err(|_| Error::HeaderParseError)?
            .to_string())
    }

    /// Only returns if an error is encountered.
    /// Transmits every new [event](crate::types::events::Event) over `tx`.
    /// If `skip_old`, all events before the call to this function do not
    /// result in a transmission.
    pub async fn get_events(&self, tx: Sender<Event>, mut skip_old: bool) -> Result<()> {
        let mut current_id = 0;
        loop {
            log::debug!("GET /events");
            let events: Vec<Event> = self
                .client
                .get(format!("{}/events?since={}", self.base_url, current_id))
                .send()
                .await?
                .error_for_status()?
                .json()
                .await?;

            log::debug!("received {} new events", events.len());
            for event in events {
                current_id = event.id;
                if !skip_old {
                    tx.send(event)?;
                }
            }
            log::debug!("current event id is {current_id}");
            skip_old = false;
        }
    }

    /// Returns the entire [`Configuration`]
    ///
    /// # Errors
    ///
    /// This method fails if the API cannot be reached, the server
    /// answers with an error code or the JSON cannot be parsed.
    pub async fn get_configuration(&self) -> Result<Configuration> {
        log::debug!("GET /config");
        Ok(self
            .client
            .get(format!("{}/config", self.base_url))
            .send()
            .await?
            .error_for_status()?
            .json()
            .await?)
    }

    /// Posts a folder. If the folder already exists, it is replaced,
    /// otherwise a new one is added.
    ///
    /// Use [`add_folder`](crate::client::Client::add_folder) if the operation
    /// should fail if a folder with the same ID already exists.
    pub async fn post_folder(&self, folder: impl Into<NewFolderConfiguration>) -> Result<()> {
        let folder = folder.into();
        log::debug!("POST /config/folders {:?}", folder);
        self.client
            .post(format!("{}/config/folders", self.base_url))
            .json(&folder)
            .send()
            .await?
            .error_for_status()?;

        Ok(())
    }

    /// Adds a new folder. If the folder already exists, a
    /// [`DuplicateFolderError`](crate::error::Error::DuplicateFolderError) is returned.
    /// This requires an additional check against the API.
    ///
    /// Use [`post_folder`](crate::client::Client::post_folder) if the operation
    /// should blindly set the folder.
    pub async fn add_folder(&self, folder: impl Into<NewFolderConfiguration>) -> Result<()> {
        let folder = folder.into();
        match self.get_folder(folder.get_id()).await {
            Ok(_) => return Err(Error::DuplicateFolderError),
            Err(Error::UnknownFolderError) => (),
            Err(e) => return Err(e),
        }
        self.post_folder(folder).await
    }

    /// Gets the configuration for the folder with the ID `folder_id`. Explicitly
    /// returns a [`UnknownFolderError`](crate::error::Error::UnknownFolderError)
    /// if no folder with `folder_id` exists.
    pub async fn get_folder(&self, folder_id: &str) -> Result<FolderConfiguration> {
        log::debug!("GET /config/folders/{}", folder_id);
        let response = self
            .client
            .get(format!("{}/config/folders/{}", self.base_url, folder_id))
            .send()
            .await?;

        if response.status() == StatusCode::NOT_FOUND {
            // TODO check that really the folder ID is causing that
            Err(Error::UnknownFolderError)
        } else {
            Ok(response.error_for_status()?.json().await?)
        }
    }

    /// Deletes the folder with the ID `folder_id`.
    pub async fn delete_folder(&self, folder_id: &str) -> Result<()> {
        log::debug!("DELETE /config/folders/{}", folder_id);
        self.client
            .delete(format!("{}/config/folders/{}", self.base_url, folder_id))
            .send()
            .await?
            .error_for_status()?;
        Ok(())
    }

    /// Posts a device. If the device already exists, it is replaced,
    /// otherwise a new one is added.
    ///
    /// Use [`add_device`](crate::client::Client::add_device) if the operation
    /// should fail if a device with the same ID already exists.
    pub async fn post_device(&self, device: impl Into<NewDeviceConfiguration>) -> Result<()> {
        let device = device.into();
        log::debug!("POST /config/devices {:?}", device);
        self.client
            .post(format!("{}/config/devices", self.base_url))
            .json(&device)
            .send()
            .await?
            .error_for_status()?;

        Ok(())
    }

    /// Adds a new device. If the device already exists, a
    /// [`DuplicateDeviceError`](crate::error::Error::DuplicateDeviceError) is returned.
    /// This requires an additional check against the API.
    ///
    /// Use [`post_device`](crate::client::Client::post_device) if the operation
    /// should blindly set the device.
    pub async fn add_device(&self, device: impl Into<NewDeviceConfiguration>) -> Result<()> {
        let device = device.into();
        match self.get_device(device.get_device_id()).await {
            Ok(_) => return Err(Error::DuplicateDeviceError),
            Err(Error::UnknownDeviceError) => (),
            Err(e) => return Err(e),
        }
        self.post_device(device).await
    }

    /// Gets the configuration for the device with the ID `device_id`.
    pub async fn get_device(&self, device_id: &str) -> Result<DeviceConfiguration> {
        log::debug!("GET /config/devices/{}", device_id);
        let response = self
            .client
            .get(format!("{}/config/devices/{}", self.base_url, device_id))
            .send()
            .await?;

        if response.status() == StatusCode::NOT_FOUND {
            // TODO check that really the device ID is causing that
            Err(Error::UnknownDeviceError)
        } else {
            Ok(response.error_for_status()?.json().await?)
        }
    }

    /// Deletes the device with the ID `device_id`.
    pub async fn delete_device(&self, device_id: &str) -> Result<()> {
        log::debug!("DELETE /config/devices/{}", device_id);
        self.client
            .delete(format!("{}/config/devices/{}", self.base_url, device_id))
            .send()
            .await?
            .error_for_status()?;
        Ok(())
    }

    /// Gets a list of all pending remote devices which have tried to connect but
    /// are not in our configuration yet.
    pub async fn get_pending_devices(&self) -> Result<PendingDevices> {
        log::debug!("GET /cluster/pending/devices");
        Ok(self
            .client
            .get(format!("{}/cluster/pending/devices", self.base_url))
            .send()
            .await?
            .error_for_status()?
            .json()
            .await?)
    }

    /// Gets all folders which remote devices have offered to us, but are not yet shared
    /// from our instance to them or are not present on our instance.
    pub async fn get_pending_folders(&self) -> Result<PendingFolders> {
        log::debug!("GET /cluster/pending/folders");
        Ok(self
            .client
            .get(format!("{}/cluster/pending/folders", self.base_url))
            .send()
            .await?
            .error_for_status()?
            .json()
            .await?)
    }

    /// Remove record about pending remote device with ID `device_id` which tried to connect.
    ///
    /// This is not permanent, use `ignore_device` instead.
    pub async fn dismiss_pending_device(&self, device_id: &str) -> Result<()> {
        log::debug!("DELETE /cluster/pending/devices?device={device_id}");
        self.client
            .delete(format!(
                "{}/cluster/pending/devices?device={}",
                self.base_url, device_id
            ))
            .send()
            .await?
            .error_for_status()?;

        Ok(())
    }

    /// Remove record about pending remote folder with ID `folder_id`. An optional `device_id`
    /// can be passed as argument to only remove the pending remote from that device, otherwise
    /// the folder will be removed as pending for all devices.
    ///
    /// This is not permanent, use `ignore_folder` instead.
    pub async fn dismiss_pending_folder(
        &self,
        folder_id: &str,
        device_id: Option<&str>,
    ) -> Result<()> {
        let device_str = match device_id {
            Some(device_id) => format!("&device={}", device_id),
            None => String::new(),
        };
        log::debug!("DELETE /cluster/pending/folders?folder={folder_id}{device_str}");
        self.client
            .delete(format!(
                "{}/cluster/pending/folders?folder={}{}",
                self.base_url, folder_id, device_str
            ))
            .send()
            .await?
            .error_for_status()?;

        Ok(())
    }

    /// Returns a template device configuration with all default values,
    /// which only requires a unique device ID to be instantiated.
    pub async fn get_default_device(&self) -> Result<DeviceConfiguration> {
        log::debug!("GET /config/defaults/device");
        Ok(self
            .client
            .get(format!("{}/config/defaults/device", self.base_url))
            .send()
            .await?
            .error_for_status()?
            .json()
            .await?)
    }

    /// Returns a template folder configuration with all default values,
    /// which only requires a unique folder ID to be instantiated.
    pub async fn get_default_folder(&self) -> Result<FolderConfiguration> {
        log::debug!("GET /config/defaults/folder");
        Ok(self
            .client
            .get(format!("{}/config/defaults/folder", self.base_url))
            .send()
            .await?
            .error_for_status()?
            .json()
            .await?)
    }

    /// Calculates the data synchronization completion percentage and counts.
    ///
    /// Returns the completion percentage (0 to 100), total bytes, and total items.
    ///
    /// # Arguments
    ///
    /// * `folder_id` - The ID of the folder to calculate completion for.
    ///   `None` calculates the aggregate completion across all folders.
    /// * `device_id` - The ID of the device to calculate completion for.
    ///   `None` calculates the aggregate completion across all devices.
    ///   If `device_id` is specified but `folder_id` is `None`,
    ///   completion is calculated for all folders *shared with that device*.
    pub async fn get_completion(
        &self,
        folder_id: Option<&str>,
        device_id: Option<&str>,
    ) -> Result<Completion> {
        let folder_str = match folder_id {
            Some(folder_id) => format!("folder={}", folder_id),
            None => String::new(),
        };
        let device_str = match device_id {
            Some(device_id) => format!("device={}", device_id),
            None => String::new(),
        };
        let questionmark = if folder_id.is_some() || device_id.is_some() {
            "?"
        } else {
            ""
        };
        let and = if folder_id.is_some() && device_id.is_some() {
            "&"
        } else {
            ""
        };
        let query = format!("{}{}{}{}", questionmark, folder_str, and, device_str);
        log::debug!("GET /db/completion{}", query);

        Ok(self
            .client
            .get(format!("{}/db/completion{}", self.base_url, query))
            .send()
            .await?
            .error_for_status()?
            .json()
            .await?)
    }
}

#[cfg(test)]
mod tests {
    use crate::types::{config::FolderDeviceConfiguration, events::EventType};

    use super::*;

    use httpmock::prelude::*;
    use testcontainers::{
        ContainerAsync, GenericImage, ImageExt,
        core::{ContainerPort::Tcp, WaitFor},
        runners::AsyncRunner,
    };
    use tokio::sync::broadcast;

    use rstest::*;

    // Example device id from the docs
    const DEVICE_ID: &str = "MFZWI3D-BONSGYC-YLTMRWG-C43ENR5-QXGZDMM-FZWI3DP-BONSGYY-LTMRWAD";

    #[fixture]
    async fn syncthing_setup() -> (ContainerAsync<GenericImage>, Client) {
        let api_key = "foobar";
        let container = GenericImage::new("syncthing/syncthing", "latest")
            .with_exposed_port(Tcp(8384))
            .with_wait_for(WaitFor::message_on_stdout("GUI and API listening on "))
            .with_env_var("STGUIAPIKEY", api_key)
            .start()
            .await
            .expect("failed to start syncthing container");

        let host = container
            .get_host()
            .await
            .expect("could not get syncthing host");
        let port = container
            .get_host_port_ipv4(8384)
            .await
            .expect("could not get syncthing port");

        let url = format!("http://{host}:{port}/rest");

        let client = ClientBuilder::new(api_key).base_url(url).build().unwrap();

        (container, client)
    }

    #[test]
    fn test_new() {
        let client = Client::new("foo");

        assert_eq!(client.base_url, "http://localhost:8384/rest");
    }

    /// Simple ping to a running server should just return Ok(())
    #[tokio::test]
    async fn test_ping() {
        let server = MockServer::start();

        let ping_mock = server.mock(|when, then| {
            when.method(GET).path("/system/ping");
            then.status(200)
                .header("content-type", "application/json")
                .body(r#"{"ping": "pong"}"#);
        });

        let client = ClientBuilder::new("")
            .base_url(server.base_url())
            .build()
            .unwrap();

        let result = client.ping().await;
        ping_mock.assert();

        assert!(result.is_ok());
    }

    /// Simple test ensuring that a single event in the past is correctly
    /// transmitted.
    #[tokio::test]
    async fn test_single_event() {
        let server = MockServer::start();

        let event_mock = server.mock(|when, then| {
            when.method(GET).path("/events");
            then.status(200)
                .header("content-type", "application/json")
                .body(
                    r#"
[
  {
    "id": 1,
    "globalID": 1,
    "time": "2025-05-07T17:05:44.514050967+02:00",
    "type": "Starting",
    "data": {
      "home": "/home/user/.config/syncthing",
      "myID": "XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX"
    }
  }
]
"#,
                );
        });

        let client = ClientBuilder::new("")
            .base_url(server.base_url())
            .build()
            .unwrap();

        let (tx, mut rx) = broadcast::channel(1);

        // Start transmitting events on a separate thread
        tokio::spawn(async move {
            let result = client.get_events(tx, false).await;
            unreachable!("get_events should not have returned: {:?}", result);
        });

        let event = rx.recv().await;
        assert!(event_mock.hits() > 0);
        assert!(event.is_ok());
        assert!(matches!(event.unwrap().ty, EventType::Starting { home: _ }));
    }

    #[tokio::test]
    async fn container_test_health() {
        // Create container by hand, so we don't know the API key. This is okay
        // as the health endpoint should work anyway
        let container = GenericImage::new("syncthing/syncthing", "latest")
            .with_exposed_port(Tcp(8384))
            .with_wait_for(WaitFor::message_on_stdout("GUI and API listening on "))
            .start()
            .await
            .expect("failed to start syncthing container");

        let host = container
            .get_host()
            .await
            .expect("could not get syncthing host");
        let port = container
            .get_host_port_ipv4(8384)
            .await
            .expect("could not get syncthing port");

        let url = format!("http://{host}:{port}/rest");

        let client = ClientBuilder::new("idk").base_url(url).build().unwrap();

        client.health().await.unwrap();
    }

    #[tokio::test]
    async fn container_test_id() {
        // Create container by hand, so we don't know the API key. This is okay
        // as the id endpoint should work anyway
        let container = GenericImage::new("syncthing/syncthing", "latest")
            .with_exposed_port(Tcp(8384))
            .with_wait_for(WaitFor::message_on_stdout("GUI and API listening on "))
            .start()
            .await
            .expect("failed to start syncthing container");

        let host = container
            .get_host()
            .await
            .expect("could not get syncthing host");
        let port = container
            .get_host_port_ipv4(8384)
            .await
            .expect("could not get syncthing port");

        let url = format!("http://{host}:{port}/rest");

        let client = ClientBuilder::new("idk").base_url(url).build().unwrap();

        client.get_id().await.unwrap();
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_ping(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;

        client.ping().await.unwrap();
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_get_config(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;

        client
            .get_configuration()
            .await
            .expect("could not get config");
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_post_folder(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;
        let folder_id = "this-is-a-new-folder";
        let path = "/tmp";

        let folder = NewFolderConfiguration::new(folder_id.to_string(), path.to_string());

        client
            .post_folder(folder)
            .await
            .expect("could not post folder");

        let api_folder = client
            .get_folder(folder_id)
            .await
            .expect("could not get folder");

        assert_eq!(&api_folder.id, folder_id);
        assert_eq!(&api_folder.path, path);
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_add_folder(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;
        let folder_id = "this-is-a-new-folder";
        let path = "/tmp";

        let folder = NewFolderConfiguration::new(folder_id.to_string(), path.to_string());

        client
            .add_folder(folder)
            .await
            .expect("could not add folder");

        let api_folder = client
            .get_folder(folder_id)
            .await
            .expect("could not get folder");

        assert_eq!(&api_folder.id, folder_id);
        assert_eq!(&api_folder.path, path);
    }

    #[rstest]
    #[tokio::test]
    #[should_panic(expected = "DuplicateFolderError")]
    async fn container_test_add_folder_twice_panic(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;
        let folder_id = "this-is-a-new-folder";
        let path = "/tmp";

        let folder = NewFolderConfiguration::new(folder_id.to_string(), path.to_string());

        client
            .add_folder(folder)
            .await
            .expect("could not add folder");

        // "Accidentally" overwrite our folder
        let duplicate_path = "/usr";
        let duplicate_folder =
            NewFolderConfiguration::new(folder_id.to_string(), duplicate_path.to_string());

        client
            .add_folder(duplicate_folder)
            .await
            .expect("could not add folder")
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_post_folder_twice(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;
        let folder_id = "this-is-a-new-folder";
        let path = "/tmp";

        let folder = NewFolderConfiguration::new(folder_id.to_string(), path.to_string());

        client
            .add_folder(folder)
            .await
            .expect("could not add folder");

        // "Accidentally" overwrite our folder
        let duplicate_path = "/usr";
        let duplicate_folder =
            NewFolderConfiguration::new(folder_id.to_string(), duplicate_path.to_string());

        client
            .post_folder(duplicate_folder)
            .await
            .expect("could not post folder");

        let api_folder = client
            .get_folder(folder_id)
            .await
            .expect("could not get folder");

        assert_eq!(&api_folder.id, folder_id);
        assert_eq!(&api_folder.path, duplicate_path);
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_post_device(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;

        let device = NewDeviceConfiguration::new(DEVICE_ID.to_string());

        client
            .post_device(device)
            .await
            .expect("could not post device");

        let api_device = client
            .get_device(DEVICE_ID)
            .await
            .expect("could not get device");

        assert_eq!(&api_device.device_id, DEVICE_ID);
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_add_device(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;

        let device = NewDeviceConfiguration::new(DEVICE_ID.to_string());

        client
            .add_device(device)
            .await
            .expect("could not add device");

        let api_device = client
            .get_device(DEVICE_ID)
            .await
            .expect("could not get device");

        assert_eq!(&api_device.device_id, DEVICE_ID);
    }

    #[rstest]
    #[tokio::test]
    #[should_panic(expected = "DuplicateDeviceError")]
    async fn container_test_add_device_twice_panic(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;

        let device = NewDeviceConfiguration::new(DEVICE_ID.to_string());

        client
            .add_device(device)
            .await
            .expect("could not add device");

        // "Accidentally" overwrite our device
        let duplicate_device = NewDeviceConfiguration::new(DEVICE_ID.to_string());

        client
            .add_device(duplicate_device)
            .await
            .expect("could not add device")
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_post_device_twice(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;
        let name = "original";

        let device = NewDeviceConfiguration::new(DEVICE_ID.to_string()).name(name.to_string());

        client
            .add_device(device)
            .await
            .expect("could not add device");

        // "Accidentally" overwrite our device
        let duplicate_name = "duplicate";
        let duplicate_device =
            NewDeviceConfiguration::new(DEVICE_ID.to_string()).name(duplicate_name.to_string());

        client
            .post_device(duplicate_device)
            .await
            .expect("could not post device");

        let api_device = client
            .get_device(DEVICE_ID)
            .await
            .expect("could not get device");

        assert_eq!(&api_device.device_id, DEVICE_ID);
        assert_eq!(&api_device.name, duplicate_name);
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_pending_device(
        #[future]
        #[from(syncthing_setup)]
        first: (ContainerAsync<GenericImage>, Client),
        #[future]
        #[from(syncthing_setup)]
        second: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_first_container, first_client) = first.await;
        let (_second_container, second_client) = second.await;

        let first_id = first_client
            .get_id()
            .await
            .expect("could not get id of first container");
        let second_id = second_client
            .get_id()
            .await
            .expect("could not get id of second container");

        // First starts waiting for the event
        let (event_tx, mut event_rx) = broadcast::channel(10);
        let first_client_handle = first_client.clone();
        tokio::spawn(async move {
            first_client_handle
                .get_events(event_tx, true)
                .await
                .unwrap();
        });

        // Add the first device to the second
        second_client
            .add_device(NewDeviceConfiguration::new(first_id))
            .await
            .expect("could not add device");

        // Now wait until we get an added device event on the first container
        loop {
            let event = event_rx.recv().await.unwrap();
            if let EventType::PendingDevicesChanged {
                added: Some(added), ..
            } = event.ty
            {
                if !added.is_empty() {
                    break;
                }
            }
        }

        // Check that this device is the correct one
        let pending = first_client
            .get_pending_devices()
            .await
            .expect("could not get pending devices");
        assert!(pending.devices.contains_key(&second_id));
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_delete_pending_device(
        #[future]
        #[from(syncthing_setup)]
        first: (ContainerAsync<GenericImage>, Client),
        #[future]
        #[from(syncthing_setup)]
        second: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_first_container, first_client) = first.await;
        let (_second_container, second_client) = second.await;

        let first_id = first_client
            .get_id()
            .await
            .expect("could not get id of first container");
        let second_id = second_client
            .get_id()
            .await
            .expect("could not get id of second container");

        // First starts waiting for the event
        let (event_tx, mut event_rx) = broadcast::channel(10);
        let first_client_handle = first_client.clone();
        tokio::spawn(async move {
            first_client_handle
                .get_events(event_tx, true)
                .await
                .unwrap();
        });

        // Add the first device to the second
        second_client
            .add_device(NewDeviceConfiguration::new(first_id))
            .await
            .expect("could not add device");

        // Now wait until we get an added device event on the first container
        loop {
            let event = event_rx.recv().await.unwrap();
            if let EventType::PendingDevicesChanged {
                added: Some(added), ..
            } = event.ty
            {
                if !added.is_empty() {
                    break;
                }
            }
        }

        // Check that this device is the correct one
        let pending = first_client
            .get_pending_devices()
            .await
            .expect("could not get pending devices");
        assert!(pending.devices.contains_key(&second_id));

        first_client
            .dismiss_pending_device(&second_id)
            .await
            .expect("could not delete pending device");

        // Now wait until we get a removed device event in the first container
        loop {
            let event = event_rx.recv().await.unwrap();
            if let EventType::PendingDevicesChanged {
                removed: Some(removed),
                ..
            } = event.ty
            {
                if !removed.is_empty() {
                    break;
                }
            }
        }

        // Check that the device is no longer there
        let pending = first_client
            .get_pending_devices()
            .await
            .expect("could not get pending devices");
        assert!(!pending.devices.contains_key(&second_id));
        // There shouldn't be any pending device anymore
        assert_eq!(pending.devices.len(), 0)
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_get_default_device(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;

        client
            .get_default_device()
            .await
            .expect("could not get default device");
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_get_default_folder(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;

        client
            .get_default_folder()
            .await
            .expect("could not get default folder");
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_system_connections(
        #[future]
        #[from(syncthing_setup)]
        first: (ContainerAsync<GenericImage>, Client),
        #[future]
        #[from(syncthing_setup)]
        second: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_first_container, first_client) = first.await;
        let (_second_container, second_client) = second.await;

        let first_id = first_client
            .get_id()
            .await
            .expect("could not get id of first container");
        let second_id = second_client
            .get_id()
            .await
            .expect("could not get id of second container");

        // First starts waiting for the event
        let (event_tx, mut event_rx) = broadcast::channel(10);
        let first_client_handle = first_client.clone();
        tokio::spawn(async move {
            first_client_handle
                .get_events(event_tx, true)
                .await
                .unwrap();
        });

        // Add the first device to the second
        second_client
            .add_device(NewDeviceConfiguration::new(first_id))
            .await
            .expect("could not add device");

        // Now wait until we get an added device event on the first container
        loop {
            let event = event_rx.recv().await.unwrap();
            if let EventType::PendingDevicesChanged {
                added: Some(added), ..
            } = event.ty
            {
                if !added.is_empty() {
                    break;
                }
            }
        }

        // Check that this device is the correct one
        let pending = first_client
            .get_pending_devices()
            .await
            .expect("could not get pending devices");
        assert!(pending.devices.contains_key(&second_id));

        // First client accepts the device
        first_client
            .add_device(NewDeviceConfiguration::new(second_id.clone()))
            .await
            .expect("could not add device");

        let first_connections = first_client
            .get_connections()
            .await
            .expect("could not get connections");

        assert_eq!(first_connections.connections.len(), 1);
        assert!(first_connections.connections.contains_key(&second_id));
        assert!(
            !first_connections
                .connections
                .get(&second_id)
                .unwrap()
                .paused
        );
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_completion(
        #[future]
        #[from(syncthing_setup)]
        first: (ContainerAsync<GenericImage>, Client),
        #[future]
        #[from(syncthing_setup)]
        second: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_first_container, first_client) = first.await;
        let (_second_container, second_client) = second.await;

        let first_id = first_client
            .get_id()
            .await
            .expect("could not get id of first container");
        let second_id = second_client
            .get_id()
            .await
            .expect("could not get id of second container");

        // First starts waiting for the event
        let (event_tx, mut event_rx) = broadcast::channel(10);
        let first_client_handle = first_client.clone();
        tokio::spawn(async move {
            first_client_handle
                .get_events(event_tx, true)
                .await
                .unwrap();
        });

        // Add the first device to the second
        second_client
            .add_device(NewDeviceConfiguration::new(first_id.clone()))
            .await
            .expect("could not add device");

        // Now wait until we get an added device event on the first container
        loop {
            let event = event_rx.recv().await.unwrap();
            if let EventType::PendingDevicesChanged {
                added: Some(added), ..
            } = event.ty
            {
                if !added.is_empty() {
                    break;
                }
            }
        }

        // Check that this device is the correct one
        let pending = first_client
            .get_pending_devices()
            .await
            .expect("could not get pending devices");
        assert!(pending.devices.contains_key(&second_id));

        // First client accepts the device
        first_client
            .add_device(NewDeviceConfiguration::new(second_id.clone()))
            .await
            .expect("could not add device");

        // Share a folder
        let folder_id = "this-is-a-new-folder";
        let path = "/tmp";

        let folder_on_first = NewFolderConfiguration::new(folder_id.to_string(), path.to_string())
            .devices(vec![FolderDeviceConfiguration {
                device_id: second_id.clone(),
                introduced_by: String::new(),
                encryption_password: String::new(),
            }]);

        let folder_on_second = NewFolderConfiguration::new(folder_id.to_string(), path.to_string())
            .devices(vec![FolderDeviceConfiguration {
                device_id: first_id,
                introduced_by: String::new(),
                encryption_password: String::new(),
            }]);

        first_client
            .post_folder(folder_on_first)
            .await
            .expect("could not post folder on first");

        second_client
            .post_folder(folder_on_second)
            .await
            .expect("could not post folder on second");

        let _total_completion = first_client
            .get_completion(None, None)
            .await
            .expect("could not get completion");

        let _device_completion = first_client
            .get_completion(None, Some(&second_id))
            .await
            .expect("could not get completion for device");

        let _folder_completion = first_client
            .get_completion(Some(folder_id), None)
            .await
            .expect("could not get completion for folder");
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_delete_folder(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;
        let folder_id = "this-is-a-new-folder";
        let path = "/tmp";

        let folder = NewFolderConfiguration::new(folder_id.to_string(), path.to_string());

        client
            .post_folder(folder)
            .await
            .expect("could not post folder");

        let api_folder = client
            .get_folder(folder_id)
            .await
            .expect("could not get folder");

        let num_folders = client
            .get_configuration()
            .await
            .expect("could not get config")
            .folders
            .len();

        assert_eq!(&api_folder.id, folder_id);
        assert_eq!(&api_folder.path, path);

        client
            .delete_folder(folder_id)
            .await
            .expect("could not delete folder");

        let config = client
            .get_configuration()
            .await
            .expect("could not get config");

        assert_eq!(config.folders.len(), num_folders - 1);
    }

    #[rstest]
    #[tokio::test]
    async fn container_test_delete_device(
        #[future] syncthing_setup: (ContainerAsync<GenericImage>, Client),
    ) {
        let (_container, client) = syncthing_setup.await;

        let device = NewDeviceConfiguration::new(DEVICE_ID.to_string());

        client
            .post_device(device)
            .await
            .expect("could not post device");

        let api_device = client
            .get_device(DEVICE_ID)
            .await
            .expect("could not get device");

        let num_devices = client
            .get_configuration()
            .await
            .expect("could not get config")
            .devices
            .len();

        assert_eq!(&api_device.device_id, DEVICE_ID);

        client
            .delete_device(DEVICE_ID)
            .await
            .expect("could not delete folder");

        let config = client
            .get_configuration()
            .await
            .expect("could not get config");

        assert_eq!(config.devices.len(), num_devices - 1);
    }
}