blob: 9b4c9f87d3e0c6bf92bb8699af9f841ab6dcf691 [file] [log] [blame]
/*
*
* Copyright 2018 gRPC authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include "src/core/tsi/alts/handshaker/alts_tsi_utils.h"
#include "test/core/tsi/alts/handshaker/alts_handshaker_service_api_test_lib.h"
#define ALTS_TSI_UTILS_TEST_OUT_FRAME "Hello Google"
static void convert_to_tsi_result_test() {
GPR_ASSERT(alts_tsi_utils_convert_to_tsi_result(GRPC_STATUS_OK) == TSI_OK);
GPR_ASSERT(alts_tsi_utils_convert_to_tsi_result(GRPC_STATUS_UNKNOWN) ==
TSI_UNKNOWN_ERROR);
GPR_ASSERT(alts_tsi_utils_convert_to_tsi_result(
GRPC_STATUS_INVALID_ARGUMENT) == TSI_INVALID_ARGUMENT);
GPR_ASSERT(alts_tsi_utils_convert_to_tsi_result(GRPC_STATUS_OUT_OF_RANGE) ==
TSI_UNKNOWN_ERROR);
GPR_ASSERT(alts_tsi_utils_convert_to_tsi_result(GRPC_STATUS_INTERNAL) ==
TSI_INTERNAL_ERROR);
GPR_ASSERT(alts_tsi_utils_convert_to_tsi_result(GRPC_STATUS_NOT_FOUND) ==
TSI_NOT_FOUND);
}
static void deserialize_response_test() {
upb::Arena arena;
grpc_gcp_HandshakerResp* resp = grpc_gcp_HandshakerResp_new(arena.ptr());
grpc_gcp_HandshakerResp_set_out_frames(
resp, upb_strview_makez(ALTS_TSI_UTILS_TEST_OUT_FRAME));
size_t buf_len;
char* buf = grpc_gcp_HandshakerResp_serialize(resp, arena.ptr(), &buf_len);
grpc_slice slice = grpc_slice_from_copied_buffer(buf, buf_len);
/* Valid serialization. */
upb::Arena arena2;
grpc_byte_buffer* buffer =
grpc_raw_byte_buffer_create(&slice, 1 /* number of slices */);
grpc_gcp_HandshakerResp* decoded_resp =
alts_tsi_utils_deserialize_response(buffer, arena2.ptr());
GPR_ASSERT(grpc_gcp_handshaker_resp_equals(resp, decoded_resp));
grpc_byte_buffer_destroy(buffer);
/* Invalid serialization. */
grpc_slice bad_slice =
grpc_slice_split_head(&slice, GRPC_SLICE_LENGTH(slice) - 1);
buffer = grpc_raw_byte_buffer_create(&bad_slice, 1 /* number of slices */);
GPR_ASSERT(alts_tsi_utils_deserialize_response(buffer, arena2.ptr()) ==
nullptr);
/* Clean up. */
grpc_slice_unref(slice);
grpc_slice_unref(bad_slice);
grpc_byte_buffer_destroy(buffer);
}
int main(int argc, char** argv) {
/* Tests. */
deserialize_response_test();
convert_to_tsi_result_test();
return 0;
}