mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
sftp: Add SFTP and libssh2 to feature summary, and add tests
This commit is contained in:
parent
17a642551f
commit
2758fba10c
3 changed files with 28 additions and 1 deletions
|
@ -30,6 +30,7 @@ void FeatureConfigTest::testGetDefaultPort() {
|
|||
CPPUNIT_ASSERT_EQUAL((uint16_t)80, getDefaultPort("http"));
|
||||
CPPUNIT_ASSERT_EQUAL((uint16_t)443, getDefaultPort("https"));
|
||||
CPPUNIT_ASSERT_EQUAL((uint16_t)21, getDefaultPort("ftp"));
|
||||
CPPUNIT_ASSERT_EQUAL((uint16_t)22, getDefaultPort("sftp"));
|
||||
}
|
||||
|
||||
void FeatureConfigTest::testStrSupportedFeature() {
|
||||
|
@ -40,6 +41,13 @@ void FeatureConfigTest::testStrSupportedFeature() {
|
|||
CPPUNIT_ASSERT(!https);
|
||||
#endif // ENABLE_SSL
|
||||
CPPUNIT_ASSERT(!strSupportedFeature(MAX_FEATURE));
|
||||
|
||||
auto sftp = strSupportedFeature(FEATURE_SFTP);
|
||||
#ifdef HAVE_LIBSSH2
|
||||
CPPUNIT_ASSERT(sftp);
|
||||
#else // !HAVE_LIBSSH2
|
||||
CPPUNIT_ASSERT(!sftp);
|
||||
#endif // !HAVE_LIBSSH2
|
||||
}
|
||||
|
||||
void FeatureConfigTest::testFeatureSummary() {
|
||||
|
@ -75,6 +83,9 @@ void FeatureConfigTest::testFeatureSummary() {
|
|||
"XML-RPC",
|
||||
#endif // ENABLE_XML_RPC
|
||||
|
||||
#ifdef HAVE_LIBSSH2
|
||||
"SFTP",
|
||||
#endif // HAVE_LIBSSH2
|
||||
};
|
||||
|
||||
std::string featuresString = strjoin(std::begin(features),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue