Skip to content
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

Left sig right sig match failure (uplift to 0.72.x) #3895

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ void PhaseTwo::PrepareBatch(

auto callback = std::bind(&PhaseTwo::PrepareBatchCallback,
this,
transaction.viewingId_,
_1,
_2,
_3);
Expand All @@ -245,7 +246,38 @@ void PhaseTwo::PrepareBatch(
callback);
}

void PhaseTwo::AssignPrepareBallots(
const std::string& viewing_id,
const std::vector<std::string>& surveyors,
braveledger_bat_helper::Ballots* ballots) {
for (size_t j = 0; j < surveyors.size(); j++) {
std::string error;
braveledger_bat_helper::getJSONValue("error", surveyors[j], &error);
if (!error.empty()) {
// TODO(nejczdovc) what should we do here
continue;
}

std::string surveyor_id;
bool success = braveledger_bat_helper::getJSONValue("surveyorId",
surveyors[j],
&surveyor_id);
if (!success) {
// TODO(nejczdovc) what should we do here
continue;
}

for (auto& ballot : *ballots) {
if (ballot.surveyorId_ == surveyor_id &&
ballot.viewingId_ == viewing_id) {
ballot.prepareBallot_ = surveyors[j];
}
}
}
}

void PhaseTwo::PrepareBatchCallback(
const std::string& viewing_id,
int response_status_code,
const std::string& response,
const std::map<std::string, std::string>& headers) {
Expand All @@ -264,38 +296,9 @@ void PhaseTwo::PrepareBatchCallback(
return;
}

braveledger_bat_helper::Transactions transactions =
ledger_->GetTransactions();
braveledger_bat_helper::Ballots ballots = ledger_->GetBallots();

for (size_t j = 0; j < surveyors.size(); j++) {
std::string error;
braveledger_bat_helper::getJSONValue("error", surveyors[j], &error);
if (!error.empty()) {
// TODO(nejczdovc) what should we do here
continue;
}

std::string surveyor_id;
bool success = braveledger_bat_helper::getJSONValue("surveyorId",
surveyors[j],
&surveyor_id);
if (!success) {
// TODO(nejczdovc) what should we do here
continue;
}

for (int i = ballots.size() - 1; i >= 0; i--) {
if (ballots[i].surveyorId_ == surveyor_id) {
for (size_t k = 0; k < transactions.size(); k++) {
if (transactions[k].viewingId_ == ballots[i].viewingId_ &&
ballots[i].proofBallot_.empty()) {
ballots[i].prepareBallot_ = surveyors[j];
}
}
}
}
}
AssignPrepareBallots(viewing_id, surveyors, &ballots);

ledger_->SetBallots(ballots);
Proof();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,16 @@ class PhaseTwo {
const braveledger_bat_helper::TRANSACTION_ST& transaction);

void PrepareBatchCallback(
const std::string& viewing_id,
int response_status_code,
const std::string& response,
const std::map<std::string, std::string>& headers);

static void AssignPrepareBallots(
const std::string& viewing_id,
const std::vector<std::string>& surveyors,
braveledger_bat_helper::Ballots* ballots);

std::vector<std::string> ProofBatch(
const braveledger_bat_helper::BatchProofs& batch_proofs);

Expand All @@ -100,6 +106,7 @@ class PhaseTwo {
// For testing purposes
friend class PhaseTwoTest;
FRIEND_TEST_ALL_PREFIXES(PhaseTwoTest, GetStatisticalVotingWinners);
FRIEND_TEST_ALL_PREFIXES(PhaseTwoTest, AssignPrepareBallotsRespectsViewingID);
};

} // namespace braveledger_contribution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,29 @@ TEST_F(PhaseTwoTest, GetStatisticalVotingWinners) {
}
}

// Surveyor IDs are not unique and may be shared between different transactions.
// Ensure that when assigning prepareBallot objects to ballots, we only assign
// to ballots for the current viewing ID, even if they share a surveyor ID.
TEST_F(PhaseTwoTest, AssignPrepareBallotsRespectsViewingID) {
const std::string shared_surveyor_id =
"Ad5pNzrwhWokTOR8/hC83LWJfEy8aY7mFwPQWe6CpRF";
const std::vector<std::string> surveyors = {
"{\"surveyorId\":\"" + shared_surveyor_id + "\"}"
};

// Create ballots with different viewing IDs but the same surveyor ID.
braveledger_bat_helper::Ballots ballots(2);
ballots[0].viewingId_ = "00000000-0000-0000-0000-000000000000";
ballots[0].surveyorId_ = shared_surveyor_id;
ballots[1].viewingId_ = "ffffffff-ffff-ffff-ffff-ffffffffffff";
ballots[1].surveyorId_ = shared_surveyor_id;

// Check that only ballot[0] with the matching viewing ID is updated. Ballot 1
// should remain unmodified.
PhaseTwo::AssignPrepareBallots("00000000-0000-0000-0000-000000000000",
surveyors, &ballots);
ASSERT_FALSE(ballots[0].prepareBallot_.empty());
ASSERT_TRUE(ballots[1].prepareBallot_.empty());
}

} // namespace braveledger_contribution