aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/downloader/archive_downloader_test.rs
blob: 2c0e2ded6c4c45c0a228b2bc37888e4f47473055 (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
//! ref: composer/tests/Composer/Test/Downloader/ArchiveDownloaderTest.php

// These exercise getFileName/processUrl on an anonymous ArchiveDownloader subclass built
// with a mocked IO and a real HttpDownloader (curl_multi_init is todo!()), and pass mocked
// packages.

#[test]
#[ignore = "constructs an ArchiveDownloader (HttpDownloader reaches curl_multi_init, todo!()) with a mocked subclass/package"]
fn test_get_file_name() {
    todo!()
}

#[test]
#[ignore = "constructs an ArchiveDownloader (HttpDownloader reaches curl_multi_init, todo!()) with a mocked subclass/package"]
fn test_process_url() {
    todo!()
}

#[test]
#[ignore = "constructs an ArchiveDownloader (HttpDownloader reaches curl_multi_init, todo!()) with a mocked subclass/package"]
fn test_process_url2() {
    todo!()
}

#[test]
#[ignore = "constructs an ArchiveDownloader (HttpDownloader reaches curl_multi_init, todo!()) with a mocked subclass/package"]
fn test_process_url3() {
    todo!()
}

#[test]
#[ignore = "constructs an ArchiveDownloader (HttpDownloader reaches curl_multi_init, todo!()) with a mocked subclass/package"]
fn test_process_url_rewrite_dist() {
    todo!()
}

#[test]
#[ignore = "constructs an ArchiveDownloader (HttpDownloader reaches curl_multi_init, todo!()) with a mocked subclass/package"]
fn test_process_url_rewrite_bitbucket_dist() {
    todo!()
}