aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/repository/vcs/hg_driver_test.rs
blob: d7ff5c3d05844d20f2dadfc0e8c05e0486178c8c (plain)
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
//! ref: composer/tests/Composer/Test/Repository/Vcs/HgDriverTest.php

use std::cell::RefCell;
use std::rc::Rc;

use shirabe::config::Config;
use shirabe::io::IOInterface;
use shirabe::io::null_io::NullIO;
use shirabe::repository::vcs::HgDriver;

fn supports_data_provider() -> Vec<&'static str> {
    vec![
        "ssh://bitbucket.org/user/repo",
        "ssh://hg@bitbucket.org/user/repo",
        "ssh://user@bitbucket.org/user/repo",
        "https://bitbucket.org/user/repo",
        "https://user@bitbucket.org/user/repo",
    ]
}

#[test]
fn test_supports() {
    for repository_url in supports_data_provider() {
        let io: Rc<RefCell<dyn IOInterface>> = Rc::new(RefCell::new(NullIO::new()));
        let config = Rc::new(RefCell::new(Config::new(true, None)));

        assert!(HgDriver::supports(io, config, repository_url, false).unwrap());
    }
}

// The remaining cases construct an HgDriver, which requires an HttpDownloader
// (curl_multi_init is todo!() in the php-shim) and a mocked ProcessExecutor to feed
// hg command output, neither of which is available here.
#[test]
#[ignore = "needs an HgDriver instance (HttpDownloader reaches curl_multi_init, todo!()) and a mocked ProcessExecutor"]
fn test_get_branches_filter_invalid_branch_names() {
    todo!()
}

#[test]
#[ignore = "needs an HgDriver instance (HttpDownloader reaches curl_multi_init, todo!()) and a mocked ProcessExecutor"]
fn test_file_get_content_invalid_identifier() {
    todo!()
}

#[test]
#[ignore = "needs an HgDriver instance (HttpDownloader reaches curl_multi_init, todo!()) and a mocked ProcessExecutor"]
fn test_get_change_date_invalid_identifier() {
    todo!()
}