2013-09-24 01:35:40 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-12-20 00:56:36 +00:00
|
|
|
#ifndef PACKAGER_MEDIA_TEST_TEST_DATA_UTIL_H_
|
|
|
|
#define PACKAGER_MEDIA_TEST_TEST_DATA_UTIL_H_
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
#include <cstdint>
|
|
|
|
#include <filesystem>
|
2013-09-24 01:35:40 +00:00
|
|
|
#include <string>
|
2023-12-01 17:32:19 +00:00
|
|
|
#include <vector>
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2013-09-24 01:35:40 +00:00
|
|
|
namespace media {
|
|
|
|
|
|
|
|
// Returns a file path for a file in the media/test/data directory.
|
2023-12-01 17:32:19 +00:00
|
|
|
std::filesystem::path GetTestDataFilePath(const std::string& name);
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2017-05-31 18:14:11 +00:00
|
|
|
// Returns a file path for a file in the media/app/test/testdata directory.
|
2023-12-01 17:32:19 +00:00
|
|
|
std::filesystem::path GetAppTestDataFilePath(const std::string& name);
|
2017-05-31 18:14:11 +00:00
|
|
|
|
2014-01-09 23:50:18 +00:00
|
|
|
// Reads a test file from media/test/data directory and returns its content.
|
2014-09-30 21:52:21 +00:00
|
|
|
std::vector<uint8_t> ReadTestDataFile(const std::string& name);
|
2013-09-24 01:35:40 +00:00
|
|
|
|
|
|
|
} // namespace media
|
2023-12-01 17:32:19 +00:00
|
|
|
|
|
|
|
// Get the content of |file_path|. Returns empty string on error.
|
|
|
|
std::string GetPathContent(std::filesystem::path& file_path);
|
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2017-12-20 00:56:36 +00:00
|
|
|
#endif // PACKAGER_MEDIA_TEST_TEST_DATA_UTIL_H_
|