1
0
mirror of synced 2025-04-20 11:47:43 +03:00

Enabled HostnameToIPConversionTest.YouTube_Online partially

This commit is contained in:
yhirose 2024-09-13 20:45:59 -04:00
parent a61b2427b0
commit 6553cdedab

View File

@ -734,19 +734,17 @@ TEST(HostnameToIPConversionTest, HTTPWatch_Online) {
EXPECT_EQ(1u, addrs.size()); EXPECT_EQ(1u, addrs.size());
} }
#if 0 // It depends on each test environment...
TEST(HostnameToIPConversionTest, YouTube_Online) { TEST(HostnameToIPConversionTest, YouTube_Online) {
auto host = "www.youtube.com"; auto host = "www.youtube.com";
std::vector<std::string> addrs; std::vector<std::string> addrs;
hosted_at(host, addrs); hosted_at(host, addrs);
EXPECT_EQ(20u, addrs.size()); EXPECT_EQ(20u, addrs.size());
auto it = std::find(addrs.begin(), addrs.end(), "2607:f8b0:4006:809::200e"); // It depends on each test environment...
EXPECT_TRUE(it != addrs.end()); // auto it = std::find(addrs.begin(), addrs.end(), "2607:f8b0:4006:809::200e");
// EXPECT_TRUE(it != addrs.end());
} }
#endif
TEST(ChunkedEncodingTest, WithContentReceiver_Online) { TEST(ChunkedEncodingTest, WithContentReceiver_Online) {
auto host = "www.httpwatch.com"; auto host = "www.httpwatch.com";