aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/repository/composer_repository_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/repository/composer_repository_test.rs')
-rw-r--r--crates/shirabe/tests/repository/composer_repository_test.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/crates/shirabe/tests/repository/composer_repository_test.rs b/crates/shirabe/tests/repository/composer_repository_test.rs
index 627027a..89c55b5 100644
--- a/crates/shirabe/tests/repository/composer_repository_test.rs
+++ b/crates/shirabe/tests/repository/composer_repository_test.rs
@@ -1 +1,24 @@
//! ref: composer/tests/Composer/Test/Repository/ComposerRepositoryTest.php
+
+// These construct a ComposerRepository with a mocked HttpDownloader/IO/Config and parse
+// provider/package data whose constraints go through a look-around regex; mocking is not
+// available and a real HttpDownloader reaches curl_multi_init (todo!()).
+macro_rules! stub {
+ ($name:ident) => {
+ #[test]
+ #[ignore = "mocks HttpDownloader/IO (curl_multi_init todo!()) and parses constraints via a look-around regex"]
+ fn $name() {
+ todo!()
+ }
+ };
+}
+
+stub!(test_load_data);
+stub!(test_what_provides);
+stub!(test_search_with_type);
+stub!(test_search_with_special_chars);
+stub!(test_search_with_abandoned_packages);
+stub!(test_canonicalize_url);
+stub!(test_get_provider_names_will_return_partial_package_names);
+stub!(test_get_security_advisories_assert_repository_http_options_are_used);
+stub!(test_get_security_advisories_assert_repository_advisories_is_zero_indexed_array_with_consecutive_keys);