Directory listing

This commit is contained in:
Dan Paulat 2022-11-02 21:59:16 -05:00
parent b9fc22d63e
commit d5d9285736
6 changed files with 337 additions and 0 deletions

View file

@ -0,0 +1,28 @@
#include <scwx/network/dir_list.hpp>
#include <gtest/gtest.h>
namespace scwx
{
namespace network
{
static const std::string& kDefaultUrl {"https://warnings.allisonhouse.com"};
static const std::string& kAlternateUrl {"http://warnings.cod.edu"};
TEST(DirList, GetDefaultUrl)
{
auto records = DirList(kDefaultUrl);
EXPECT_GT(records.size(), 0);
}
TEST(DirList, GetAlternateUrl)
{
auto records = DirList(kAlternateUrl);
EXPECT_GT(records.size(), 0);
}
} // namespace network
} // namespace scwx

View file

@ -15,6 +15,7 @@ set(SRC_AWIPS_TESTS source/scwx/awips/coded_location.test.cpp
source/scwx/awips/ugc.test.cpp)
set(SRC_COMMON_TESTS source/scwx/common/color_table.test.cpp
source/scwx/common/products.test.cpp)
set(SRC_NETWORK_TESTS source/scwx/network/dir_list.test.cpp)
set(SRC_PROVIDER_TESTS source/scwx/provider/aws_level2_data_provider.test.cpp
source/scwx/provider/aws_level3_data_provider.test.cpp)
set(SRC_QT_CONFIG_TESTS source/scwx/qt/config/county_database.test.cpp
@ -33,6 +34,7 @@ set(CMAKE_FILES test.cmake)
add_executable(wxtest ${SRC_MAIN}
${SRC_AWIPS_TESTS}
${SRC_COMMON_TESTS}
${SRC_NETWORK_TESTS}
${SRC_PROVIDER_TESTS}
${SRC_QT_CONFIG_TESTS}
${SRC_QT_MANAGER_TESTS}
@ -43,6 +45,7 @@ add_executable(wxtest ${SRC_MAIN}
source_group("Source Files\\main" FILES ${SRC_MAIN})
source_group("Source Files\\awips" FILES ${SRC_AWIPS_TESTS})
source_group("Source Files\\common" FILES ${SRC_COMMON_TESTS})
source_group("Source Files\\network" FILES ${SRC_NETWORK_TESTS})
source_group("Source Files\\provider" FILES ${SRC_PROVIDER_TESTS})
source_group("Source Files\\qt\\config" FILES ${SRC_QT_CONFIG_TESTS})
source_group("Source Files\\qt\\manager" FILES ${SRC_QT_MANAGER_TESTS})