Merge "applypatch: Switch the parameter of Value** to std::vector."
am: 3f4030e0ef
Change-Id: I741638c51e9c3fe57cc874e6af86ea6a65d5aa71
This commit is contained in:
@@ -530,8 +530,8 @@ int applypatch(const char* source_filename,
|
|||||||
const char* target_sha1_str,
|
const char* target_sha1_str,
|
||||||
size_t target_size,
|
size_t target_size,
|
||||||
const std::vector<std::string>& patch_sha1_str,
|
const std::vector<std::string>& patch_sha1_str,
|
||||||
Value** patch_data,
|
const std::vector<std::unique_ptr<Value>>& patch_data,
|
||||||
Value* bonus_data) {
|
const Value* bonus_data) {
|
||||||
printf("patch %s: ", source_filename);
|
printf("patch %s: ", source_filename);
|
||||||
|
|
||||||
if (target_filename[0] == '-' && target_filename[1] == '\0') {
|
if (target_filename[0] == '-' && target_filename[1] == '\0') {
|
||||||
@@ -546,8 +546,8 @@ int applypatch(const char* source_filename,
|
|||||||
|
|
||||||
FileContents copy_file;
|
FileContents copy_file;
|
||||||
FileContents source_file;
|
FileContents source_file;
|
||||||
const Value* source_patch_value = NULL;
|
const Value* source_patch_value = nullptr;
|
||||||
const Value* copy_patch_value = NULL;
|
const Value* copy_patch_value = nullptr;
|
||||||
|
|
||||||
// We try to load the target file into the source_file object.
|
// We try to load the target file into the source_file object.
|
||||||
if (LoadFileContents(target_filename, &source_file) == 0) {
|
if (LoadFileContents(target_filename, &source_file) == 0) {
|
||||||
@@ -571,11 +571,11 @@ int applypatch(const char* source_filename,
|
|||||||
if (!source_file.data.empty()) {
|
if (!source_file.data.empty()) {
|
||||||
int to_use = FindMatchingPatch(source_file.sha1, patch_sha1_str);
|
int to_use = FindMatchingPatch(source_file.sha1, patch_sha1_str);
|
||||||
if (to_use >= 0) {
|
if (to_use >= 0) {
|
||||||
source_patch_value = patch_data[to_use];
|
source_patch_value = patch_data[to_use].get();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (source_patch_value == NULL) {
|
if (source_patch_value == nullptr) {
|
||||||
source_file.data.clear();
|
source_file.data.clear();
|
||||||
printf("source file is bad; trying copy\n");
|
printf("source file is bad; trying copy\n");
|
||||||
|
|
||||||
@@ -587,10 +587,10 @@ int applypatch(const char* source_filename,
|
|||||||
|
|
||||||
int to_use = FindMatchingPatch(copy_file.sha1, patch_sha1_str);
|
int to_use = FindMatchingPatch(copy_file.sha1, patch_sha1_str);
|
||||||
if (to_use >= 0) {
|
if (to_use >= 0) {
|
||||||
copy_patch_value = patch_data[to_use];
|
copy_patch_value = patch_data[to_use].get();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (copy_patch_value == NULL) {
|
if (copy_patch_value == nullptr) {
|
||||||
// fail.
|
// fail.
|
||||||
printf("copy file doesn't match source SHA-1s either\n");
|
printf("copy file doesn't match source SHA-1s either\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
|||||||
@@ -20,10 +20,12 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "openssl/sha.h"
|
#include <openssl/sha.h>
|
||||||
|
|
||||||
#include "edify/expr.h"
|
#include "edify/expr.h"
|
||||||
|
|
||||||
struct FileContents {
|
struct FileContents {
|
||||||
@@ -41,27 +43,26 @@ struct FileContents {
|
|||||||
|
|
||||||
typedef ssize_t (*SinkFn)(const unsigned char*, ssize_t, void*);
|
typedef ssize_t (*SinkFn)(const unsigned char*, ssize_t, void*);
|
||||||
|
|
||||||
// applypatch.c
|
// applypatch.cpp
|
||||||
int ShowLicenses();
|
int ShowLicenses();
|
||||||
size_t FreeSpaceForFile(const char* filename);
|
size_t FreeSpaceForFile(const char* filename);
|
||||||
int CacheSizeCheck(size_t bytes);
|
int CacheSizeCheck(size_t bytes);
|
||||||
int ParseSha1(const char* str, uint8_t* digest);
|
int ParseSha1(const char* str, uint8_t* digest);
|
||||||
|
|
||||||
int applypatch_flash(const char* source_filename, const char* target_filename,
|
|
||||||
const char* target_sha1_str, size_t target_size);
|
|
||||||
int applypatch(const char* source_filename,
|
int applypatch(const char* source_filename,
|
||||||
const char* target_filename,
|
const char* target_filename,
|
||||||
const char* target_sha1_str,
|
const char* target_sha1_str,
|
||||||
size_t target_size,
|
size_t target_size,
|
||||||
const std::vector<std::string>& patch_sha1_str,
|
const std::vector<std::string>& patch_sha1_str,
|
||||||
Value** patch_data,
|
const std::vector<std::unique_ptr<Value>>& patch_data,
|
||||||
Value* bonus_data);
|
const Value* bonus_data);
|
||||||
int applypatch_check(const char* filename,
|
int applypatch_check(const char* filename,
|
||||||
const std::vector<std::string>& patch_sha1_str);
|
const std::vector<std::string>& patch_sha1_str);
|
||||||
|
int applypatch_flash(const char* source_filename, const char* target_filename,
|
||||||
|
const char* target_sha1_str, size_t target_size);
|
||||||
|
|
||||||
int LoadFileContents(const char* filename, FileContents* file);
|
int LoadFileContents(const char* filename, FileContents* file);
|
||||||
int SaveFileContents(const char* filename, const FileContents* file);
|
int SaveFileContents(const char* filename, const FileContents* file);
|
||||||
void FreeFileContents(FileContents* file);
|
|
||||||
int FindMatchingPatch(uint8_t* sha1, const std::vector<std::string>& patch_sha1_str);
|
int FindMatchingPatch(uint8_t* sha1, const std::vector<std::string>& patch_sha1_str);
|
||||||
|
|
||||||
// bsdiff.cpp
|
// bsdiff.cpp
|
||||||
|
|||||||
+7
-8
@@ -23,9 +23,10 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include <openssl/sha.h>
|
||||||
|
|
||||||
#include "applypatch/applypatch.h"
|
#include "applypatch/applypatch.h"
|
||||||
#include "edify/expr.h"
|
#include "edify/expr.h"
|
||||||
#include "openssl/sha.h"
|
|
||||||
|
|
||||||
static int CheckMode(int argc, char** argv) {
|
static int CheckMode(int argc, char** argv) {
|
||||||
if (argc < 3) {
|
if (argc < 3) {
|
||||||
@@ -129,15 +130,13 @@ static int PatchMode(int argc, char** argv) {
|
|||||||
printf("failed to parse patch args\n");
|
printf("failed to parse patch args\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
std::vector<Value> patches;
|
|
||||||
std::vector<Value*> patch_ptrs;
|
std::vector<std::unique_ptr<Value>> patches;
|
||||||
for (size_t i = 0; i < files.size(); ++i) {
|
for (size_t i = 0; i < files.size(); ++i) {
|
||||||
patches.push_back(Value(VAL_BLOB,
|
patches.push_back(std::make_unique<Value>(
|
||||||
std::string(files[i].data.cbegin(), files[i].data.cend())));
|
VAL_BLOB, std::string(files[i].data.cbegin(), files[i].data.cend())));
|
||||||
patch_ptrs.push_back(&patches[i]);
|
|
||||||
}
|
}
|
||||||
return applypatch(argv[1], argv[2], argv[3], target_size,
|
return applypatch(argv[1], argv[2], argv[3], target_size, sha1s, patches, &bonus);
|
||||||
sha1s, patch_ptrs.data(), &bonus);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// This program applies binary patches to files in a way that is safe
|
// This program applies binary patches to files in a way that is safe
|
||||||
|
|||||||
+126
-114
@@ -23,102 +23,98 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include <android-base/file.h>
|
#include <android-base/file.h>
|
||||||
#include <android-base/stringprintf.h>
|
#include <android-base/stringprintf.h>
|
||||||
#include <android-base/test_utils.h>
|
#include <android-base/test_utils.h>
|
||||||
|
#include <openssl/sha.h>
|
||||||
|
|
||||||
#include "applypatch/applypatch.h"
|
#include "applypatch/applypatch.h"
|
||||||
#include "common/test_constants.h"
|
#include "common/test_constants.h"
|
||||||
#include "openssl/sha.h"
|
|
||||||
#include "print_sha1.h"
|
#include "print_sha1.h"
|
||||||
|
|
||||||
static const std::string DATA_PATH = getenv("ANDROID_DATA");
|
static const std::string DATA_PATH = getenv("ANDROID_DATA");
|
||||||
static const std::string TESTDATA_PATH = "/recovery/testdata";
|
static const std::string TESTDATA_PATH = "/recovery/testdata";
|
||||||
static const std::string WORK_FS = "/data";
|
|
||||||
|
|
||||||
static std::string sha1sum(const std::string& fname) {
|
static void sha1sum(const std::string& fname, std::string* sha1) {
|
||||||
uint8_t digest[SHA_DIGEST_LENGTH];
|
ASSERT_NE(nullptr, sha1);
|
||||||
|
|
||||||
std::string data;
|
std::string data;
|
||||||
android::base::ReadFileToString(fname, &data);
|
ASSERT_TRUE(android::base::ReadFileToString(fname, &data));
|
||||||
|
|
||||||
SHA1((const uint8_t*)data.c_str(), data.size(), digest);
|
uint8_t digest[SHA_DIGEST_LENGTH];
|
||||||
return print_sha1(digest);
|
SHA1(reinterpret_cast<const uint8_t*>(data.c_str()), data.size(), digest);
|
||||||
|
*sha1 = print_sha1(digest);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mangle_file(const std::string& fname) {
|
static void mangle_file(const std::string& fname) {
|
||||||
FILE* fh = fopen(&fname[0], "w");
|
std::string content;
|
||||||
int r;
|
content.reserve(1024);
|
||||||
for (int i=0; i < 1024; i++) {
|
for (size_t i = 0; i < 1024; i++) {
|
||||||
r = rand();
|
content[i] = rand() % 256;
|
||||||
fwrite(&r, sizeof(short), 1, fh);
|
|
||||||
}
|
}
|
||||||
fclose(fh);
|
ASSERT_TRUE(android::base::WriteStringToFile(content, fname));
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool file_cmp(std::string& f1, std::string& f2) {
|
static bool file_cmp(const std::string& f1, const std::string& f2) {
|
||||||
std::string c1;
|
std::string c1;
|
||||||
std::string c2;
|
|
||||||
android::base::ReadFileToString(f1, &c1);
|
android::base::ReadFileToString(f1, &c1);
|
||||||
|
std::string c2;
|
||||||
android::base::ReadFileToString(f2, &c2);
|
android::base::ReadFileToString(f2, &c2);
|
||||||
return c1 == c2;
|
return c1 == c2;
|
||||||
}
|
}
|
||||||
|
|
||||||
static std::string from_testdata_base(const std::string& fname) {
|
static std::string from_testdata_base(const std::string& fname) {
|
||||||
return android::base::StringPrintf("%s%s%s/%s",
|
return DATA_PATH + NATIVE_TEST_PATH + TESTDATA_PATH + "/" + fname;
|
||||||
&DATA_PATH[0],
|
|
||||||
&NATIVE_TEST_PATH[0],
|
|
||||||
&TESTDATA_PATH[0],
|
|
||||||
&fname[0]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class ApplyPatchTest : public ::testing::Test {
|
class ApplyPatchTest : public ::testing::Test {
|
||||||
public:
|
public:
|
||||||
static void SetUpTestCase() {
|
static void SetUpTestCase() {
|
||||||
// set up files
|
// set up files
|
||||||
old_file = from_testdata_base("old.file");
|
old_file = from_testdata_base("old.file");
|
||||||
new_file = from_testdata_base("new.file");
|
new_file = from_testdata_base("new.file");
|
||||||
patch_file = from_testdata_base("patch.bsdiff");
|
patch_file = from_testdata_base("patch.bsdiff");
|
||||||
rand_file = "/cache/applypatch_test_rand.file";
|
rand_file = "/cache/applypatch_test_rand.file";
|
||||||
cache_file = "/cache/saved.file";
|
cache_file = "/cache/saved.file";
|
||||||
|
|
||||||
// write stuff to rand_file
|
// write stuff to rand_file
|
||||||
android::base::WriteStringToFile("hello", rand_file);
|
ASSERT_TRUE(android::base::WriteStringToFile("hello", rand_file));
|
||||||
|
|
||||||
// set up SHA constants
|
// set up SHA constants
|
||||||
old_sha1 = sha1sum(old_file);
|
sha1sum(old_file, &old_sha1);
|
||||||
new_sha1 = sha1sum(new_file);
|
sha1sum(new_file, &new_sha1);
|
||||||
srand(time(NULL));
|
srand(time(NULL));
|
||||||
bad_sha1_a = android::base::StringPrintf("%040x", rand());
|
bad_sha1_a = android::base::StringPrintf("%040x", rand());
|
||||||
bad_sha1_b = android::base::StringPrintf("%040x", rand());
|
bad_sha1_b = android::base::StringPrintf("%040x", rand());
|
||||||
|
|
||||||
struct stat st;
|
struct stat st;
|
||||||
stat(&new_file[0], &st);
|
stat(&new_file[0], &st);
|
||||||
new_size = st.st_size;
|
new_size = st.st_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
static std::string old_file;
|
static std::string old_file;
|
||||||
static std::string new_file;
|
static std::string new_file;
|
||||||
static std::string rand_file;
|
static std::string rand_file;
|
||||||
static std::string cache_file;
|
static std::string cache_file;
|
||||||
static std::string patch_file;
|
static std::string patch_file;
|
||||||
|
|
||||||
static std::string old_sha1;
|
static std::string old_sha1;
|
||||||
static std::string new_sha1;
|
static std::string new_sha1;
|
||||||
static std::string bad_sha1_a;
|
static std::string bad_sha1_a;
|
||||||
static std::string bad_sha1_b;
|
static std::string bad_sha1_b;
|
||||||
|
|
||||||
static size_t new_size;
|
static size_t new_size;
|
||||||
};
|
};
|
||||||
|
|
||||||
std::string ApplyPatchTest::old_file;
|
std::string ApplyPatchTest::old_file;
|
||||||
std::string ApplyPatchTest::new_file;
|
std::string ApplyPatchTest::new_file;
|
||||||
|
|
||||||
static void cp(std::string src, std::string tgt) {
|
static void cp(const std::string& src, const std::string& tgt) {
|
||||||
std::string cmd = android::base::StringPrintf("cp %s %s",
|
std::string cmd = "cp " + src + " " + tgt;
|
||||||
&src[0],
|
|
||||||
&tgt[0]);
|
|
||||||
system(&cmd[0]);
|
system(&cmd[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -131,59 +127,55 @@ static void restore_old() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class ApplyPatchCacheTest : public ApplyPatchTest {
|
class ApplyPatchCacheTest : public ApplyPatchTest {
|
||||||
public:
|
public:
|
||||||
virtual void SetUp() {
|
virtual void SetUp() {
|
||||||
backup_old();
|
backup_old();
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void TearDown() {
|
virtual void TearDown() {
|
||||||
restore_old();
|
restore_old();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class ApplyPatchFullTest : public ApplyPatchCacheTest {
|
class ApplyPatchFullTest : public ApplyPatchCacheTest {
|
||||||
public:
|
public:
|
||||||
static void SetUpTestCase() {
|
static void SetUpTestCase() {
|
||||||
ApplyPatchTest::SetUpTestCase();
|
ApplyPatchTest::SetUpTestCase();
|
||||||
unsigned long free_kb = FreeSpaceForFile(&WORK_FS[0]);
|
|
||||||
ASSERT_GE(free_kb * 1024, new_size * 3 / 2);
|
|
||||||
output_f = new TemporaryFile();
|
|
||||||
output_loc = std::string(output_f->path);
|
|
||||||
|
|
||||||
struct FileContents fc;
|
output_f = new TemporaryFile();
|
||||||
|
output_loc = std::string(output_f->path);
|
||||||
|
|
||||||
ASSERT_EQ(0, LoadFileContents(&rand_file[0], &fc));
|
struct FileContents fc;
|
||||||
Value* patch1 = new Value(VAL_BLOB, std::string(fc.data.begin(), fc.data.end()));
|
|
||||||
patches.push_back(patch1);
|
|
||||||
|
|
||||||
ASSERT_EQ(0, LoadFileContents(&patch_file[0], &fc));
|
ASSERT_EQ(0, LoadFileContents(&rand_file[0], &fc));
|
||||||
Value* patch2 = new Value(VAL_BLOB, std::string(fc.data.begin(), fc.data.end()));
|
patches.push_back(
|
||||||
patches.push_back(patch2);
|
std::make_unique<Value>(VAL_BLOB, std::string(fc.data.begin(), fc.data.end())));
|
||||||
}
|
|
||||||
static void TearDownTestCase() {
|
|
||||||
delete output_f;
|
|
||||||
for (auto it = patches.begin(); it != patches.end(); ++it) {
|
|
||||||
delete *it;
|
|
||||||
}
|
|
||||||
patches.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
static std::vector<Value*> patches;
|
ASSERT_EQ(0, LoadFileContents(&patch_file[0], &fc));
|
||||||
static TemporaryFile* output_f;
|
patches.push_back(
|
||||||
static std::string output_loc;
|
std::make_unique<Value>(VAL_BLOB, std::string(fc.data.begin(), fc.data.end())));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void TearDownTestCase() {
|
||||||
|
delete output_f;
|
||||||
|
}
|
||||||
|
|
||||||
|
static std::vector<std::unique_ptr<Value>> patches;
|
||||||
|
static TemporaryFile* output_f;
|
||||||
|
static std::string output_loc;
|
||||||
};
|
};
|
||||||
|
|
||||||
class ApplyPatchDoubleCacheTest : public ApplyPatchFullTest {
|
class ApplyPatchDoubleCacheTest : public ApplyPatchFullTest {
|
||||||
public:
|
public:
|
||||||
virtual void SetUp() {
|
virtual void SetUp() {
|
||||||
ApplyPatchCacheTest::SetUp();
|
ApplyPatchCacheTest::SetUp();
|
||||||
cp(cache_file, "/cache/reallysaved.file");
|
cp(cache_file, "/cache/reallysaved.file");
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void TearDown() {
|
virtual void TearDown() {
|
||||||
cp("/cache/reallysaved.file", cache_file);
|
cp("/cache/reallysaved.file", cache_file);
|
||||||
ApplyPatchCacheTest::TearDown();
|
ApplyPatchCacheTest::TearDown();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
std::string ApplyPatchTest::rand_file;
|
std::string ApplyPatchTest::rand_file;
|
||||||
@@ -196,7 +188,7 @@ std::string ApplyPatchTest::bad_sha1_b;
|
|||||||
|
|
||||||
size_t ApplyPatchTest::new_size;
|
size_t ApplyPatchTest::new_size;
|
||||||
|
|
||||||
std::vector<Value*> ApplyPatchFullTest::patches;
|
std::vector<std::unique_ptr<Value>> ApplyPatchFullTest::patches;
|
||||||
TemporaryFile* ApplyPatchFullTest::output_f;
|
TemporaryFile* ApplyPatchFullTest::output_f;
|
||||||
std::string ApplyPatchFullTest::output_loc;
|
std::string ApplyPatchFullTest::output_loc;
|
||||||
|
|
||||||
@@ -287,7 +279,7 @@ TEST_F(ApplyPatchFullTest, ApplyInPlace) {
|
|||||||
&new_sha1[0],
|
&new_sha1[0],
|
||||||
new_size,
|
new_size,
|
||||||
sha1s,
|
sha1s,
|
||||||
patches.data(),
|
patches,
|
||||||
nullptr);
|
nullptr);
|
||||||
ASSERT_EQ(0, ap_result);
|
ASSERT_EQ(0, ap_result);
|
||||||
ASSERT_TRUE(file_cmp(old_file, new_file));
|
ASSERT_TRUE(file_cmp(old_file, new_file));
|
||||||
@@ -297,7 +289,7 @@ TEST_F(ApplyPatchFullTest, ApplyInPlace) {
|
|||||||
&new_sha1[0],
|
&new_sha1[0],
|
||||||
new_size,
|
new_size,
|
||||||
sha1s,
|
sha1s,
|
||||||
patches.data(),
|
patches,
|
||||||
nullptr);
|
nullptr);
|
||||||
ASSERT_EQ(0, ap_result);
|
ASSERT_EQ(0, ap_result);
|
||||||
ASSERT_TRUE(file_cmp(old_file, new_file));
|
ASSERT_TRUE(file_cmp(old_file, new_file));
|
||||||
@@ -308,75 +300,95 @@ TEST_F(ApplyPatchFullTest, ApplyInNewLocation) {
|
|||||||
bad_sha1_a,
|
bad_sha1_a,
|
||||||
old_sha1
|
old_sha1
|
||||||
};
|
};
|
||||||
int ap_result = applypatch(&old_file[0],
|
// Apply bsdiff patch to new location.
|
||||||
|
ASSERT_EQ(0, applypatch(&old_file[0],
|
||||||
&output_loc[0],
|
&output_loc[0],
|
||||||
&new_sha1[0],
|
&new_sha1[0],
|
||||||
new_size,
|
new_size,
|
||||||
sha1s,
|
sha1s,
|
||||||
patches.data(),
|
patches,
|
||||||
nullptr);
|
nullptr));
|
||||||
ASSERT_EQ(0, ap_result);
|
|
||||||
ASSERT_TRUE(file_cmp(output_loc, new_file));
|
ASSERT_TRUE(file_cmp(output_loc, new_file));
|
||||||
ap_result = applypatch(&old_file[0],
|
|
||||||
|
// Reapply to the same location.
|
||||||
|
ASSERT_EQ(0, applypatch(&old_file[0],
|
||||||
&output_loc[0],
|
&output_loc[0],
|
||||||
&new_sha1[0],
|
&new_sha1[0],
|
||||||
new_size,
|
new_size,
|
||||||
sha1s,
|
sha1s,
|
||||||
patches.data(),
|
patches,
|
||||||
nullptr);
|
nullptr));
|
||||||
ASSERT_EQ(0, ap_result);
|
|
||||||
ASSERT_TRUE(file_cmp(output_loc, new_file));
|
ASSERT_TRUE(file_cmp(output_loc, new_file));
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F(ApplyPatchFullTest, ApplyCorruptedInNewLocation) {
|
TEST_F(ApplyPatchFullTest, ApplyCorruptedInNewLocation) {
|
||||||
mangle_file(old_file);
|
|
||||||
std::vector<std::string> sha1s = {
|
std::vector<std::string> sha1s = {
|
||||||
bad_sha1_a,
|
bad_sha1_a,
|
||||||
old_sha1
|
old_sha1
|
||||||
};
|
};
|
||||||
|
// Apply bsdiff patch to new location with corrupted source.
|
||||||
|
mangle_file(old_file);
|
||||||
int ap_result = applypatch(&old_file[0],
|
int ap_result = applypatch(&old_file[0],
|
||||||
&output_loc[0],
|
&output_loc[0],
|
||||||
&new_sha1[0],
|
&new_sha1[0],
|
||||||
new_size,
|
new_size,
|
||||||
sha1s,
|
sha1s,
|
||||||
patches.data(),
|
patches,
|
||||||
nullptr);
|
nullptr);
|
||||||
ASSERT_EQ(0, ap_result);
|
ASSERT_EQ(0, ap_result);
|
||||||
ASSERT_TRUE(file_cmp(output_loc, new_file));
|
ASSERT_TRUE(file_cmp(output_loc, new_file));
|
||||||
|
|
||||||
|
// Reapply bsdiff patch to new location with corrupted source.
|
||||||
ap_result = applypatch(&old_file[0],
|
ap_result = applypatch(&old_file[0],
|
||||||
&output_loc[0],
|
&output_loc[0],
|
||||||
&new_sha1[0],
|
&new_sha1[0],
|
||||||
new_size,
|
new_size,
|
||||||
sha1s,
|
sha1s,
|
||||||
patches.data(),
|
patches,
|
||||||
nullptr);
|
nullptr);
|
||||||
ASSERT_EQ(0, ap_result);
|
ASSERT_EQ(0, ap_result);
|
||||||
ASSERT_TRUE(file_cmp(output_loc, new_file));
|
ASSERT_TRUE(file_cmp(output_loc, new_file));
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F(ApplyPatchDoubleCacheTest, ApplyDoubleCorruptedInNewLocation) {
|
TEST_F(ApplyPatchDoubleCacheTest, ApplyDoubleCorruptedInNewLocation) {
|
||||||
mangle_file(old_file);
|
|
||||||
mangle_file(cache_file);
|
|
||||||
|
|
||||||
std::vector<std::string> sha1s = {
|
std::vector<std::string> sha1s = {
|
||||||
bad_sha1_a,
|
bad_sha1_a,
|
||||||
old_sha1
|
old_sha1
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Apply bsdiff patch to new location with corrupted source and copy (no new file).
|
||||||
|
// Expected to fail.
|
||||||
|
mangle_file(old_file);
|
||||||
|
mangle_file(cache_file);
|
||||||
int ap_result = applypatch(&old_file[0],
|
int ap_result = applypatch(&old_file[0],
|
||||||
&output_loc[0],
|
&output_loc[0],
|
||||||
&new_sha1[0],
|
&new_sha1[0],
|
||||||
new_size,
|
new_size,
|
||||||
sha1s,
|
sha1s,
|
||||||
patches.data(),
|
patches,
|
||||||
nullptr);
|
nullptr);
|
||||||
ASSERT_NE(0, ap_result);
|
ASSERT_NE(0, ap_result);
|
||||||
ASSERT_FALSE(file_cmp(output_loc, new_file));
|
ASSERT_FALSE(file_cmp(output_loc, new_file));
|
||||||
|
|
||||||
|
// Expected to fail again on retry.
|
||||||
ap_result = applypatch(&old_file[0],
|
ap_result = applypatch(&old_file[0],
|
||||||
&output_loc[0],
|
&output_loc[0],
|
||||||
&new_sha1[0],
|
&new_sha1[0],
|
||||||
new_size,
|
new_size,
|
||||||
sha1s,
|
sha1s,
|
||||||
patches.data(),
|
patches,
|
||||||
|
nullptr);
|
||||||
|
ASSERT_NE(0, ap_result);
|
||||||
|
ASSERT_FALSE(file_cmp(output_loc, new_file));
|
||||||
|
|
||||||
|
// Expected to fail with incorrect new file.
|
||||||
|
mangle_file(output_loc);
|
||||||
|
ap_result = applypatch(&old_file[0],
|
||||||
|
&output_loc[0],
|
||||||
|
&new_sha1[0],
|
||||||
|
new_size,
|
||||||
|
sha1s,
|
||||||
|
patches,
|
||||||
nullptr);
|
nullptr);
|
||||||
ASSERT_NE(0, ap_result);
|
ASSERT_NE(0, ap_result);
|
||||||
ASSERT_FALSE(file_cmp(output_loc, new_file));
|
ASSERT_FALSE(file_cmp(output_loc, new_file));
|
||||||
|
|||||||
+1
-3
@@ -1061,15 +1061,13 @@ Value* ApplyPatchFn(const char* name, State* state, int argc, Expr* argv[]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::string> patch_sha_str;
|
std::vector<std::string> patch_sha_str;
|
||||||
std::vector<Value*> patch_ptrs;
|
|
||||||
for (int i = 0; i < patchcount; ++i) {
|
for (int i = 0; i < patchcount; ++i) {
|
||||||
patch_sha_str.push_back(patch_shas[i]->data);
|
patch_sha_str.push_back(patch_shas[i]->data);
|
||||||
patch_ptrs.push_back(patches[i].get());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int result = applypatch(source_filename, target_filename,
|
int result = applypatch(source_filename, target_filename,
|
||||||
target_sha1, target_size,
|
target_sha1, target_size,
|
||||||
patch_sha_str, patch_ptrs.data(), NULL);
|
patch_sha_str, patches, NULL);
|
||||||
|
|
||||||
return StringValue(result == 0 ? "t" : "");
|
return StringValue(result == 0 ? "t" : "");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user