shaka-packager/packager/file/callback_file_unittest.cc

170 lines
5.6 KiB
C++
Raw Normal View History

// Copyright 2017 Google LLC. 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 "packager/file/callback_file.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <memory>
#include "packager/file/file.h"
#include "packager/file/file_closer.h"
using testing::_;
using testing::Eq;
using testing::Invoke;
using testing::MockFunction;
using testing::Return;
using testing::StrEq;
using testing::WithArgs;
namespace shaka {
namespace {
const uint8_t kBuffer[] = {1, 2, 3, 4, 5, 6, 7, 8};
const size_t kBufferSize = sizeof(kBuffer);
const size_t kSizeLessThanBufferSize = kBufferSize - 2;
const size_t kSizeLargerThanBufferSize = kBufferSize + 2;
const char kBufferLabel[] = "some name";
const int kFileError = -10;
} // namespace
TEST(CallbackFileTest, ReadSatisfied) {
MockFunction<int64_t(const std::string& name, void* buffer, uint64_t length)>
mock_read_func;
BufferCallbackParams callback_params;
callback_params.read_func = mock_read_func.AsStdFunction();
std::string file_name =
File::MakeCallbackFileName(callback_params, kBufferLabel);
const size_t size = kSizeLessThanBufferSize;
EXPECT_CALL(mock_read_func, Call(StrEq(kBufferLabel), _, size))
.WillOnce(WithArgs<1, 2>(Invoke([](void* buffer, uint64_t size) {
size_t size_to_copy = std::min(static_cast<size_t>(size), kBufferSize);
memcpy(buffer, kBuffer, size_to_copy);
return size_to_copy;
})));
std::unique_ptr<File, FileCloser> reader(File::Open(file_name.c_str(), "r"));
ASSERT_TRUE(reader);
uint8_t read_buffer[size];
ASSERT_EQ(static_cast<int64_t>(size), reader->Read(read_buffer, size));
EXPECT_EQ(0, memcmp(kBuffer, read_buffer, size));
}
TEST(CallbackFileTest, ReadNotSatisfied) {
MockFunction<int64_t(const std::string& name, void* buffer, uint64_t length)>
mock_read_func;
BufferCallbackParams callback_params;
callback_params.read_func = mock_read_func.AsStdFunction();
std::string file_name =
File::MakeCallbackFileName(callback_params, kBufferLabel);
const size_t size = kSizeLargerThanBufferSize;
EXPECT_CALL(mock_read_func, Call(StrEq(kBufferLabel), _, size))
.WillOnce(WithArgs<1, 2>(Invoke([](void* buffer, uint64_t size) {
size_t size_to_copy = std::min(static_cast<size_t>(size), kBufferSize);
memcpy(buffer, kBuffer, size_to_copy);
return size_to_copy;
})));
std::unique_ptr<File, FileCloser> reader(File::Open(file_name.c_str(), "r"));
ASSERT_TRUE(reader);
uint8_t read_buffer[size];
ASSERT_EQ(static_cast<int64_t>(kBufferSize), reader->Read(read_buffer, size));
EXPECT_EQ(0, memcmp(kBuffer, read_buffer, kBufferSize));
}
TEST(CallbackFileTest, ReadFailed) {
MockFunction<int64_t(const std::string& name, void* buffer, uint64_t length)>
mock_read_func;
BufferCallbackParams callback_params;
callback_params.read_func = mock_read_func.AsStdFunction();
std::string file_name =
File::MakeCallbackFileName(callback_params, kBufferLabel);
EXPECT_CALL(mock_read_func, Call(StrEq(kBufferLabel), _, _))
feat: First phase of CMake build system implementation (#1072) There are a lot of changes in this first phase, because there was a lot of infrastructure required to get some meaningful amount of porting done. Future PRs should be simpler. <b>Summary of changes:</b><details> - Remove old deps: - boringssl (replaced with mbedtls, lighter, easier to build) - gflags (replaced with absl::flags) - Chromium build tools - New deps to replace parts of Chromium base: - abseil-cpp - glog - nlohmann::json (for tests only) - Submodules, updates, and CMake build rules for third-party libraries: - curl - gmock/gtest - Ported internal libraries and their tests by removing Chromium deps and adding CMake build rules: - file (now using C++17 filesystem APIs) - license_notice - status - version - Test improvements - Removed file tests that can never be re-enabled - Re-enabled all other disabled file tests - Debug JSON values when HTTP tests fail - Fixed chunked-encoding issues in HTTP tests - Updated and refactored Dockerfiles testing - All docker files working, with OS versions updated to meet the new tool requirements - Local docker builds no longer write files to your working directory as root - Local docker builds can now be run in parallel without clobbering each others' build outputs - DEBUG=1 can drop you into an interactive shell when a docker build fails - Updated and heavily refactored workflows and Dockerfiles - All docker files now tested in parallel on GitHub, speeding up CI - All common workflow components broken out and using workflow_call instead of custom actions - Self-hosted runners now optional, to make testing easier on forks - CMake porting works-in-process can now be fully tested on GitHub - Building ported libraries and passing ported tests on all three platforms! - CI hacks for macOS removed, now testing on macos-latest! - Python2 no longer required! (Only Python3) - Using strict build flags, treating all warnings as errors. </details> <b>Required to build:</b> - CMake >= 3.16 - Python 3 - A compiler supporting C++ >= 17 - g++ >= 9 if using GCC (Clang also fine) - MSVC for Windows <b>Still needs work:</b><details> - Moving other dependencies into submodules (if we keep them): - apple_apsl - icu - libevent - libpng - libwebm - libxml - modp_b64 - protobuf - zlib - Port remaining internal libraries: - app - hls - media/base - media/chunking - media/codecs - media/crypto - media/demuxer - media/event - media/formats/dvb - media/formats/mp2t - media/formats/mp4 - media/formats/packed_audio - media/formats/ttml - media/formats/webm - media/formats/webvtt - media/formats/wvm - media/origin - media/public - media/replicator - media/trick_play - mpd - Port main application - Add logging flags in absl and connect them to glog (which expects gflags) - Port pssh-box.py - Port main test targets (packager_test.py and packager_app.py) - Updating all requirement and build documentation - Remove any remaining refs to gclient, depot_tools, ninja - Update and complete release workflows using release-please </details> Issue #346 (Switch to abseil) Issue #1047 (New build system)
2022-08-16 18:34:51 +00:00
.WillOnce(WithArgs<1, 2>(Invoke([](void* buffer, uint64_t size) {
UNUSED(buffer);
UNUSED(size);
return kFileError;
})));
std::unique_ptr<File, FileCloser> reader(File::Open(file_name.c_str(), "r"));
ASSERT_TRUE(reader);
uint8_t read_buffer[kBufferSize];
ASSERT_EQ(kFileError, reader->Read(read_buffer, kBufferSize));
}
TEST(CallbackFileTest, ReadFunctionNotDefined) {
BufferCallbackParams callback_params;
std::string file_name =
File::MakeCallbackFileName(callback_params, kBufferLabel);
std::unique_ptr<File, FileCloser> reader(File::Open(file_name.c_str(), "r"));
ASSERT_TRUE(reader);
uint8_t read_buffer[kBufferSize];
ASSERT_EQ(-1, reader->Read(read_buffer, kBufferSize));
}
TEST(CallbackFileTest, WriteSatisfied) {
MockFunction<int64_t(const std::string& name, const void* buffer,
uint64_t length)>
mock_write_func;
BufferCallbackParams callback_params;
callback_params.write_func = mock_write_func.AsStdFunction();
std::string file_name =
File::MakeCallbackFileName(callback_params, kBufferLabel);
EXPECT_CALL(mock_write_func,
Call(StrEq(kBufferLabel), Eq(kBuffer), kBufferSize))
.WillOnce(Return(kBufferSize));
std::unique_ptr<File, FileCloser> writer(File::Open(file_name.c_str(), "w"));
ASSERT_TRUE(writer);
ASSERT_EQ(static_cast<int64_t>(kBufferSize),
writer->Write(kBuffer, kBufferSize));
}
TEST(CallbackFileTest, WriteFailed) {
MockFunction<int64_t(const std::string& name, const void* buffer,
uint64_t length)>
mock_write_func;
BufferCallbackParams callback_params;
callback_params.write_func = mock_write_func.AsStdFunction();
std::string file_name =
File::MakeCallbackFileName(callback_params, kBufferLabel);
EXPECT_CALL(mock_write_func,
Call(StrEq(kBufferLabel), Eq(kBuffer), kBufferSize))
.WillOnce(Return(kFileError));
std::unique_ptr<File, FileCloser> writer(File::Open(file_name.c_str(), "w"));
ASSERT_TRUE(writer);
ASSERT_EQ(kFileError, writer->Write(kBuffer, kBufferSize));
}
TEST(CallbackFileTest, WriteFunctionNotDefined) {
BufferCallbackParams callback_params;
std::string file_name =
File::MakeCallbackFileName(callback_params, kBufferLabel);
std::unique_ptr<File, FileCloser> writer(File::Open(file_name.c_str(), "w"));
ASSERT_TRUE(writer);
ASSERT_EQ(-1, writer->Write(kBuffer, kBufferSize));
}
} // namespace shaka