def test_check_consistency(self):
        # Setup Expected Response
        consistent = True
        expected_response = {"consistent": consistent}
        expected_response = bigtable_table_admin_pb2.CheckConsistencyResponse(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = bigtable_admin_v2.BigtableTableAdminClient()

        # Setup Request
        name = client.table_path("[PROJECT]", "[INSTANCE]", "[TABLE]")
        consistency_token = "consistencyToken-1090516718"

        response = client.check_consistency(name, consistency_token)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = bigtable_table_admin_pb2.CheckConsistencyRequest(
            name=name, consistency_token=consistency_token)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_check_consistency(self):
        # Setup Expected Response
        consistent = True
        expected_response = {'consistent': consistent}
        expected_response = bigtable_table_admin_pb2.CheckConsistencyResponse(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        client = bigtable_admin_v2.BigtableTableAdminClient(channel=channel)

        # Setup Request
        name = client.table_path('[PROJECT]', '[INSTANCE]', '[TABLE]')
        consistency_token = 'consistencyToken-1090516718'

        response = client.check_consistency(name, consistency_token)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = bigtable_table_admin_pb2.CheckConsistencyRequest(
            name=name, consistency_token=consistency_token)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request