Class MockApiKeysConnection (2.11.0)

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
Type Description
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
Name Description
request google::api::apikeys::v2::CreateKeyRequest const &
Returns
Type Description
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
Name Description
request google::api::apikeys::v2::ListKeysRequest
Returns
Type Description
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
Name Description
request google::api::apikeys::v2::GetKeyRequest const &
Returns
Type Description
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
Name Description
request google::api::apikeys::v2::GetKeyStringRequest const &
Returns
Type Description
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
Name Description
request google::api::apikeys::v2::UpdateKeyRequest const &
Returns
Type Description
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
Name Description
request google::api::apikeys::v2::DeleteKeyRequest const &
Returns
Type Description
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
Name Description
request google::api::apikeys::v2::UndeleteKeyRequest const &
Returns
Type Description
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
Name Description
request google::api::apikeys::v2::LookupKeyRequest const &
Returns
Type Description
StatusOr< google::api::apikeys::v2::LookupKeyResponse >