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
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
pub mod cleanup;
pub mod exec;
pub mod registration;
mod util;
use std::{
borrow::Cow,
collections::HashMap,
ffi::{OsStr, OsString},
ops::Not,
path::PathBuf,
str::FromStr,
};
use anyhow::{anyhow, Context, Error};
use bollard::{
auth::DockerCredentials,
container::{
Config as BollardContainerConfig, CreateContainerOptions, ListContainersOptions,
LogsOptions, StartContainerOptions, WaitContainerOptions,
},
exec::{CreateExecOptions, StartExecOptions},
models::{
EndpointSettings, HostConfig, HostConfigLogConfig, PortBinding, RestartPolicy,
RestartPolicyNameEnum,
},
network::{ConnectNetworkOptions, CreateNetworkOptions, ListNetworksOptions},
Docker,
};
use cleanup::{Cleanup, Disarm};
use futures_util::stream::StreamExt;
use itertools::Itertools;
use lazy_static::lazy_static;
use log::{debug, error, warn};
use serde::{Deserialize, Serialize};
use tokio::io::AsyncWriteExt;
use tokio_util::codec::{BytesCodec, FramedRead};
use typed_builder::TypedBuilder;
use registration::{handle_user_registration, User};
use crate::{
exec::{CommandExt, Executor},
util::YamlExt,
};
lazy_static! {
static ref MX_TEST_MODULE_DIR: OsString = OsString::from_str("MX_TEST_MODULE_DIR").unwrap();
static ref MX_TEST_SYNAPSE_DIR: OsString = OsString::from_str("MX_TEST_SYNAPSE_DIR").unwrap();
static ref MX_TEST_SCRIPT_TMPDIR: OsString = OsString::from_str("MX_TEST_SCRIPT_TMPDIR").unwrap();
static ref MX_TEST_CWD: OsString = OsString::from_str("MX_TEST_CWD").unwrap();
}
const MEMORY_ALLOCATION_BYTES: i64 = 4 * 1024 * 1024 * 1024;
const MAX_SYNAPSE_RESTART_COUNT: i64 = 20;
const HARDCODED_GUEST_PORT: u64 = 8008;
const HARDCODED_MAIN_PROCESS_HTTP_LISTENER_PORT: u64 = 8080;
#[derive(Clone, Debug, Deserialize)]
pub struct PortMapping {
pub host: u64,
pub guest: u64,
}
#[derive(Debug, Deserialize, TypedBuilder)]
pub struct DockerConfig {
#[serde(default = "DockerConfig::default_hostname")]
#[builder(default = DockerConfig::default_hostname())]
pub hostname: String,
#[serde(default)]
#[builder(default = vec![])]
pub port_mapping: Vec<PortMapping>,
}
impl Default for DockerConfig {
fn default() -> DockerConfig {
Self::builder().build()
}
}
impl DockerConfig {
fn default_hostname() -> String {
"synapse".to_string()
}
}
#[derive(Debug, Deserialize, Serialize, TypedBuilder)]
pub struct HomeserverConfig {
#[serde(default = "HomeserverConfig::host_port_default")]
#[builder(default = HomeserverConfig::host_port_default())]
pub host_port: u64,
#[serde(default = "HomeserverConfig::server_name_default")]
#[builder(default = HomeserverConfig::server_name_default())]
pub server_name: String,
#[serde(default = "HomeserverConfig::public_baseurl_default")]
#[builder(default = HomeserverConfig::public_baseurl_default())]
pub public_baseurl: String,
#[serde(default = "HomeserverConfig::registration_shared_secret_default")]
#[builder(default = HomeserverConfig::registration_shared_secret_default())]
pub registration_shared_secret: String,
#[serde(flatten)]
#[builder(default)]
pub extra_fields: HashMap<String, serde_yaml::Value>,
}
impl Default for HomeserverConfig {
fn default() -> HomeserverConfig {
Self::builder().build()
}
}
impl HomeserverConfig {
pub fn set_host_port(&mut self, port: u64) {
self.host_port = port;
self.server_name = format!("localhost:{}", port);
self.public_baseurl = format!("http://localhost:{}", port);
}
pub fn host_port_default() -> u64 {
9999
}
pub fn server_name_default() -> String {
"localhost:9999".to_string()
}
pub fn public_baseurl_default() -> String {
format!("http://{}", Self::server_name_default())
}
pub fn registration_shared_secret_default() -> String {
"MX_TESTER_REGISTRATION_DEFAULT".to_string()
}
}
#[derive(Debug, TypedBuilder, Deserialize)]
pub struct WorkersConfig {
#[serde(default)]
#[builder(default = false)]
pub enabled: bool,
}
impl Default for WorkersConfig {
fn default() -> Self {
Self::builder().build()
}
}
#[derive(Debug, TypedBuilder, Deserialize)]
pub struct Config {
pub name: String,
#[serde(default)]
#[builder(default)]
pub modules: Vec<ModuleConfig>,
#[serde(default)]
#[builder(default)]
pub homeserver: HomeserverConfig,
#[serde(default)]
#[builder(default)]
pub up: Option<UpScript>,
#[serde(default)]
#[builder(default)]
pub run: Option<Script>,
#[serde(default)]
#[builder(default)]
pub down: Option<DownScript>,
#[serde(default)]
#[builder(default)]
pub docker: DockerConfig,
#[serde(default)]
#[builder(default)]
pub users: Vec<User>,
#[serde(default)]
#[builder(default)]
pub synapse: SynapseVersion,
#[serde(default)]
#[builder(default)]
pub credentials: DockerCredentials,
#[serde(default)]
#[builder(default)]
pub directories: Directories,
#[serde(default)]
#[builder(default)]
pub workers: WorkersConfig,
#[serde(default = "util::true_")]
#[builder(default = true)]
pub autoclean_on_error: bool,
}
impl Config {
pub fn shared_env_variables(&self) -> Result<HashMap<&'static OsStr, OsString>, Error> {
let synapse_root = self.synapse_root();
let script_tmpdir = synapse_root.join("scripts");
std::fs::create_dir_all(&script_tmpdir)
.with_context(|| format!("Could not create directory {:#?}", script_tmpdir,))?;
let curdir = std::env::current_dir()?;
let mut env: HashMap<&'static OsStr, _> = HashMap::new();
env.insert(&*MX_TEST_SYNAPSE_DIR, synapse_root.as_os_str().into());
env.insert(&*MX_TEST_SCRIPT_TMPDIR, script_tmpdir.as_os_str().into());
env.insert(&*MX_TEST_CWD, curdir.as_os_str().into());
Ok(env)
}
pub fn patch_homeserver_config(&self) -> Result<(), Error> {
use serde_yaml::{Mapping, Value as YAML};
const LISTENERS: &str = "listeners";
const MODULES: &str = "modules";
let target_path = self.synapse_root().join("data").join("homeserver.yaml");
debug!("Attempting to open {:#?}", target_path);
let config_file = std::fs::File::open(&target_path)
.context("Could not open the homeserver.yaml generated by synapse")?;
let mut combined_config: Mapping = serde_yaml::from_reader(config_file)
.context("The homeserver.yaml generated by synapse is invalid")?;
for (key, value) in [
("public_baseurl", &self.homeserver.public_baseurl),
("server_name", &self.homeserver.server_name),
(
"registration_shared_secret",
&self.homeserver.registration_shared_secret,
),
] {
combined_config.insert(key.into(), value.to_string().into());
}
for (key, value) in &self.homeserver.extra_fields {
combined_config.insert(YAML::from(key.clone()), value.clone());
}
let listeners = combined_config
.entry(LISTENERS.into())
.or_insert_with(|| yaml!([]));
*listeners = yaml!([yaml!({
"port" => if self.workers.enabled { HARDCODED_MAIN_PROCESS_HTTP_LISTENER_PORT } else { HARDCODED_GUEST_PORT },
"tls" => false,
"type" => "http",
"bind_addresses" => yaml!(["::"]),
"x_forwarded" => false,
"resources" => yaml!([
yaml!({
"names" => yaml!(["client"]),
"compress" => true
}),
yaml!({
"names" => yaml!(["federation"]),
"compress" => false
})
]),
})]);
if self.workers.enabled {
listeners
.as_sequence_mut()
.unwrap()
.push(yaml!({
"port" => 9093,
"bind_address" => "127.0.0.1",
"type" => "http",
"resources" => yaml!([
yaml!({
"names" => yaml!(["replication"])
})
])
}));
}
let modules_root = combined_config
.entry(MODULES.into())
.or_insert_with(|| yaml!([]))
.to_seq_mut()
.ok_or_else(|| anyhow!("In homeserver.yaml, expected a sequence for key `modules`"))?;
for module in &self.modules {
modules_root.push(module.config.clone());
}
if self.workers.enabled {
for (key, value) in std::array::IntoIter::new([
(
"redis",
yaml!({
"enabled" => true,
}),
),
(
"database",
yaml!({
"name" => "psycopg2",
"txn_limit" => 10_000,
"args" => yaml!({
"user" => "synapse",
"password" => "password",
"host" => "localhost",
"port" => 5432,
"cp_min" => 5,
"cp_max" => 10
})
}),
),
("notify_appservices", yaml!(false)),
("send_federation", yaml!(false)),
("update_user_directory", yaml!(false)),
("start_pushers", yaml!(false)),
("url_preview_enabled", yaml!(false)),
(
"url_preview_ip_range_blacklist",
yaml!(["255.255.255.255/32",]),
),
("suppress_key_server_warning", yaml!(true)),
]) {
combined_config.insert(yaml!(key), value);
}
let conf_path = self.synapse_workers_dir().join("shared.yaml");
let conf_file = std::fs::File::open(&conf_path).with_context(|| {
format!("Could not open workers shared config: {:?}", conf_path)
})?;
let mut config: serde_yaml::Mapping = serde_yaml::from_reader(&conf_file)
.with_context(|| {
format!("Could not parse workers shared config: {:?}", conf_path)
})?;
let modules_root = config
.entry(MODULES.into())
.or_insert_with(|| yaml!([]))
.to_seq_mut()
.ok_or_else(|| anyhow!("In shared.yaml, expected a sequence for key `modules`"))?;
for module in &self.modules {
modules_root.push(module.config.clone());
}
for (key, value) in std::array::IntoIter::new([
("url_preview_enabled", yaml!(false)),
(
"url_preview_ip_range_blacklist",
yaml!(["255.255.255.255/32"]),
),
(
"database",
yaml!({
"name" => "psycopg2",
"txn_limit" => 10_000,
"args" => yaml!({
"user" => "synapse",
"password" => "password",
"host" => "localhost",
"port" => 5432,
"cp_min" => 5,
"cp_max" => 10
})
}),
),
]) {
config.insert(yaml!(key), value);
}
serde_yaml::to_writer(std::fs::File::create(&conf_path)?, &combined_config)
.context("Could not write workers shared config")?;
}
serde_yaml::to_writer(std::fs::File::create(&target_path)?, &combined_config)
.context("Could not write combined homeserver config")?;
Ok(())
}
pub fn test_root(&self) -> PathBuf {
self.directories.root.join(&self.name)
}
pub fn synapse_root(&self) -> PathBuf {
self.test_root().join("synapse")
}
pub fn synapse_data_dir(&self) -> PathBuf {
self.synapse_root().join("data")
}
pub fn synapse_workers_dir(&self) -> PathBuf {
self.synapse_root().join("workers")
}
pub fn etc_dir(&self) -> PathBuf {
self.test_root().join("etc")
}
pub fn logs_dir(&self) -> PathBuf {
self.test_root().join("logs")
}
pub fn scripts_logs_dir(&self) -> PathBuf {
self.logs_dir().join("mx-tester")
}
pub fn tag(&self) -> String {
match self.synapse {
SynapseVersion::Docker { ref tag } => {
format!(
"mx-tester-synapse-{}-{}{workers}",
tag,
self.name,
workers = if self.workers.enabled { "-workers" } else { "" }
)
}
}
}
pub fn network(&self) -> String {
self.tag()
}
pub fn setup_container_name(&self) -> String {
format!(
"mx-tester-synapse-setup-{}{}",
self.name,
if self.workers.enabled { "-workers" } else { "" }
)
}
pub fn run_container_name(&self) -> String {
format!(
"mx-tester-synapse-run-{}{}",
self.name,
if self.workers.enabled { "-workers" } else { "" }
)
}
}
#[derive(Debug, TypedBuilder, Deserialize)]
pub struct Directories {
#[builder(default=std::env::temp_dir().join("mx-tester"))]
pub root: PathBuf,
}
impl Default for Directories {
fn default() -> Self {
Directories::builder().build()
}
}
pub enum Status {
Success,
Failure,
Manual,
}
const DEFAULT_SYNAPSE_VERSION: &str = "matrixdotorg/synapse:latest";
#[derive(Debug, Deserialize)]
pub enum SynapseVersion {
#[serde(rename = "docker")]
Docker { tag: String },
}
impl Default for SynapseVersion {
fn default() -> Self {
Self::Docker {
tag: DEFAULT_SYNAPSE_VERSION.to_string(),
}
}
}
#[derive(Debug, Deserialize)]
#[serde(transparent)]
pub struct Script {
lines: Vec<String>,
}
impl Script {
pub async fn run(
&self,
stage: &'static str,
log_dir: &PathBuf,
env: &HashMap<&'static OsStr, OsString>,
) -> Result<(), Error> {
debug!("Running with environment variables {:#?}", env);
let executor = Executor::try_new().context("Cannot instantiate executor")?;
for line in &self.lines {
let mut command = executor
.command(line)
.with_context(|| format!("Could not interpret `{}` as shell script", line))?;
for (key, val) in env {
command.env(key, val);
}
command
.spawn_logged(log_dir, stage)
.await
.with_context(|| format!("Error within line {line}"))?;
}
Ok(())
}
}
#[derive(Debug, Deserialize)]
pub struct ModuleConfig {
name: String,
build: Script,
#[serde(default)]
install: Option<Script>,
config: serde_yaml::Value,
}
#[derive(Debug, Deserialize)]
#[serde(untagged)]
pub enum UpScript {
FullUpScript(FullUpScript),
SimpleScript(Script),
}
impl Default for UpScript {
fn default() -> Self {
UpScript::FullUpScript(FullUpScript::default())
}
}
#[derive(Debug, Deserialize, Default)]
pub struct FullUpScript {
before: Option<Script>,
after: Option<Script>,
}
#[derive(Debug, Deserialize)]
pub struct DownScript {
success: Option<Script>,
failure: Option<Script>,
finally: Option<Script>,
}
async fn start_synapse_container(
docker: &Docker,
config: &Config,
container_name: &str,
cmd: Vec<String>,
detach: bool,
) -> Result<(), Error> {
let data_dir = config.synapse_data_dir();
let data_dir = data_dir.as_path();
let mut env = vec![
format!("SYNAPSE_SERVER_NAME={}", config.homeserver.server_name),
"SYNAPSE_REPORT_STATS=no".into(),
"SYNAPSE_CONFIG_DIR=/data".into(),
format!(
"SYNAPSE_HTTP_PORT={}",
if config.workers.enabled {
HARDCODED_MAIN_PROCESS_HTTP_LISTENER_PORT
} else {
HARDCODED_GUEST_PORT
}
),
];
if config.workers.enabled {
env.push("SYNAPSE_WORKER_TYPES=event_persister, event_persister, background_worker, frontend_proxy, event_creator, user_dir, media_repository, federation_inbound, federation_reader, federation_sender, synchrotron, appservice, pusher".to_string());
env.push("SYNAPSE_WORKERS_WRITE_LOGS_TO_DISK=1".to_string());
}
let env = env;
debug!("We need to create container for {}", container_name);
let mut host_port_bindings = HashMap::new();
let mut exposed_ports = HashMap::new();
for mapping in config.docker.port_mapping.iter().chain(
[PortMapping {
host: config.homeserver.host_port,
guest: HARDCODED_GUEST_PORT,
}]
.iter(),
) {
let key = format!("{}/tcp", mapping.guest);
host_port_bindings.insert(
key.clone(),
Some(vec![PortBinding {
host_port: Some(format!("{}", mapping.host)),
..PortBinding::default()
}]),
);
exposed_ports.insert(key.clone(), HashMap::new());
}
debug!("port_bindings: {:#?}", host_port_bindings);
debug!("Creating container {}", container_name);
let response = docker
.create_container(
Some(CreateContainerOptions {
name: container_name,
}),
BollardContainerConfig {
env: Some(env.clone()),
exposed_ports: Some(exposed_ports),
hostname: Some(config.docker.hostname.clone()),
host_config: Some(HostConfig {
log_config: Some(HostConfigLogConfig {
typ: Some("json-file".to_string()),
config: None,
}),
restart_policy: Some(RestartPolicy {
name: Some(RestartPolicyNameEnum::ON_FAILURE),
maximum_retry_count: Some(MAX_SYNAPSE_RESTART_COUNT),
}),
memory_reservation: Some(MEMORY_ALLOCATION_BYTES),
memory_swap: Some(-1),
binds: Some(vec![
format!("{}:/data:rw", data_dir.as_os_str().to_string_lossy()),
format!(
"{}:/conf/workers:rw",
config.synapse_workers_dir().to_string_lossy()
),
format!(
"{}:/etc/nginx/conf.d:rw",
config.etc_dir().join("nginx").to_string_lossy()
),
format!(
"{}:/etc/supervisor/conf.d:rw",
config.etc_dir().join("supervisor").to_string_lossy()
),
format!(
"{}:/var/log/nginx:rw",
config.logs_dir().join("nginx").to_string_lossy()
),
format!(
"{}:/var/log/workers:rw",
config.logs_dir().join("workers").to_string_lossy()
),
]),
port_bindings: Some(host_port_bindings),
#[cfg(target_os = "linux")]
extra_hosts: Some(vec!["host.docker.internal:host-gateway".to_string()]),
..HostConfig::default()
}),
image: Some(config.tag()),
attach_stderr: Some(true),
attach_stdout: Some(true),
attach_stdin: Some(false),
cmd: Some(cmd.clone()),
volumes: Some(
vec![
("/data".to_string(), HashMap::new()),
("/conf/workers".to_string(), HashMap::new()),
("/etc/nginx/conf.d".to_string(), HashMap::new()),
("/etc/supervisor/conf.d".to_string(), HashMap::new()),
("/var/log/workers".to_string(), HashMap::new()),
]
.into_iter()
.collect(),
),
tty: Some(false),
#[cfg(unix)]
user: Some(format!("{}", nix::unistd::getuid())),
..BollardContainerConfig::default()
},
)
.await
.context("Failed to build container")?;
let mut wait = docker.wait_container(
container_name,
Some(WaitContainerOptions {
condition: "not-running",
}),
);
{
let container_name = container_name.to_string();
tokio::task::spawn(async move {
debug!(target: "mx-tester-wait", "{} Container started", container_name);
while let Some(next) = wait.next().await {
let response = next.context("Error while waiting for container to stop")?;
debug!(target: "mx-tester-wait", "{} {:#?}", container_name, response);
}
debug!(target: "mx-tester-wait", "{} Container is now down", container_name);
Ok::<(), Error>(())
});
}
for warning in response.warnings {
warn!(target: "creating-container", "{}", warning);
}
docker
.connect_network(
config.network().as_ref(),
ConnectNetworkOptions {
container: container_name,
endpoint_config: EndpointSettings::default(),
},
)
.await
.context("Failed to connect container")?;
let is_container_running = docker.is_container_running(container_name).await?;
if !is_container_running {
docker
.start_container(container_name, None::<StartContainerOptions<String>>)
.await
.context("Failed to start container")?;
let mut logs = docker.logs(
container_name,
Some(LogsOptions {
follow: true,
stdout: true,
stderr: true,
tail: "10",
..LogsOptions::default()
}),
);
let mut log_file = tokio::fs::OpenOptions::new()
.create(true)
.append(true)
.open(
config
.logs_dir()
.join("docker")
.join(format!("{}.log", if detach { "up" } else { "build" })),
)
.await?;
tokio::task::spawn(async move {
debug!(target: "mx-tester-log", "Starting log watcher");
while let Some(next) = logs.next().await {
match next {
Ok(content) => {
debug!(target: "mx-tester-log", "{}", content);
log_file
.write_all(format!("{}", content).as_bytes())
.await?;
}
Err(err) => {
error!(target: "mx-tester-log", "{}", err);
log_file
.write_all(format!("ERROR: {}", err).as_bytes())
.await?;
return Err(err).context("Error in log");
}
}
}
debug!(target: "mx-tester-log", "Stopped log watcher");
Ok(())
});
}
let cleanup = if config.autoclean_on_error {
Some(Cleanup::new(config))
} else {
None
};
let exec = docker
.create_exec(
container_name,
CreateExecOptions::<Cow<'_, str>> {
cmd: Some(cmd.into_iter().map(|s| s.into()).collect()),
env: Some(env.into_iter().map(|s| s.into()).collect()),
#[cfg(unix)]
user: Some(format!("{}", nix::unistd::getuid()).into()),
..CreateExecOptions::default()
},
)
.await
.context("Error while preparing to Synapse container")?;
let execution = docker
.start_exec(&exec.id, Some(StartExecOptions { detach }))
.await
.context("Error starting Synapse container")?;
if !detach {
let mut log_file = tokio::fs::OpenOptions::new()
.create(true)
.append(true)
.open(
config
.logs_dir()
.join("docker")
.join(format!("{}.out", if detach { "up" } else { "build" })),
)
.await?;
tokio::task::spawn(async move {
debug!(target: "synapse", "Launching Synapse container");
match execution {
bollard::exec::StartExecResults::Attached {
mut output,
input: _,
} => {
while let Some(data) = output.next().await {
let output = data.context("Error during run")?;
debug!(target: "synapse", "{}", output);
log_file.write_all(format!("{}", output).as_bytes()).await?
}
}
bollard::exec::StartExecResults::Detached => panic!(),
}
debug!(target: "synapse", "Synapse container finished");
Ok::<(), Error>(())
})
.await??;
}
cleanup.disarm();
Ok(())
}
pub async fn build(docker: &Docker, config: &Config) -> Result<(), Error> {
let SynapseVersion::Docker {
tag: ref docker_tag,
} = config.synapse;
let setup_container_name = config.setup_container_name();
let run_container_name = config.run_container_name();
let _ = docker.stop_container(&run_container_name, None).await;
let _ = docker.remove_container(&run_container_name, None).await;
let _ = docker.stop_container(&setup_container_name, None).await;
let _ = docker.remove_container(&setup_container_name, None).await;
let _ = docker.remove_image(config.tag().as_ref(), None, None).await;
let synapse_root = config.synapse_root();
let _ = std::fs::remove_dir_all(config.test_root());
let modules_log_dir = config.scripts_logs_dir().join("modules");
for dir in &[
&config.synapse_data_dir(),
&config.synapse_workers_dir(),
&config.etc_dir().join("nginx"),
&config.etc_dir().join("supervisor"),
&config.logs_dir().join("docker"),
&config.logs_dir().join("nginx"),
&config.logs_dir().join("workers"),
&modules_log_dir,
] {
std::fs::create_dir_all(&dir)
.with_context(|| format!("Could not create directory {:#?}", dir,))?;
}
let mut env = config.shared_env_variables()?;
for module in &config.modules {
let path = synapse_root.join(&module.name);
env.insert(&*MX_TEST_MODULE_DIR, path.as_os_str().into());
debug!(
"Calling build script for module {} with MX_TEST_DIR={:#?}",
&module.name, path
);
module
.build
.run("build", &modules_log_dir, &env)
.await
.context("Error running build script")?;
debug!("Completed one module.");
}
if config.workers.enabled {
let conf_dir = synapse_root.join("conf");
std::fs::create_dir_all(&conf_dir)
.context("Could not create directory for worker configuration file")?;
let data = [
(
conf_dir.join("worker.yaml.j2"),
include_str!("../res/workers/worker.yaml.j2"),
),
(
conf_dir.join("shared.yaml.j2"),
include_str!("../res/workers/shared.yaml.j2"),
),
(
conf_dir.join("supervisord.conf.j2"),
include_str!("../res/workers/supervisord.conf.j2"),
),
(
conf_dir.join("nginx.conf.j2"),
include_str!("../res/workers/nginx.conf.j2"),
),
(
conf_dir.join("log.config"),
include_str!("../res/workers/log.config"),
),
(
synapse_root.join("workers_start.py"),
include_str!("../res/workers/workers_start.py"),
),
(
conf_dir.join("postgres.sql"),
include_str!("../res/workers/postgres.sql"),
),
];
for (path, content) in &data {
std::fs::write(&path, content).with_context(|| {
format!("Could not inject worker configuration file {:?}", path)
})?;
}
}
let dockerfile_content = format!("
# A custom Dockerfile to rebuild synapse from the official release + plugins
FROM {docker_tag}
VOLUME [\"/data\", \"/conf/workers\", \"/etc/nginx/conf.d\", \"/etc/supervisor/conf.d\", \"/var/log/workers\"]
# We're not running as root, to avoid messing up with the host
# filesystem, so we need a proper user. We give it the current
# use's uid to make sure that files written by this Docker image
# can be read and removed by the host's user.
RUN useradd mx-tester --uid {uid} --groups sudo
# Add a password, to be able to run sudo. We'll use it to
# chmod files.
RUN echo \"mx-tester:password\" | chpasswd
# Show the Synapse version, to aid with debugging.
RUN pip show matrix-synapse
{maybe_setup_workers}
# Copy and install custom modules.
RUN mkdir /mx-tester
{setup}
{copy}
ENTRYPOINT []
EXPOSE {synapse_http_port}/tcp 8009/tcp 8448/tcp
",
docker_tag = docker_tag,
setup = config.modules.iter()
.filter_map(|module| module.install.as_ref().map(|script| format!("## Setup {}\n{}\n", module.name, script.lines.iter().map(|line| format!("RUN {}", line)).format("\n"))))
.format("\n"),
copy = config.modules.iter()
.map(|module| format!("COPY {module} /mx-tester/{module}\nRUN /usr/local/bin/python -m pip install /mx-tester/{module}", module=module.name))
.format("\n"),
uid=nix::unistd::getuid(),
synapse_http_port = HARDCODED_GUEST_PORT,
maybe_setup_workers =
if config.workers.enabled {
"
# Install dependencies
RUN apt-get update && apt-get install -y postgresql postgresql-client-13 supervisor redis nginx sudo
# For workers, we're not using start.py but workers_start.py
# (which does call start.py, but that's a long story).
COPY workers_start.py /workers_start.py
COPY conf/* /conf/
# We're not going to be running workers_start.py as root, so
# let's make sure that it *can* run, write to /etc/nginx & co.
RUN chmod ugo+rx /workers_start.py && chown mx-tester /workers_start.py
"
} else {
""
}
);
debug!("dockerfile {}", dockerfile_content);
let dockerfile_path = synapse_root.join("Dockerfile");
std::fs::write(&dockerfile_path, dockerfile_content)
.with_context(|| format!("Could not write file {:#?}", dockerfile_path,))?;
debug!("Building tar file");
let docker_dir_path = config.test_root().join("tar");
std::fs::create_dir_all(&docker_dir_path)
.with_context(|| format!("Could not create directory {:#?}", docker_dir_path,))?;
let body = {
let tar_path = docker_dir_path.join("docker.tar");
{
let tar_file = std::fs::File::create(&tar_path)?;
let mut tar_builder = tar::Builder::new(tar_file);
debug!("tar: adding directory {:#?}", synapse_root);
tar_builder.append_dir_all("", &synapse_root)?;
tar_builder.finish()?;
}
let tar_file = tokio::fs::File::open(&tar_path).await?;
let stream = FramedRead::new(tar_file, BytesCodec::new());
hyper::Body::wrap_stream(stream)
};
debug!("Building image with tag {}", config.tag());
{
let mut stream = docker.build_image(
bollard::image::BuildImageOptions {
pull: true,
nocache: true,
t: config.tag(),
q: true,
rm: true,
..Default::default()
},
config.credentials.serveraddress.as_ref().map(|server| {
let mut credentials = HashMap::new();
credentials.insert(server.clone(), config.credentials.clone());
credentials
}),
Some(body),
);
while let Some(result) = stream.next().await {
let info = result.context("Daemon `docker build` indicated an error")?;
if let Some(ref error) = info.error {
return Err(anyhow!("Error while building an image: {}", error,));
}
debug!("Build image progress {:#?}", info);
}
}
debug!("Image built");
Ok(())
}
pub async fn up(docker: &Docker, config: &Config) -> Result<(), Error> {
let SynapseVersion::Docker { .. } = config.synapse;
let cleanup = if config.autoclean_on_error {
Some(Cleanup::new(config))
} else {
None
};
let network_name = config.network();
debug!("We'll need network {}", network_name);
if !docker.is_network_up(&network_name).await? {
debug!("Creating network {}", network_name);
docker
.create_network(CreateNetworkOptions {
name: network_name.as_str(),
..CreateNetworkOptions::default()
})
.await?;
assert!(
docker.is_network_up(&network_name).await?,
"The network should now be up"
);
} else {
debug!("Network {} already exists", network_name);
}
let script_log_dir = config.scripts_logs_dir();
match config.up {
Some(UpScript::FullUpScript(FullUpScript {
before: Some(ref script),
..
}))
| Some(UpScript::SimpleScript(ref script)) => {
let env = config.shared_env_variables()?;
script
.run("up", &script_log_dir, &env)
.await
.context("Error running `up` script (before)")?;
}
_ => {}
}
let setup_container_name = config.setup_container_name();
let run_container_name = config.run_container_name();
let synapse_data_directory = config.synapse_data_dir();
std::fs::create_dir_all(&synapse_data_directory)
.with_context(|| format!("Cannot create directory {:#?}", synapse_data_directory))?;
let homeserver_path = synapse_data_directory.join("homeserver.yaml");
let _ = std::fs::remove_file(&homeserver_path);
start_synapse_container(
docker,
config,
&setup_container_name,
if config.workers.enabled {
vec!["/workers_start.py".to_string(), "generate".to_string()]
} else {
vec!["/start.py".to_string(), "generate".to_string()]
},
false,
)
.await
.context("Couldn't generate homeserver.yaml")?;
debug!("done generating");
let _ = docker.stop_container(&setup_container_name, None).await;
let _ = docker.remove_container(&setup_container_name, None).await;
debug!("Updating homeserver.yaml");
config
.patch_homeserver_config()
.context("Error updating homeserver config")?;
while docker.is_container_running(&setup_container_name).await? {
debug!(
"Waiting until docker container {} is down before relaunching it",
setup_container_name
);
tokio::time::sleep(std::time::Duration::new(5, 0)).await;
}
start_synapse_container(
docker,
config,
&run_container_name,
if config.workers.enabled {
vec!["/workers_start.py".to_string(), "start".to_string()]
} else {
vec!["/start.py".to_string()]
},
true,
)
.await
.context("Failed to start Synapse")?;
debug!("Synapse should now be launched and ready");
match tokio::time::timeout(std::time::Duration::new(120, 0), async {
handle_user_registration(config)
.await
.context("Failed to setup users")
})
.await
{
Err(_) => {
panic!(
"User registration is taking too long. {}",
if docker.is_container_running(&run_container_name).await? {
"Container is running."
} else {
"For some reason, Synapse has stopped. Please check the Synapse logs and/or rerun `mx-tester up`."
}
);
}
Ok(result) => result,
}?;
if let Some(UpScript::FullUpScript(FullUpScript {
after: Some(ref script),
..
})) = config.up
{
let env = config.shared_env_variables()?;
script
.run("up", &script_log_dir, &env)
.await
.context("Error running `up` script (after)")?;
}
cleanup.disarm();
Ok(())
}
pub async fn down(docker: &Docker, config: &Config, status: Status) -> Result<(), Error> {
let SynapseVersion::Docker { .. } = config.synapse;
let run_container_name = config.run_container_name();
let script_log_dir = config.scripts_logs_dir();
let script_result = if let Some(ref down_script) = config.down {
let env = config.shared_env_variables()?;
let result = match (status, down_script) {
(
Status::Failure,
DownScript {
failure: Some(ref on_failure),
..
},
) => on_failure
.run("on_failure", &script_log_dir, &env)
.await
.context("Error while running script `down/failure`"),
(
Status::Success,
DownScript {
success: Some(ref on_success),
..
},
) => on_success
.run("on_success", &script_log_dir, &env)
.await
.context("Error while running script `down/success`"),
_ => Ok(()),
};
if let Some(ref on_always) = down_script.finally {
result.and(
on_always
.run("on_always", &script_log_dir, &env)
.await
.context("Error while running script `down/finally`"),
)
} else {
result
}
} else {
Ok(())
};
debug!(target: "mx-tester-down", "Taking down synapse.");
let stop_container_result = match docker.stop_container(&run_container_name, None).await {
Err(bollard::errors::Error::DockerResponseNotModifiedError { .. }) => {
debug!(target: "mx-tester-down", "Synapse was already down");
Ok(())
}
Err(bollard::errors::Error::DockerResponseNotFoundError { .. }) => {
debug!(target: "mx-tester-down", "No Synapse container");
Ok(())
}
Ok(_) => {
debug!(target: "mx-tester-down", "Synapse taken down");
Ok(())
}
Err(err) => Err(err).context("Error stopping container"),
};
debug!(target: "mx-tester-down", "Taking down network.");
let remove_network_result = match docker.remove_network(config.network().as_ref()).await {
Err(bollard::errors::Error::DockerResponseNotModifiedError { .. }) => {
debug!(target: "mx-tester-down", "Network was already down");
Ok(())
}
Err(bollard::errors::Error::DockerResponseNotFoundError { .. }) => {
debug!(target: "mx-tester-down", "No network");
Ok(())
}
Ok(_) => {
debug!(target: "mx-tester-down", "Network taken down");
Ok(())
}
Err(err) => Err(err).context("Error stopping network"),
};
script_result
.and(stop_container_result)
.and(remove_network_result)
}
pub async fn run(_docker: &Docker, config: &Config) -> Result<(), Error> {
if let Some(ref code) = config.run {
let env = config.shared_env_variables()?;
code.run("run", &config.scripts_logs_dir(), &env)
.await
.context("Error running `run` script")?;
}
Ok(())
}
#[async_trait::async_trait]
trait DockerExt {
async fn is_network_up(&self, name: &str) -> Result<bool, Error>;
async fn is_container_running(&self, name: &str) -> Result<bool, Error>;
async fn is_container_created(&self, name: &str) -> Result<bool, Error>;
}
#[async_trait::async_trait]
impl DockerExt for Docker {
async fn is_network_up(&self, name: &str) -> Result<bool, Error> {
let networks = self
.list_networks(Some(ListNetworksOptions {
filters: vec![("name", vec![name])].into_iter().collect(),
}))
.await?;
debug!("is_network_up {:#?}", networks);
Ok(networks.is_empty().not())
}
async fn is_container_running(&self, name: &str) -> Result<bool, Error> {
let containers = self
.list_containers(Some(ListContainersOptions {
all: false,
filters: vec![("name", vec![name])].into_iter().collect(),
..ListContainersOptions::default()
}))
.await?;
debug!("is_container_running {:#?}", containers);
Ok(containers.is_empty().not())
}
async fn is_container_created(&self, name: &str) -> Result<bool, Error> {
let containers: Vec<_> = self
.list_containers(Some(ListContainersOptions {
all: true,
filters: vec![("name", vec![name])].into_iter().collect(),
..ListContainersOptions::default()
}))
.await?;
debug!("is_container_created {:#?}", containers);
Ok(containers.is_empty().not())
}
}