2014-02-14 23:21:05 +00:00
|
|
|
// 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
|
|
|
|
|
2015-09-14 19:53:32 +00:00
|
|
|
#include <gmock/gmock.h>
|
2014-08-21 22:40:44 +00:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/file_util.h"
|
|
|
|
#include "packager/base/path_service.h"
|
2015-09-14 19:53:32 +00:00
|
|
|
#include "packager/mpd/base/dash_iop_mpd_notifier.h"
|
|
|
|
#include "packager/mpd/base/mock_mpd_notifier.h"
|
|
|
|
#include "packager/mpd/base/mpd_options.h"
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/mpd/test/mpd_builder_test_helper.h"
|
|
|
|
#include "packager/mpd/util/mpd_writer.h"
|
2014-01-28 23:06:58 +00:00
|
|
|
|
2014-09-19 20:41:13 +00:00
|
|
|
namespace edash_packager {
|
2014-01-28 23:06:58 +00:00
|
|
|
|
2015-09-14 19:53:32 +00:00
|
|
|
using ::testing::_;
|
|
|
|
using ::testing::Invoke;
|
|
|
|
using ::testing::Return;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class TestMpdNotifierFactory : public MpdNotifierFactory {
|
|
|
|
public:
|
|
|
|
TestMpdNotifierFactory() {}
|
|
|
|
virtual ~TestMpdNotifierFactory() OVERRIDE {}
|
|
|
|
|
|
|
|
// So sad that this method cannot be mocked (gmock errors at compile time).
|
|
|
|
// Also (probably) this version of gmock does not support returning
|
|
|
|
// scoped_ptr.
|
|
|
|
// For now we only need to return MockMpdNotifier() with these set of
|
|
|
|
// expectations for all the tests.
|
|
|
|
virtual scoped_ptr<MpdNotifier> Create(
|
|
|
|
DashProfile dash_profile,
|
|
|
|
const MpdOptions& mpd_options,
|
|
|
|
const std::vector<std::string>& base_urls,
|
|
|
|
const std::string& output_path) OVERRIDE {
|
|
|
|
EXPECT_EQ(expected_base_urls_, base_urls);
|
|
|
|
|
|
|
|
scoped_ptr<MockMpdNotifier> mock_notifier(
|
|
|
|
new MockMpdNotifier(kOnDemandProfile));
|
|
|
|
|
|
|
|
EXPECT_CALL(*mock_notifier, Init()).WillOnce(Return(true));
|
|
|
|
EXPECT_CALL(*mock_notifier, NotifyNewContainer(_, _))
|
|
|
|
.Times(2)
|
|
|
|
.WillRepeatedly(Return(true));
|
|
|
|
EXPECT_CALL(*mock_notifier, Flush()).WillOnce(Return(true));
|
|
|
|
return mock_notifier.PassAs<MpdNotifier>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetExpectedBaseUrls(const std::vector<std::string>& base_urls) {
|
|
|
|
expected_base_urls_ = base_urls;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> expected_base_urls_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
class MpdWriterTest : public ::testing::Test {
|
|
|
|
protected:
|
|
|
|
// Note that MpdWriter::SetMpdNotifierFactoryForTest() is not called in SetUp.
|
|
|
|
// Set expectations in the test and call it.
|
|
|
|
virtual void SetUp() OVERRIDE {
|
|
|
|
notifier_factory_.reset(new TestMpdNotifierFactory());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetMpdNotifierFactoryForTest() {
|
|
|
|
mpd_writer_.SetMpdNotifierFactoryForTest(
|
|
|
|
notifier_factory_.PassAs<MpdNotifierFactory>());
|
|
|
|
}
|
|
|
|
|
|
|
|
scoped_ptr<TestMpdNotifierFactory> notifier_factory_;
|
|
|
|
MpdWriter mpd_writer_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Verify that writing mpd to a file works.
|
|
|
|
// Also check that base URLs are passed correctly.
|
|
|
|
TEST_F(MpdWriterTest, WriteMpdToFile) {
|
|
|
|
const char kBaseUrl1[] = "http://cdn1.mydomain.com/";
|
|
|
|
const char kBaseUrl2[] = "http://cdn2.mydomain.com/";
|
|
|
|
std::vector<std::string> base_urls_;
|
|
|
|
base_urls_.push_back(kBaseUrl1);
|
|
|
|
base_urls_.push_back(kBaseUrl2);
|
|
|
|
|
|
|
|
notifier_factory_->SetExpectedBaseUrls(base_urls_);
|
2014-01-28 23:06:58 +00:00
|
|
|
|
|
|
|
base::FilePath media_info_file1 =
|
2014-02-05 02:32:46 +00:00
|
|
|
GetTestDataFilePath(kFileNameVideoMediaInfo1);
|
2014-01-28 23:06:58 +00:00
|
|
|
base::FilePath media_info_file2 =
|
2014-02-05 02:32:46 +00:00
|
|
|
GetTestDataFilePath(kFileNameVideoMediaInfo2);
|
2014-01-28 23:06:58 +00:00
|
|
|
|
2015-09-14 19:53:32 +00:00
|
|
|
SetMpdNotifierFactoryForTest();
|
|
|
|
EXPECT_TRUE(mpd_writer_.AddFile(media_info_file1.value(), ""));
|
|
|
|
EXPECT_TRUE(mpd_writer_.AddFile(media_info_file2.value(), ""));
|
|
|
|
mpd_writer_.AddBaseUrl(kBaseUrl1);
|
|
|
|
mpd_writer_.AddBaseUrl(kBaseUrl2);
|
2014-02-28 22:34:26 +00:00
|
|
|
|
2015-09-14 19:53:32 +00:00
|
|
|
base::FilePath mpd_file_path;
|
|
|
|
ASSERT_TRUE(base::CreateTemporaryFile(&mpd_file_path));
|
|
|
|
EXPECT_TRUE(mpd_writer_.WriteMpdToFile(mpd_file_path.value().c_str()));
|
2015-02-02 17:26:09 +00:00
|
|
|
}
|
|
|
|
|
2014-09-19 20:41:13 +00:00
|
|
|
} // namespace edash_packager
|