Class MockApiKeysConnection (2.23.0-rc)

A class to mock ApiKeysConnection.

Application developers may want to test their code with simulated responses, including errors, from an object of type ApiKeysClient. To do so, construct an object of type ApiKeysClient with an instance of this class. Then use the Google Test framework functions to program the behavior of this mock.

See Also

This example for how to test your application with GoogleTest. While the example showcases types from the BigQuery library, the underlying principles apply for any pair of *Client and *Connection.

Functions

virtual options()

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Returns
TypeDescription
Options

virtual CreateKey(google::api::apikeys::v2::CreateKeyRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::api::apikeys::v2::CreateKeyRequest const &
Returns
TypeDescription
future< StatusOr< google::api::apikeys::v2::Key > >

virtual ListKeys(google::api::apikeys::v2::ListKeysRequest)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::api::apikeys::v2::ListKeysRequest
Returns
TypeDescription
StreamRange< google::api::apikeys::v2::Key >

virtual GetKey(google::api::apikeys::v2::GetKeyRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::api::apikeys::v2::GetKeyRequest const &
Returns
TypeDescription
StatusOr< google::api::apikeys::v2::Key >

virtual GetKeyString(google::api::apikeys::v2::GetKeyStringRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::api::apikeys::v2::GetKeyStringRequest const &
Returns
TypeDescription
StatusOr< google::api::apikeys::v2::GetKeyStringResponse >

virtual UpdateKey(google::api::apikeys::v2::UpdateKeyRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::api::apikeys::v2::UpdateKeyRequest const &
Returns
TypeDescription
future< StatusOr< google::api::apikeys::v2::Key > >

virtual DeleteKey(google::api::apikeys::v2::DeleteKeyRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::api::apikeys::v2::DeleteKeyRequest const &
Returns
TypeDescription
future< StatusOr< google::api::apikeys::v2::Key > >

virtual UndeleteKey(google::api::apikeys::v2::UndeleteKeyRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::api::apikeys::v2::UndeleteKeyRequest const &
Returns
TypeDescription
future< StatusOr< google::api::apikeys::v2::Key > >

virtual LookupKey(google::api::apikeys::v2::LookupKeyRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::api::apikeys::v2::LookupKeyRequest const &
Returns
TypeDescription
StatusOr< google::api::apikeys::v2::LookupKeyResponse >