liboxen 0.9.4-beta3

Oxen is a fast, unstructured data version control, to help version datasets, written in Rust.
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
//! Helpers for our unit and integration tests
//!

use crate::api;
use crate::command;
use crate::constants;

use crate::constants::DEFAULT_REMOTE_NAME;
use crate::core::index::{RefWriter, Stager};
use crate::error::OxenError;
use crate::model::schema::Field;
use crate::model::RepoNew;
use crate::model::Schema;
use crate::model::{LocalRepository, RemoteRepository};

use crate::opts::RmOpts;
use crate::util;

use env_logger::Env;
use rand::distributions::Alphanumeric;
use rand::Rng;
use std::fs::File;
use std::fs::OpenOptions;
use std::future::Future;
use std::io::prelude::*;
use std::path::{Path, PathBuf};

pub const DEFAULT_TEST_HOST: &str = "localhost:3000";

pub fn test_run_dir() -> PathBuf {
    PathBuf::from("data").join("test").join("runs")
}

pub fn test_host() -> String {
    match std::env::var("OXEN_TEST_HOST") {
        Ok(host) => host,
        Err(_err) => String::from(DEFAULT_TEST_HOST),
    }
}

fn generate_random_string(len: usize) -> String {
    rand::thread_rng()
        .sample_iter(&Alphanumeric)
        .take(len)
        .map(char::from)
        .collect()
}

pub fn repo_remote_url_from(name: &str) -> String {
    // Tests always point to localhost
    api::endpoint::remote_url_from_namespace_name(
        test_host().as_str(),
        constants::DEFAULT_NAMESPACE,
        name,
    )
}

pub fn init_test_env() {
    let env = Env::default();
    if env_logger::try_init_from_env(env).is_ok() {
        log::debug!("Logger initialized");
    }

    std::env::set_var("TEST", "true");
}

fn create_prefixed_dir(
    base_dir: impl AsRef<Path>,
    prefix: impl AsRef<Path>,
) -> Result<PathBuf, OxenError> {
    let base_dir = base_dir.as_ref();
    let prefix = prefix.as_ref();
    let repo_name = prefix
        .join(base_dir)
        .join(format!("{}", uuid::Uuid::new_v4()));
    let full_dir = Path::new(base_dir).join(repo_name);
    std::fs::create_dir_all(&full_dir)?;
    Ok(full_dir)
}

fn create_repo_dir(base_dir: impl AsRef<Path>) -> Result<PathBuf, OxenError> {
    create_prefixed_dir(base_dir, "repo")
}

fn create_empty_dir(base_dir: impl AsRef<Path>) -> Result<PathBuf, OxenError> {
    create_prefixed_dir(base_dir, "dir")
}

pub async fn create_remote_repo(repo: &LocalRepository) -> Result<RemoteRepository, OxenError> {
    let repo_new = RepoNew::from_namespace_name_host(
        constants::DEFAULT_NAMESPACE,
        repo.dirname(),
        test_host(),
    );
    api::remote::repositories::create_from_local(repo, repo_new).await
}

/// # Run a unit test on a test repo directory
///
/// This function will create a directory with a uniq name
/// and take care of cleaning it up afterwards
///
/// ```
/// # use liboxen::test;
/// test::run_empty_dir_test(|repo_dir| {
///   // do your fancy testing here
///   assert!(true);
///   Ok(())
/// });
/// ```
pub fn run_empty_dir_test<T>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(&Path) -> Result<(), OxenError> + std::panic::UnwindSafe,
{
    init_test_env();
    let repo_dir = create_empty_dir(test_run_dir())?;

    // Run test to see if it panic'd
    let result = std::panic::catch_unwind(|| match test(&repo_dir) {
        Ok(_) => {}
        Err(err) => {
            panic!("Error running test. Err: {}", err);
        }
    });

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result.is_ok());

    Ok(())
}

