aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util/http_downloader.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-25 15:12:06 +0900
committernsfisis <nsfisis@gmail.com>2026-06-26 00:20:05 +0900
commit8117e5450693d19726da877bce8aacf5c7aa53af (patch)
tree4b06e6f6924599f3402d29cdcdeb0f8a88354d89 /crates/shirabe/src/util/http_downloader.rs
parent8dd3d67884a204ca40e3364206868fea77a312be (diff)
downloadphp-shirabe-8117e5450693d19726da877bce8aacf5c7aa53af.tar.gz
php-shirabe-8117e5450693d19726da877bce8aacf5c7aa53af.tar.zst
php-shirabe-8117e5450693d19726da877bce8aacf5c7aa53af.zip
test: port 44 vcs/downloader/version tests using mock infra
Port git, version_guesser, gitlab_driver, github_driver, and git_downloader tests using the ProcessExecutor/HttpDownloader mocks and IO/Config stubs. Fix production regex-porting bugs surfaced by the now-reachable paths: Url::sanitize and Response::find_header_value had non-delimited PCRE patterns; implement array_search_mixed non-strict branch and a datetime format mapping. Add HttpDownloader::__new_mock so mocked downloaders skip curl construction. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/util/http_downloader.rs')
-rw-r--r--crates/shirabe/src/util/http_downloader.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/shirabe/src/util/http_downloader.rs b/crates/shirabe/src/util/http_downloader.rs
index edc84cc..782f04a 100644
--- a/crates/shirabe/src/util/http_downloader.rs
+++ b/crates/shirabe/src/util/http_downloader.rs
@@ -883,6 +883,30 @@ impl HttpDownloader {
&& function_exists("curl_multi_init")
}
+ /// For testing only. Builds an HttpDownloader whose request methods are fully
+ /// short-circuited by the mock (see [`HttpDownloader::__expects`]), without
+ /// constructing the real curl/rfs backends. Mirrors HttpDownloaderMock, which
+ /// extends HttpDownloader but never performs curl I/O.
+ pub fn __new_mock(
+ io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>,
+ config: std::rc::Rc<std::cell::RefCell<Config>>,
+ ) -> Self {
+ Self {
+ io,
+ config,
+ jobs: IndexMap::new(),
+ options: IndexMap::new(),
+ running_jobs: 0,
+ max_jobs: 12,
+ curl: None,
+ rfs: None,
+ id_gen: 0,
+ disabled: false,
+ allow_async: false,
+ mock: None,
+ }
+ }
+
/// For testing only. Mirrors HttpDownloaderMock::expects: installs the expectation queue,
/// strict flag and default handler used by the mock request path.
pub fn __expects(