alpn_test.cc 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. *
  3. * Copyright 2015 gRPC authors.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. #include "src/core/ext/transport/chttp2/alpn/alpn.h"
  19. #include <grpc/support/log.h>
  20. #include "test/core/util/test_config.h"
  21. static void test_alpn_success(void) {
  22. GPR_ASSERT(grpc_chttp2_is_alpn_version_supported("h2", 2));
  23. GPR_ASSERT(grpc_chttp2_is_alpn_version_supported("grpc-exp", 8));
  24. }
  25. static void test_alpn_failure(void) {
  26. GPR_ASSERT(!grpc_chttp2_is_alpn_version_supported("h2-155", 6));
  27. GPR_ASSERT(!grpc_chttp2_is_alpn_version_supported("h1-15", 5));
  28. }
  29. // First index in ALPN supported version list of a given protocol. Returns a
  30. // value one beyond the last valid element index if not found.
  31. static size_t alpn_version_index(const char* version, size_t size) {
  32. size_t i;
  33. for (i = 0; i < grpc_chttp2_num_alpn_versions(); ++i) {
  34. if (!strncmp(version, grpc_chttp2_get_alpn_version_index(i), size)) {
  35. return i;
  36. }
  37. }
  38. return i;
  39. }
  40. static void test_alpn_grpc_before_h2(void) {
  41. // grpc-exp is preferred over h2.
  42. GPR_ASSERT(alpn_version_index("grpc-exp", 8) < alpn_version_index("h2", 2));
  43. }
  44. int main(int argc, char** argv) {
  45. grpc::testing::TestEnvironment env(argc, argv);
  46. test_alpn_success();
  47. test_alpn_failure();
  48. test_alpn_grpc_before_h2();
  49. return 0;
  50. }