-
Notifications
You must be signed in to change notification settings - Fork 312
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(test): add one-time backup function tests #725
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,249 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#include <dsn/dist/replication/replication_ddl_client.h> | ||
#include <dsn/service_api_c.h> | ||
#include <dsn/utility/filesystem.h> | ||
#include <fmt/format.h> | ||
#include <gtest/gtest.h> | ||
#include <pegasus/client.h> | ||
#include <pegasus/error.h> | ||
|
||
#include "base/pegasus_const.h" | ||
#include "global_env.h" | ||
|
||
using namespace dsn; | ||
using namespace dsn::replication; | ||
using namespace pegasus; | ||
|
||
class backup_restore_test : public testing::Test | ||
{ | ||
public: | ||
backup_restore_test() | ||
: _ddl_client(nullptr), | ||
_num_of_rows(1000), | ||
_check_interval_sec(10), | ||
_cluster_name("onebox"), | ||
_old_app_name("test_app"), | ||
_new_app_name("new_app"), | ||
_provider("local_service") | ||
{ | ||
} | ||
|
||
void SetUp() override | ||
{ | ||
// initialize root dirs | ||
_pegasus_root_dir = global_env::instance()._pegasus_root; | ||
_working_root_dir = global_env::instance()._working_dir; | ||
|
||
// modify the config to enable backup, and restart onebox | ||
chdir(_pegasus_root_dir.c_str()); | ||
system("./run.sh clear_onebox"); | ||
system("cp src/server/config.min.ini config.test_backup_restore.ini"); | ||
system("sed -i \"/^\\s*cold_backup_disabled/c cold_backup_disabled = false\" " | ||
"config.test_backup_restore.ini"); | ||
system("sed -i \"/^\\s*cold_backup_checkpoint_reserve_minutes/c " | ||
"cold_backup_checkpoint_reserve_minutes = 0\" " | ||
"config.test_backup_restore.ini"); | ||
std::string cmd = fmt::format("sed -i \"/^\\s*cold_backup_root/c cold_backup_root = {}\" " | ||
"config.test_backup_restore.ini", | ||
_cluster_name); | ||
system(cmd.c_str()); | ||
system("./run.sh start_onebox --config_path config.test_backup_restore.ini"); | ||
std::this_thread::sleep_for(std::chrono::seconds(3)); | ||
|
||
// initialize ddl_client | ||
std::vector<rpc_address> meta_list; | ||
replica_helper::load_meta_servers( | ||
meta_list, PEGASUS_CLUSTER_SECTION_NAME.c_str(), _cluster_name.c_str()); | ||
_ddl_client = std::make_shared<replication_ddl_client>(meta_list); | ||
|
||
// initialize _old_app_id | ||
int32_t partition_count; | ||
std::vector<partition_configuration> partitions; | ||
_ddl_client->list_app(_old_app_name, _old_app_id, partition_count, partitions); | ||
} | ||
|
||
void TearDown() override | ||
{ | ||
chdir(_pegasus_root_dir.c_str()); | ||
system("./run.sh clear_onebox"); | ||
system("./run.sh start_onebox -w"); | ||
chdir(_working_root_dir.c_str()); | ||
} | ||
|
||
bool write_data() | ||
{ | ||
pegasus::pegasus_client *client = pegasus::pegasus_client_factory::get_client( | ||
_cluster_name.c_str(), _old_app_name.c_str()); | ||
if (client == nullptr) { | ||
std::cout << "get pegasus client failed" << std::endl; | ||
return false; | ||
} | ||
|
||
for (int i = 0; i < _num_of_rows; ++i) { | ||
int ret = client->set("hashkey_" + std::to_string(i), | ||
"sortkey_" + std::to_string(i), | ||
"value_" + std::to_string(i)); | ||
if (ret != pegasus::PERR_OK) { | ||
std::cout << "write data failed. " << std::endl; | ||
return false; | ||
} | ||
} | ||
return true; | ||
} | ||
|
||
bool verify_data(const std::string &app_name) | ||
{ | ||
pegasus::pegasus_client *client = | ||
pegasus::pegasus_client_factory::get_client(_cluster_name.c_str(), app_name.c_str()); | ||
if (client == nullptr) { | ||
std::cout << "get pegasus client failed" << std::endl; | ||
return false; | ||
} | ||
|
||
for (int i = 0; i < _num_of_rows; ++i) { | ||
const std::string &expected_value = "value_" + std::to_string(i); | ||
std::string value; | ||
int ret = | ||
client->get("hashkey_" + std::to_string(i), "sortkey_" + std::to_string(i), value); | ||
if (ret != pegasus::PERR_OK) { | ||
return false; | ||
} | ||
if (value != expected_value) { | ||
return false; | ||
} | ||
} | ||
return true; | ||
} | ||
|
||
start_backup_app_response start_backup(const std::string &user_specified_path = "") | ||
{ | ||
return _ddl_client->backup_app(_old_app_id, _provider, user_specified_path).get_value(); | ||
} | ||
|
||
query_backup_status_response query_backup(int64_t backup_id) | ||
{ | ||
return _ddl_client->query_backup(_old_app_id, backup_id).get_value(); | ||
} | ||
|
||
error_code start_restore(int64_t backup_id, const std::string &user_specified_path = "") | ||
{ | ||
return _ddl_client->do_restore(_provider, | ||
_cluster_name, | ||
/*policy_name=*/"", | ||
backup_id, | ||
_old_app_name, | ||
_old_app_id, | ||
_new_app_name, | ||
/*skip_bad_partition=*/false, | ||
user_specified_path); | ||
} | ||
|
||
bool wait_backup_complete(int64_t backup_id, int max_sleep_seconds) | ||
{ | ||
int sleep_sec = 0; | ||
bool is_backup_complete = false; | ||
while (!is_backup_complete && sleep_sec <= max_sleep_seconds) { | ||
std::cout << "sleep a while to wait backup complete." << std::endl; | ||
sleep(_check_interval_sec); | ||
sleep_sec += _check_interval_sec; | ||
|
||
auto resp = query_backup(backup_id); | ||
if (resp.err != ERR_OK) { | ||
return false; | ||
} | ||
// we got only one backup_item for a certain app_id and backup_id. | ||
auto item = resp.backup_items[0]; | ||
is_backup_complete = (item.end_time_ms > 0); | ||
} | ||
return is_backup_complete; | ||
} | ||
|
||
bool wait_app_become_healthy(const std::string &app_name, uint32_t max_sleep_seconds) | ||
{ | ||
int sleep_sec = 0; | ||
bool is_app_healthy = false; | ||
while (!is_app_healthy && sleep_sec <= max_sleep_seconds) { | ||
std::cout << "sleep a while to wait app become healthy." << std::endl; | ||
sleep(_check_interval_sec); | ||
sleep_sec += _check_interval_sec; | ||
|
||
int32_t new_app_id; | ||
int32_t partition_count; | ||
std::vector<partition_configuration> partitions; | ||
auto err = _ddl_client->list_app(app_name, _old_app_id, partition_count, partitions); | ||
if (err != ERR_OK) { | ||
std::cout << "list app " + app_name + " failed" << std::endl; | ||
return false; | ||
} | ||
int32_t healthy_partition_count = 0; | ||
for (const auto &partition : partitions) { | ||
if (partition.primary.is_invalid()) { | ||
break; | ||
} | ||
if (partition.secondaries.size() + 1 < partition.max_replica_count) { | ||
break; | ||
} | ||
healthy_partition_count++; | ||
} | ||
is_app_healthy = (healthy_partition_count == partition_count); | ||
} | ||
return is_app_healthy; | ||
} | ||
|
||
void test_backup_and_restore(const std::string &user_specified_path = "") | ||
{ | ||
error_code err = _ddl_client->create_app(_old_app_name, "pegasus", 4, 3, {}, false); | ||
ASSERT_EQ(ERR_OK, err); | ||
ASSERT_TRUE(wait_app_become_healthy(_old_app_name, 180)); | ||
|
||
ASSERT_TRUE(write_data()); | ||
ASSERT_TRUE(verify_data(_old_app_name)); | ||
|
||
auto resp = start_backup(user_specified_path); | ||
ASSERT_EQ(ERR_OK, resp.err); | ||
int64_t backup_id = resp.backup_id; | ||
ASSERT_TRUE(wait_backup_complete(backup_id, 180)); | ||
err = start_restore(backup_id, user_specified_path); | ||
ASSERT_EQ(ERR_OK, err); | ||
ASSERT_TRUE(wait_app_become_healthy(_new_app_name, 180)); | ||
|
||
ASSERT_TRUE(verify_data(_new_app_name)); | ||
} | ||
|
||
private: | ||
std::shared_ptr<replication_ddl_client> _ddl_client; | ||
|
||
const uint32_t _num_of_rows; | ||
const uint8_t _check_interval_sec; | ||
const std::string _cluster_name; | ||
const std::string _old_app_name; | ||
const std::string _new_app_name; | ||
const std::string _provider; | ||
|
||
std::string _pegasus_root_dir; | ||
std::string _working_root_dir; | ||
int32_t _old_app_id; | ||
}; | ||
|
||
TEST_F(backup_restore_test, test_backup_and_restore) { test_backup_and_restore(); } | ||
|
||
TEST_F(backup_restore_test, test_backup_and_restore_with_user_specified_path) | ||
{ | ||
test_backup_and_restore("test/path"); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dsn::string_view _pegasus_root_dir;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
global_env::instance()._pegasus_root
returnsstring
, so maybe no need to convert it todsn::string_view
.