// Copyright 2014 Google Inc. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #include "media/base/http_fetcher.h" #include "base/logging.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "media/base/status_test_util.h" namespace { const char kTestUrl[] = "http://packager-test.appspot.com/http_test"; const char kTestUrlWithPort[] = "http://packager-test.appspot.com:80/http_test"; const char kExpectedGetResponse[] = "
" "Arguments()"; const char kPostData[] = "foo=62&type=mp4"; const char kExpectedPostResponse[] = "
" "Arguments([foo]=>62[type]=>mp4)"; const char kDelayTwoSecs[] = "delay=2"; // This causes host to delay 2 seconds. } // namespace namespace media { static void CheckHttpGet(const std::string& url, const std::string& expected_response) { SimpleHttpFetcher fetcher; std::string response; ASSERT_OK(fetcher.Get(url, &response)); base::RemoveChars(response, "\r\n\t ", &response); EXPECT_EQ(expected_response, response); } static void CheckHttpPost(const std::string& url, const std::string& data, const std::string& expected_response) { SimpleHttpFetcher fetcher; std::string response; ASSERT_OK(fetcher.Post(url, data, &response)); base::RemoveChars(response, "\r\n\t ", &response); EXPECT_EQ(expected_response, response); } TEST(DISABLED_HttpFetcherTest, HttpGet) { CheckHttpGet(kTestUrl, kExpectedGetResponse); } TEST(DISABLED_HttpFetcherTest, HttpPost) { CheckHttpPost(kTestUrl, kPostData, kExpectedPostResponse); } TEST(DISABLED_HttpFetcherTest, InvalidUrl) { const char kHttpNotFound[] = "404"; SimpleHttpFetcher fetcher; std::string response; const std::string invalid_url(kTestUrl, sizeof(kTestUrl) - 2); Status status = fetcher.Get(invalid_url, &response); EXPECT_EQ(error::HTTP_FAILURE, status.error_code()); EXPECT_NE(std::string::npos, status.error_message().find(kHttpNotFound)); } TEST(DISABLED_HttpFetcherTest, UrlWithPort) { CheckHttpGet(kTestUrlWithPort, kExpectedGetResponse); } TEST(DISABLED_HttpFetcherTest, SmallTimeout) { const uint32 kTimeoutInSeconds = 1; SimpleHttpFetcher fetcher(kTimeoutInSeconds); std::string response; Status status = fetcher.Post(kTestUrl, kDelayTwoSecs, &response); EXPECT_EQ(error::TIME_OUT, status.error_code()); } TEST(DISABLED_HttpFetcherTest, BigTimeout) { const uint32 kTimeoutInSeconds = 5; SimpleHttpFetcher fetcher(kTimeoutInSeconds); std::string response; Status status = fetcher.Post(kTestUrl, kDelayTwoSecs, &response); EXPECT_OK(status); } } // namespace media