In this update we have:
- Added the verified platform tests. These tests show how some
platforms, when verified are allowed to by pass the normal policy
restrictions. This is done with ChromeOS, thus the name of the
tests use "chrome_os".
- Removed WB_RESULT_INVALID_PADDING. This error was when we the
non-license APIs exposed a AES function with padding. However,
those functions have been removed from the API and this error is
no longer used by the API.
- Tests have been updated to avoid signed-vs-unsigned comparison
and to use the Chromium path to gTest (which is mocked in this
library).
- Tests have been updated to use a new test base and golden data
system to make them easier to read.
35 lines
835 B
C++
35 lines
835 B
C++
// Copyright 2020 Google LLC. All Rights Reserved.
|
|
|
|
#ifndef WHITEBOX_API_LICENSE_WHITEBOX_TEST_BASE_H_
|
|
#define WHITEBOX_API_LICENSE_WHITEBOX_TEST_BASE_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "api/golden_data.h"
|
|
#include "api/license_whitebox.h"
|
|
#include "crypto_utils/rsa_key.h"
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
namespace widevine {
|
|
|
|
class LicenseWhiteboxTestBase : public ::testing::Test {
|
|
protected:
|
|
void SetUp() override;
|
|
|
|
void TearDown() override;
|
|
|
|
// Modify a buffer so that it won't be the exact same as it was before. This
|
|
// to make it easier to invalidate signatures.
|
|
void Modify(std::vector<uint8_t>* data) const;
|
|
|
|
std::unique_ptr<RsaPublicKey> public_key_;
|
|
|
|
GoldenData golden_data_;
|
|
|
|
WB_License_Whitebox* whitebox_;
|
|
};
|
|
|
|
} // namespace widevine
|
|
|
|
#endif // WHITEBOX_API_LICENSE_WHITEBOX_TEST_BASE_H_
|