Send feedback
Namespace google::cloud::bigtable_mocks (2.19.0)
Stay organized with collections
Save and categorize content based on your preferences.
Version 2.19.0 keyboard_arrow_down
Classes
Functions
MakeRowReader(std::vector< bigtable::Row >, Status)
Returns a RowReader
with a fixed output stream.
This factory function is offered for customers to mock the output of Table::ReadRows(...)
in their tests.
Note:
If Cancel()
is called on the RowReader
, the stream will terminate and return final_status
.
TEST(ReadRowsTest, Success) {
using ::google::cloud::StatusOr;
using cbt = ::google::cloud::bigtable;
using cbtm = ::google::cloud::bigtable_mocks;
std::vector<cbt::Row> rows = {cbt::Row("r1", {}), cbt::Row("r2", {})};
auto mock = std::shared_ptr<cbtm::MockDataConnection>();
EXPECT_CALL(*mock, ReadRowsFull)
.WillOnce(Return(cbtm::MakeRowReader(rows)));
auto table = cbt::Table(mock);
auto reader = table.ReadRows(...);
// Verify your code works when reading rows: {"r1", "r2"}
}
Parameters Name Description rows
a vector containing the Row
s returned by iterating over the RowReader
.
final_status
the final Status of the stream. Defaults to OK.
Returns Type Description bigtable::RowReader
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-30 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-30 UTC."],[],[]]