2015-12-22 00:33:55 +00:00
|
|
|
// Copyright 2015 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
|
|
|
|
|
|
|
|
#ifndef MEDIA_FILE_FILE_TEST_UTIL_H_
|
|
|
|
#define MEDIA_FILE_FILE_TEST_UTIL_H_
|
|
|
|
|
2016-09-06 22:13:42 +00:00
|
|
|
#include <gmock/gmock.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2015-12-22 00:33:55 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "packager/media/file/file.h"
|
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2015-12-22 00:33:55 +00:00
|
|
|
namespace media {
|
|
|
|
|
2017-06-03 00:05:47 +00:00
|
|
|
#define ASSERT_FILE_EQ(file_name, array) \
|
|
|
|
do { \
|
|
|
|
std::string temp_data; \
|
|
|
|
ASSERT_TRUE(media::File::ReadFileToString((file_name), &temp_data)); \
|
|
|
|
const char* array_ptr = reinterpret_cast<const char*>(array); \
|
|
|
|
ASSERT_EQ(std::string(array_ptr, arraysize(array)), temp_data); \
|
|
|
|
} while (false)
|
|
|
|
|
|
|
|
#define ASSERT_FILE_STREQ(file_name, str) \
|
|
|
|
do { \
|
|
|
|
std::string temp_data; \
|
|
|
|
ASSERT_TRUE(media::File::ReadFileToString((file_name), &temp_data)); \
|
|
|
|
ASSERT_EQ(str, temp_data); \
|
2015-12-22 00:33:55 +00:00
|
|
|
} while (false)
|
|
|
|
|
2016-09-06 22:13:42 +00:00
|
|
|
#define ASSERT_FILE_ENDS_WITH(file_name, array) \
|
|
|
|
do { \
|
|
|
|
std::string temp_data; \
|
2017-06-03 00:05:47 +00:00
|
|
|
ASSERT_TRUE(media::File::ReadFileToString((file_name), &temp_data)); \
|
2016-09-06 22:13:42 +00:00
|
|
|
EXPECT_THAT(temp_data, \
|
|
|
|
::testing::EndsWith(std::string( \
|
|
|
|
reinterpret_cast<const char*>(array), sizeof(array)))); \
|
|
|
|
} while (false)
|
|
|
|
|
2015-12-22 00:33:55 +00:00
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2015-12-22 00:33:55 +00:00
|
|
|
|
|
|
|
#endif // MEDIA_FILE_FILE_TEST_UTIL_H_
|