pub async fn run_empty_dir_test_async<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(PathBuf) -> Fut,
    Fut: Future<Output = Result<PathBuf, OxenError>>,
{
    init_test_env();
    let repo_dir = create_empty_dir(test_run_dir())?;

    // Run test to see if it panic'd
    let result = match test(repo_dir).await {
        Ok(repo_dir) => {
            // Remove repo dir
            util::fs::remove_dir_all(repo_dir)?;
            true
        }
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Assert everything okay after we cleanup the repo dir
    assert!(result);

    Ok(())
}

pub fn run_empty_local_repo_test<T>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Result<(), OxenError>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    let result = match test(repo) {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

pub async fn run_empty_local_repo_test_async<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Fut,
    Fut: Future<Output = Result<(), OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    let result = match test(repo).await {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Test syncing between local and remote, where both exist, and both are empty
pub async fn run_empty_sync_repo_test<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(&LocalRepository, RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;

    let local_repo = command::init(&repo_dir)?;
    let remote_repo = create_remote_repo(&local_repo).await?;

    // Run test to see if it panic'd
    let result = match test(&local_repo, remote_repo).await {
        Ok(remote_repo) => {
            // Cleanup remote repo
            api::remote::repositories::delete(&remote_repo).await?;
            true
        }
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Cleanup local repo
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Test syncing between local and remote where local has high n commits and remote is empty
pub async fn run_many_local_commits_empty_sync_remote_test<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository, RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;

    let mut local_repo = command::init(&repo_dir)?;
    let remote_repo = create_remote_repo(&local_repo).await?;

    // Set remote
    command::config::set_remote(
        &mut local_repo,
        DEFAULT_REMOTE_NAME,
        &remote_repo.remote.url,
    )?;

    let local_repo_dir = local_repo.path.clone();

    for i in 1..25 {
        // Get random string
        let txt = generate_random_string(20);
        let file_path = add_txt_file_to_dir(&local_repo_dir, &txt)?;
        command::add(&local_repo, &file_path)?;
        command::commit(&local_repo, &format!("Adding file_{}", i))?;
    }

    // Run test to see if it panic'd
    let result = match test(local_repo, remote_repo).await {
        Ok(remote_repo) => {
            // Cleanup remote repo
            api::remote::repositories::delete(&remote_repo).await?;
            true
        }
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    assert!(result);
    Ok(())
}

/// Test where the local repo has training data in it
pub async fn run_training_data_sync_test_no_commits<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository, RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let local_repo = command::init(&repo_dir)?;

    // Write all the training data files
    populate_dir_with_training_data(&repo_dir)?;

    let remote_repo = create_remote_repo(&local_repo).await?;
    println!("Got remote repo: {remote_repo:?}");

    // Run test to see if it panic'd
    let result = match test(local_repo, remote_repo).await {
        Ok(_remote_repo) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Test where we synced training data to the remote
pub async fn run_training_data_fully_sync_remote<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository, RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let mut local_repo = command::init(&repo_dir)?;

    // Write all the training data files
    populate_dir_with_training_data(&repo_dir)?;
    // Make a few commits before we sync
    command::add(&local_repo, local_repo.path.join("train"))?;
    command::commit(&local_repo, "Adding train/")?;

    command::add(&local_repo, local_repo.path.join("test"))?;
    command::commit(&local_repo, "Adding test/")?;

    command::add(&local_repo, local_repo.path.join("annotations"))?;
    command::commit(&local_repo, "Adding annotations/")?;

    command::add(&local_repo, local_repo.path.join("nlp"))?;
    command::commit(&local_repo, "Adding nlp/")?;

    // Remove the test dir to make a more complex history
    let rm_opts = RmOpts {
        path: PathBuf::from("test"),
        recursive: true,
        staged: false,
        remote: false,
    };
    command::rm(&local_repo, &rm_opts).await?;
    command::commit(&local_repo, "Removing test/")?;

    // Add all the files
    command::add(&local_repo, &local_repo.path)?;
    // Commit all the data locally
    command::commit(&local_repo, "Adding rest of data")?;

    // Create remote
    let remote_repo = create_remote_repo(&local_repo).await?;

    // Add remote
    let remote_url = repo_remote_url_from(&local_repo.dirname());
    command::config::set_remote(&mut local_repo, constants::DEFAULT_REMOTE_NAME, &remote_url)?;
    // Push data
    command::push(&local_repo).await?;

    // Run test to see if it panic'd
    let result = match test(local_repo, remote_repo).await {
        Ok(_remote_repo) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

pub async fn run_select_data_sync_remote<T, Fut>(data: &str, test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository, RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let mut local_repo = command::init(&repo_dir)?;

    // Write all the training data files
    populate_select_training_data(&repo_dir, data)?;

    // Make a few commits before we sync
    command::add(&local_repo, local_repo.path.join(data))?;
    command::commit(&local_repo, &format!("Adding {data}"))?;

    // Create remote
    let remote_repo = create_remote_repo(&local_repo).await?;

    // Add remote
    let remote_url = repo_remote_url_from(&local_repo.dirname());
    command::config::set_remote(&mut local_repo, constants::DEFAULT_REMOTE_NAME, &remote_url)?;
    // Push data
    command::push(&local_repo).await?;

    // Run test to see if it panic'd
    let result = match test(local_repo, remote_repo).await {
        Ok(_remote_repo) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Test where certain data is synced to the remote
pub async fn run_subset_of_data_fully_sync_remote<T, Fut>(
    data: &str,
    test: T,
) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository, RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let mut local_repo = command::init(&repo_dir)?;

    // Write all the training data files
    populate_select_training_data(&repo_dir, data)?;

    // Create remote
    let remote_repo = create_remote_repo(&local_repo).await?;

    // Add remote
    let remote_url = repo_remote_url_from(&local_repo.dirname());
    command::config::set_remote(&mut local_repo, constants::DEFAULT_REMOTE_NAME, &remote_url)?;
    // Push data
    command::push(&local_repo).await?;

    // Run test to see if it panic'd
    let result = match test(local_repo, remote_repo).await {
        Ok(_remote_repo) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Test interacting with a remote repo that was created via API, not local repo
pub async fn run_no_commit_remote_repo_test<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let name = format!("repo_{}", uuid::Uuid::new_v4());
    let namespace = constants::DEFAULT_NAMESPACE;
    let repo_new = RepoNew::from_namespace_name_host(namespace, name, test_host());
    let repo = api::remote::repositories::create_empty(repo_new).await?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(repo) => {
            // Cleanup remote repo
            api::remote::repositories::delete(&repo).await?;
            true
        }
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Test interacting with a remote repo that has nothing synced
pub async fn run_empty_remote_repo_test<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository, RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let empty_dir = create_empty_dir(test_run_dir())?;
    let name = format!("repo_{}", uuid::Uuid::new_v4());
    let path = empty_dir.join(name);
    let local_repo = command::init(&path)?;
    let remote_repo = create_remote_repo(&local_repo).await?;

    println!("REMOTE REPO: {remote_repo:?}");

    // Run test to see if it panic'd
    let result = match test(local_repo, remote_repo).await {
        Ok(repo) => {
            // Cleanup remote repo
            api::remote::repositories::delete(&repo).await?;
            true
        }
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Cleanup Local
    util::fs::remove_dir_all(path)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Test interacting with a remote repo that has has the initial commit pushed
pub async fn run_remote_repo_test_all_data_pushed<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let empty_dir = create_empty_dir(test_run_dir())?;
    let name = format!("repo_{}", uuid::Uuid::new_v4());
    let path = empty_dir.join(name);
    let mut local_repo = command::init(&path)?;

    // Write all the files
    populate_dir_with_training_data(&local_repo.path)?;
    add_all_data_to_repo(&local_repo)?;
    command::commit(&local_repo, "Adding all data")?;

    // Set the proper remote
    let remote = repo_remote_url_from(&local_repo.dirname());
    command::config::set_remote(&mut local_repo, constants::DEFAULT_REMOTE_NAME, &remote)?;

    // Create remote repo
    let repo = create_remote_repo(&local_repo).await?;

    command::push(&local_repo).await?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(_repo) => {
            // TODO: Cleanup remote repo
            // this was failing
            true
        }
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Cleanup Local
    util::fs::remove_dir_all(path)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Same as run_remote_repo_test_all_data_pushed but with just one file
pub async fn run_remote_repo_test_bounding_box_csv_pushed<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(RemoteRepository) -> Fut,
    Fut: Future<Output = Result<RemoteRepository, OxenError>>,
{
    init_test_env();
    let empty_dir = create_empty_dir(test_run_dir())?;
    let name = format!("repo_{}", uuid::Uuid::new_v4());
    let path = empty_dir.join(name);
    let mut local_repo = command::init(&path)?;

    // Write all the files
    create_bounding_box_csv(&local_repo.path)?;
    command::add(&local_repo, &local_repo.path)?;
    command::commit(&local_repo, "Adding bounding box csv")?;

    // Set the proper remote
    let remote = repo_remote_url_from(&local_repo.dirname());
    command::config::set_remote(&mut local_repo, constants::DEFAULT_REMOTE_NAME, &remote)?;

    // Create remote repo
    let repo = create_remote_repo(&local_repo).await?;

    command::push(&local_repo).await?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(_repo) => {
            // TODO: Cleanup remote repo
            // this was failing
            true
        }
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Cleanup Local
    util::fs::remove_dir_all(path)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Run a test on a repo with a bunch of filees
pub async fn run_training_data_repo_test_no_commits_async<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Fut,
    Fut: Future<Output = Result<(), OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Write all the files
    populate_dir_with_training_data(&repo_dir)?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

pub async fn run_select_data_repo_test_no_commits_async<T, Fut>(
    data: &str,
    test: T,
) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Fut,
    Fut: Future<Output = Result<(), OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Write all the files
    populate_select_training_data(&repo_dir, data)?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

pub async fn run_select_data_repo_test_committed_async<T, Fut>(
    data: &str,
    test: T,
) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Fut,
    Fut: Future<Output = Result<(), OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Write all the files
    populate_select_training_data(&repo_dir, data)?;

    // Add all the files
    command::add(&repo, &repo.path)?;
    // commit
    command::commit(&repo, "Adding all data")?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

pub async fn run_empty_data_repo_test_no_commits_async<T, Fut>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Fut,
    Fut: Future<Output = Result<(), OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Run a test on a repo with a bunch of files
pub fn run_training_data_repo_test_no_commits<T>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Result<(), OxenError> + std::panic::UnwindSafe,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Write all the files
    populate_dir_with_training_data(&repo_dir)?;

    // Run test to see if it panic'd
    let result = std::panic::catch_unwind(|| match test(repo) {
        Ok(_) => {}
        Err(err) => {
            panic!("Error running test. Err: {}", err);
        }
    });

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result.is_ok());
    Ok(())
}

pub fn run_select_data_repo_test_no_commits<T>(data: &str, test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Result<(), OxenError> + std::panic::UnwindSafe,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Write the select files
    populate_select_training_data(&repo_dir, data)?;

    // Run test to see if it panic'd
    let result = std::panic::catch_unwind(|| match test(repo) {
        Ok(_) => {}
        Err(err) => {
            panic!("Error running test. Err: {}", err);
        }
    });

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result.is_ok());
    Ok(())
}

/// Run a test on a repo with a bunch of files
pub async fn run_training_data_repo_test_fully_committed_async<T, Fut>(
    test: T,
) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Fut,
    Fut: Future<Output = Result<(), OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Write all the files
    populate_dir_with_training_data(&repo_dir)?;
    // Add all the files
    command::add(&repo, &repo.path)?;

    // Make it easy to find these schemas during testing
    command::schemas::set_name(&repo, "b821946753334c083124fd563377d795", "bounding_box")?;
    command::schemas::set_name(
        &repo,
        "34a3b58f5471d7ae9580ebcf2582be2f",
        "text_classification",
    )?;

    command::commit(&repo, "adding all data baby")?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

fn create_bounding_box_csv(repo_path: &Path) -> Result<(), OxenError> {
    let dir = repo_path.join("annotations").join("train");
    // Create dir
    util::fs::create_dir_all(&dir)?;

    // Write all the files
    write_txt_file_to_path(
        dir.join("bounding_box.csv"),
        r"file,label,min_x,min_y,width,height
train/dog_1.jpg,dog,101.5,32.0,385,330
train/dog_1.jpg,dog,102.5,31.0,386,330
train/dog_2.jpg,dog,7.0,29.5,246,247
train/dog_3.jpg,dog,19.0,63.5,376,421
train/cat_1.jpg,cat,57.0,35.5,304,427
train/cat_2.jpg,cat,30.5,44.0,333,396
",
    )?;

    Ok(())
}

pub async fn run_bounding_box_csv_repo_test_fully_committed_async<T, Fut>(
    test: T,
) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Fut,
    Fut: Future<Output = Result<(), OxenError>>,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Write all the files
    create_bounding_box_csv(&repo.path)?;
    // Add all the files
    command::add(&repo, &repo.path)?;

    // Make it easy to find these schemas during testing
    command::schemas::set_name(&repo, "b821946753334c083124fd563377d795", "bounding_box")?;
    command::schemas::set_name(
        &repo,
        "34a3b58f5471d7ae9580ebcf2582be2f",
        "text_classification",
    )?;

    command::commit(&repo, "adding all data baby")?;

    // Run test to see if it panic'd
    let result = match test(repo).await {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Run a test on a repo with just a nested annotations/train/bounding_box.csv file
pub fn run_bounding_box_csv_repo_test_fully_committed<T>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Result<(), OxenError> + std::panic::UnwindSafe,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Add all the files
    create_bounding_box_csv(&repo.path)?;
    command::add(&repo, &repo.path)?;

    // Make it easy to find these schemas during testing
    command::schemas::set_name(&repo, "b821946753334c083124fd563377d795", "bounding_box")?;
    command::schemas::set_name(
        &repo,
        "34a3b58f5471d7ae9580ebcf2582be2f",
        "text_classification",
    )?;

    command::commit(&repo, "adding all data baby")?;

    // Run test to see if it panic'd
    let result = match test(repo) {
        Ok(_) => true,
        Err(err) => {
            eprintln!("Error running test. Err: {err}");
            false
        }
    };

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result);
    Ok(())
}

/// Run a test on a repo with a bunch of files
pub fn run_training_data_repo_test_fully_committed<T>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(LocalRepository) -> Result<(), OxenError> + std::panic::UnwindSafe,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;

    // Write all the files
    populate_dir_with_training_data(&repo_dir)?;

    // Add all the files
    command::add(&repo, &repo.path)?;

    // Make it easy to find these schemas during testing
    command::schemas::set_name(&repo, "b821946753334c083124fd563377d795", "bounding_box")?;
    command::schemas::set_name(
        &repo,
        "34a3b58f5471d7ae9580ebcf2582be2f",
        "text_classification",
    )?;

    command::commit(&repo, "adding all data baby")?;

    // Run test to see if it panic'd
    let result = std::panic::catch_unwind(|| match test(repo) {
        Ok(_) => {}
        Err(err) => {
            panic!("Error running test. Err: {}", err);
        }
    });

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result.is_ok());
    Ok(())
}

fn add_all_data_to_repo(repo: &LocalRepository) -> Result<(), OxenError> {
    command::add(repo, repo.path.join("train"))?;
    command::add(repo, repo.path.join("test"))?;
    command::add(repo, repo.path.join("annotations"))?;
    command::add(repo, repo.path.join("large_files"))?;
    command::add(repo, repo.path.join("nlp"))?;
    command::add(repo, repo.path.join("labels.txt"))?;
    command::add(repo, repo.path.join("README.md"))?;

    // Make it easy to find these schemas during testing
    command::schemas::set_name(repo, "b821946753334c083124fd563377d795", "bounding_box")?;
    command::schemas::set_name(
        repo,
        "34a3b58f5471d7ae9580ebcf2582be2f",
        "text_classification",
    )?;

    Ok(())
}

pub fn run_empty_stager_test<T>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(Stager, LocalRepository) -> Result<(), OxenError> + std::panic::UnwindSafe,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    log::debug!("BEFORE COMMAND::INIT");
    let repo = command::init(&repo_dir)?;
    log::debug!("AFTER COMMAND::INIT");
    let stager = Stager::new(&repo)?;
    log::debug!("AFTER CREATE STAGER");

    // Run test to see if it panic'd
    let result = std::panic::catch_unwind(|| match test(stager, repo) {
        Ok(_) => {}
        Err(err) => {
            panic!("Error running test. Err: {}", err);
        }
    });

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result.is_ok());
    Ok(())
}

pub fn run_referencer_test<T>(test: T) -> Result<(), OxenError>
where
    T: FnOnce(RefWriter) -> Result<(), OxenError> + std::panic::UnwindSafe,
{
    init_test_env();
    let repo_dir = create_repo_dir(test_run_dir())?;
    let repo = command::init(&repo_dir)?;
    let referencer = RefWriter::new(&repo)?;

    // Run test to see if it panic'd
    let result = std::panic::catch_unwind(|| match test(referencer) {
        Ok(_) => {}
        Err(err) => {
            panic!("Error running test. Err: {}", err);
        }
    });

    // Remove repo dir
    util::fs::remove_dir_all(&repo_dir)?;

    // Assert everything okay after we cleanup the repo dir
    assert!(result.is_ok());
    Ok(())
}

pub fn user_cfg_file() -> PathBuf {
    Path::new("data")
        .join("test")
        .join("config")
        .join("user_config.toml")
}

pub fn auth_cfg_file() -> PathBuf {
    Path::new("data")
        .join("test")
        .join("config")
        .join("auth_config.toml")
}

pub fn repo_cfg_file() -> PathBuf {
    Path::new("data")
        .join("test")
        .join("config")
        .join("repo_config.toml")
}

pub fn test_img_file() -> PathBuf {
    Path::new("data")
        .join("test")
        .join("images")
        .join("dwight_vince.jpeg")
}

pub fn test_csv_file_with_name(name: &str) -> PathBuf {
    PathBuf::from("data").join("test").join("csvs").join(name)
}

pub fn test_img_file_with_name(name: &str) -> PathBuf {
    PathBuf::from("data").join("test").join("images").join(name)
}

pub fn test_text_file_with_name(name: &str) -> PathBuf {
    PathBuf::from("data").join("test").join("text").join(name)
}

pub fn test_video_file_with_name(name: &str) -> PathBuf {
    PathBuf::from("data").join("test").join("video").join(name)
}

pub fn test_audio_file_with_name(name: &str) -> PathBuf {
    PathBuf::from("data").join("test").join("audio").join(name)
}

pub fn test_200k_csv() -> PathBuf {
    Path::new("data")
        .join("test")
        .join("text")
        .join("celeb_a_200k.csv")
}

pub fn test_nlp_classification_csv() -> PathBuf {
    Path::new("nlp")
        .join("classification")
        .join("annotations")
        .join("test.tsv")
}

pub fn populate_readme(repo_dir: &Path) -> Result<(), OxenError> {
    write_txt_file_to_path(
        repo_dir.join("README.md"),
        r"
        # Welcome to the party

        If you are seeing this, you are deep in the test framework, love to see it, keep testing.

        Yes I am biased, dog is label 0, cat is label 1, not alphabetical. Interpret that as you will.

        🐂 💨
    ",
    )?;

    Ok(())
}

pub fn populate_labels(repo_dir: &Path) -> Result<(), OxenError> {
    write_txt_file_to_path(
        repo_dir.join("labels.txt"),
        r"
        dog
        cat
    ",
    )?;

    Ok(())
}

pub fn populate_large_files(repo_dir: &Path) -> Result<(), OxenError> {
    let large_dir = repo_dir.join("large_files");
    std::fs::create_dir_all(&large_dir)?;
    let large_file_1 = large_dir.join("test.csv");
    let from_file = test_200k_csv();
    util::fs::copy(from_file, large_file_1)?;

    Ok(())
}

pub fn populate_train_dir(repo_dir: &Path) -> Result<(), OxenError> {
    let train_dir = repo_dir.join("train");
    std::fs::create_dir_all(&train_dir)?;
    util::fs::copy(
        Path::new("data")
            .join("test")
            .join("images")
            .join("dog_1.jpg"),
        train_dir.join("dog_1.jpg"),
    )?;
    util::fs::copy(
        Path::new("data")
            .join("test")
            .join("images")
            .join("dog_2.jpg"),
        train_dir.join("dog_2.jpg"),
    )?;
    util::fs::copy(
        Path::new("data")
            .join("test")
            .join("images")
            .join("dog_3.jpg"),
        train_dir.join("dog_3.jpg"),
    )?;
    util::fs::copy(
        Path::new("data")
            .join("test")
            .join("images")
            .join("cat_1.jpg"),
        train_dir.join("cat_1.jpg"),
    )?;
    util::fs::copy(
        Path::new("data")
            .join("test")
            .join("images")
            .join("cat_2.jpg"),
        train_dir.join("cat_2.jpg"),
    )?;

    Ok(())
}

pub fn populate_test_dir(repo_dir: &Path) -> Result<(), OxenError> {
    let test_dir = repo_dir.join("test");
    std::fs::create_dir_all(&test_dir)?;
    util::fs::copy(
        Path::new("data")
            .join("test")
            .join("images")
            .join("dog_4.jpg"),
        test_dir.join("1.jpg"),
    )?;
    util::fs::copy(
        Path::new("data")
            .join("test")
            .join("images")
            .join("cat_3.jpg"),
        test_dir.join("2.jpg"),
    )?;

    Ok(())
}

pub fn populate_annotations_dir(repo_dir: &Path) -> Result<(), OxenError> {
    let annotations_dir = repo_dir.join("annotations");
    std::fs::create_dir_all(&annotations_dir)?;
    let annotations_readme_file = annotations_dir.join("README.md");
    write_txt_file_to_path(
        annotations_readme_file,
        r"
        # Annotations
        Some info about our annotations structure....
        ",
    )?;

    // annotations/train/
    let train_annotations_dir = annotations_dir.join("train");
    std::fs::create_dir_all(&train_annotations_dir)?;
    write_txt_file_to_path(
        train_annotations_dir.join("annotations.txt"),
        r"
train/dog_1.jpg 0
train/dog_2.jpg 0
train/dog_3.jpg 0
train/cat_1.jpg 1
train/cat_2.jpg 1
    ",
    )?;

    create_bounding_box_csv(repo_dir)?;

    write_txt_file_to_path(
        train_annotations_dir.join("one_shot.csv"),
        r"file,label,min_x,min_y,width,height
train/dog_1.jpg,dog,101.5,32.0,385,330
",
    )?;

    write_txt_file_to_path(
        train_annotations_dir.join("two_shot.csv"),
        r"file,label,min_x,min_y,width,height
train/dog_3.jpg,dog,19.0,63.5,376,421
train/cat_1.jpg,cat,57.0,35.5,304,427
",
    )?;

    // annotations/test/
    let test_annotations_dir = annotations_dir.join("test");
    std::fs::create_dir_all(&test_annotations_dir)?;
    write_txt_file_to_path(
        test_annotations_dir.join("annotations.csv"),
        r"file,label,min_x,min_y,width,height
test/dog_3.jpg,dog,19.0,63.5,376,421
test/cat_1.jpg,cat,57.0,35.5,304,427
test/unknown.jpg,unknown,0.0,0.0,0,0
",
    )?;

    Ok(())
}

pub fn populate_nlp_dir(repo_dir: &Path) -> Result<(), OxenError> {
    // Make sure to add a few duplicate examples for testing
    let nlp_annotations_dir = repo_dir
        .join("nlp")
        .join("classification")
        .join("annotations");
    std::fs::create_dir_all(&nlp_annotations_dir)?;
    write_txt_file_to_path(
        nlp_annotations_dir.join("train.tsv"),
        r"text	label
My tummy hurts	negative
I have a headache	negative
My tummy hurts	negative
I have a headache	negative
loving the sunshine	positive
And another unique one	positive
My tummy hurts	negative
loving the sunshine	positive
I am a lonely example	negative
I am adding more examples	positive
One more time	positive
",
    )?;

    write_txt_file_to_path(
        nlp_annotations_dir.join("test.tsv"),
        r"text	label
My tummy hurts	negative
My tummy hurts	negative
My tummy hurts	negative
I have a headache	negative
I have a headache	negative
loving the sunshine	positive
loving the sunshine	positive
I am a lonely example	negative
I am a great testing example	positive
    ",
    )?;
    Ok(())
}

pub fn populate_dir_with_training_data(repo_dir: &Path) -> Result<(), OxenError> {
    // Directory Structure
    // Features:
    //   - has multiple content types (jpg, txt, md)
    //   - has a few large data files that we have to chunk and transfer
    //   - has multiple directory levels (annotations/train/one_shot.txt)
    //   - has files at top level (README.md)
    //   - has files without extensions (LICENSE)
    //   - has files/dirs at different levels with same names (annotations.txt)
    //
    // nlp/
    //   classification/
    //     annotations/
    //       train.tsv
    //       test.tsv
    //
    // train/
    //   dog_1.jpg
    //   dog_2.jpg
    //   dog_3.jpg
    //   cat_1.jpg
    //   cat_2.jpg
    // test/
    //   1.jpg
    //   2.jpg
    // annotations/
    //   README.md
    //   train/
    //     bounding_box.csv
    //     one_shot.csv
    //     two_shot.csv
    //     annotations.txt
    //   test/
    //     annotations.txt
    // labels.txt
    // LICENSE
    // README.md

    // README.md
    populate_readme(repo_dir)?;

    // labels.txt
    populate_labels(repo_dir)?;

    // large_files/test.csv
    populate_large_files(repo_dir)?;

    // train/
    populate_train_dir(repo_dir)?;

    // test/
    populate_test_dir(repo_dir)?;

    // annotations/
    populate_annotations_dir(repo_dir)?;

    // nlp/classification/annotations/
    populate_nlp_dir(repo_dir)?;

    Ok(())
}

pub fn populate_select_training_data(repo_dir: &Path, data: &str) -> Result<(), OxenError> {
    // README.md
    if data.contains("README") {
        populate_readme(repo_dir)?;
    }

    // labels.txt
    if data.contains("labels") {
        populate_labels(repo_dir)?;
    }

    // large_files/test.csv
    if data.contains("large_files") {
        populate_large_files(repo_dir)?;
    }

    // train/
    if data.contains("train") {
        populate_train_dir(repo_dir)?;
    }

    // test/
    if data.contains("test") {
        populate_test_dir(repo_dir)?;
    }

    // annotations/
    if data.contains("annotations") {
        populate_annotations_dir(repo_dir)?;
    }

    // nlp/classification/annotations/
    if data.contains("nlp") {
        populate_nlp_dir(repo_dir)?;
    }

    Ok(())
}

pub fn add_file_to_dir(dir: &Path, contents: &str, extension: &str) -> Result<PathBuf, OxenError> {
    // Generate random name, because tests run in parallel, then return that name
    let file_path = PathBuf::from(format!("{}.{extension}", uuid::Uuid::new_v4()));
    let full_path = dir.join(file_path);
    // println!("add_txt_file_to_dir: {:?} to {:?}", file_path, full_path);

    let mut file = File::create(&full_path)?;
    file.write_all(contents.as_bytes())?;

    Ok(full_path)
}

pub fn add_txt_file_to_dir(dir: &Path, contents: &str) -> Result<PathBuf, OxenError> {
    add_file_to_dir(dir, contents, "txt")
}

pub fn add_csv_file_to_dir(dir: &Path, contents: &str) -> Result<PathBuf, OxenError> {
    add_file_to_dir(dir, contents, "csv")
}

pub fn write_txt_file_to_path<P: AsRef<Path>>(
    path: P,
    contents: &str,
) -> Result<PathBuf, OxenError> {
    let path = path.as_ref();
    let mut file = File::create(path)?;
    file.write_all(contents.as_bytes())?;
    Ok(path.to_path_buf())
}

pub fn append_line_txt_file<P: AsRef<Path>>(path: P, line: &str) -> Result<PathBuf, OxenError> {
    let path = path.as_ref();

    let mut file = OpenOptions::new().write(true).append(true).open(path)?;

    if let Err(e) = writeln!(file, "{line}") {
        return Err(OxenError::basic_str(format!("Couldn't write to file: {e}")));
    }

    Ok(path.to_path_buf())
}

pub fn modify_txt_file<P: AsRef<Path>>(path: P, contents: &str) -> Result<PathBuf, OxenError> {
    let path = path.as_ref();

    // Overwrite
    if path.exists() {
        util::fs::remove_file(path)?;
    }

    let path = write_txt_file_to_path(path, contents)?;
    Ok(path)
}

pub fn schema_bounding_box() -> Schema {
    let fields = vec![
        Field::new("file", "str"),
        Field::new("min_x", "f32"),
        Field::new("min_y", "f32"),
        Field::new("width", "f32"),
        Field::new("height", "f32"),
    ];
    Schema::new("bounding_box", fields)
}

pub fn add_random_bbox_to_file<P: AsRef<Path>>(path: P) -> Result<PathBuf, OxenError> {
    let mut rng = rand::thread_rng();
    let file_name = format!("random_img_{}.jpg", rng.gen_range(0..10));
    let x: f64 = rng.gen_range(0.0..1000.0);
    let y: f64 = rng.gen_range(0.0..1000.0);
    let w: i64 = rng.gen_range(0..1000);
    let h: i64 = rng.gen_range(0..1000);
    let line = format!("{file_name},{x:2},{y:2},{w},{h}");
    append_line_txt_file(path, &line)
}

pub fn add_img_file_to_dir(dir: &Path, file_path: &Path) -> Result<PathBuf, OxenError> {
    if let Some(ext) = file_path.extension() {
        // Generate random name with same extension, because tests run in parallel, then return that name
        let new_path = PathBuf::from(format!(
            "{}.{}",
            uuid::Uuid::new_v4(),
            ext.to_str().unwrap()
        ));
        let full_new_path = dir.join(new_path);

        // println!("COPY FILE FROM {:?} => {:?}", file_path, full_new_path);
        util::fs::copy(file_path, &full_new_path)?;
        Ok(full_new_path)
    } else {
        let err = format!("Unknown extension file: {file_path:?}");
        Err(OxenError::basic_str(err))
    }
}