mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
220 lines
6.9 KiB
220 lines
6.9 KiB
10 years ago
|
/*
|
||
|
*
|
||
8 years ago
|
* Copyright 2015 gRPC authors.
|
||
10 years ago
|
*
|
||
8 years ago
|
* 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
|
||
10 years ago
|
*
|
||
8 years ago
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
10 years ago
|
*
|
||
8 years ago
|
* 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.
|
||
10 years ago
|
*
|
||
|
*/
|
||
|
|
||
8 years ago
|
#include "src/core/lib/slice/b64.h"
|
||
10 years ago
|
|
||
|
#include <string.h>
|
||
|
|
||
8 years ago
|
#include <grpc/slice.h>
|
||
10 years ago
|
#include <grpc/support/alloc.h>
|
||
|
#include <grpc/support/log.h>
|
||
8 years ago
|
#include "src/core/lib/iomgr/exec_ctx.h"
|
||
|
#include "src/core/lib/slice/slice_internal.h"
|
||
10 years ago
|
#include "test/core/util/test_config.h"
|
||
|
|
||
7 years ago
|
static int buffers_are_equal(const unsigned char* buf1,
|
||
|
const unsigned char* buf2, size_t size) {
|
||
10 years ago
|
size_t i;
|
||
9 years ago
|
for (i = 0; i < size; i++) {
|
||
|
if (buf1[i] != buf2[i]) {
|
||
|
gpr_log(GPR_ERROR, "buf1 and buf2 differ: buf1[%d] = %x vs buf2[%d] = %x",
|
||
|
(int)i, buf1[i], (int)i, buf2[i]);
|
||
|
return 0;
|
||
10 years ago
|
}
|
||
9 years ago
|
}
|
||
10 years ago
|
return 1;
|
||
|
}
|
||
9 years ago
|
|
||
9 years ago
|
static void test_simple_encode_decode_b64(int url_safe, int multiline) {
|
||
7 years ago
|
const char* hello = "hello";
|
||
|
char* hello_b64 =
|
||
9 years ago
|
grpc_base64_encode(hello, strlen(hello), url_safe, multiline);
|
||
8 years ago
|
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
|
||
|
grpc_slice hello_slice = grpc_base64_decode(&exec_ctx, hello_b64, url_safe);
|
||
8 years ago
|
GPR_ASSERT(GRPC_SLICE_LENGTH(hello_slice) == strlen(hello));
|
||
7 years ago
|
GPR_ASSERT(strncmp((const char*)GRPC_SLICE_START_PTR(hello_slice), hello,
|
||
8 years ago
|
GRPC_SLICE_LENGTH(hello_slice)) == 0);
|
||
9 years ago
|
|
||
8 years ago
|
grpc_slice_unref_internal(&exec_ctx, hello_slice);
|
||
|
grpc_exec_ctx_finish(&exec_ctx);
|
||
9 years ago
|
gpr_free(hello_b64);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_full_range_encode_decode_b64(int url_safe, int multiline) {
|
||
10 years ago
|
unsigned char orig[256];
|
||
|
size_t i;
|
||
7 years ago
|
char* b64;
|
||
8 years ago
|
grpc_slice orig_decoded;
|
||
9 years ago
|
for (i = 0; i < sizeof(orig); i++) orig[i] = (uint8_t)i;
|
||
10 years ago
|
|
||
|
/* Try all the different paddings. */
|
||
9 years ago
|
for (i = 0; i < 3; i++) {
|
||
8 years ago
|
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
|
||
9 years ago
|
b64 = grpc_base64_encode(orig, sizeof(orig) - i, url_safe, multiline);
|
||
8 years ago
|
orig_decoded = grpc_base64_decode(&exec_ctx, b64, url_safe);
|
||
8 years ago
|
GPR_ASSERT(GRPC_SLICE_LENGTH(orig_decoded) == (sizeof(orig) - i));
|
||
|
GPR_ASSERT(buffers_are_equal(orig, GRPC_SLICE_START_PTR(orig_decoded),
|
||
9 years ago
|
sizeof(orig) - i));
|
||
8 years ago
|
grpc_slice_unref_internal(&exec_ctx, orig_decoded);
|
||
9 years ago
|
gpr_free(b64);
|
||
8 years ago
|
grpc_exec_ctx_finish(&exec_ctx);
|
||
9 years ago
|
}
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_simple_encode_decode_b64_no_multiline(void) {
|
||
|
test_simple_encode_decode_b64(0, 0);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_simple_encode_decode_b64_multiline(void) {
|
||
|
test_simple_encode_decode_b64(0, 1);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_simple_encode_decode_b64_urlsafe_no_multiline(void) {
|
||
|
test_simple_encode_decode_b64(1, 0);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_simple_encode_decode_b64_urlsafe_multiline(void) {
|
||
|
test_simple_encode_decode_b64(1, 1);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_full_range_encode_decode_b64_no_multiline(void) {
|
||
|
test_full_range_encode_decode_b64(0, 0);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_full_range_encode_decode_b64_multiline(void) {
|
||
|
test_full_range_encode_decode_b64(0, 1);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_full_range_encode_decode_b64_urlsafe_no_multiline(void) {
|
||
|
test_full_range_encode_decode_b64(1, 0);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_full_range_encode_decode_b64_urlsafe_multiline(void) {
|
||
|
test_full_range_encode_decode_b64(1, 1);
|
||
10 years ago
|
}
|
||
|
|
||
8 years ago
|
static void test_url_safe_unsafe_mismatch_failure(void) {
|
||
10 years ago
|
unsigned char orig[256];
|
||
|
size_t i;
|
||
7 years ago
|
char* b64;
|
||
8 years ago
|
grpc_slice orig_decoded;
|
||
10 years ago
|
int url_safe = 1;
|
||
9 years ago
|
for (i = 0; i < sizeof(orig); i++) orig[i] = (uint8_t)i;
|
||
9 years ago
|
|
||
8 years ago
|
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
|
||
9 years ago
|
b64 = grpc_base64_encode(orig, sizeof(orig), url_safe, 0);
|
||
8 years ago
|
orig_decoded = grpc_base64_decode(&exec_ctx, b64, !url_safe);
|
||
8 years ago
|
GPR_ASSERT(GRPC_SLICE_IS_EMPTY(orig_decoded));
|
||
9 years ago
|
gpr_free(b64);
|
||
8 years ago
|
grpc_slice_unref_internal(&exec_ctx, orig_decoded);
|
||
9 years ago
|
|
||
|
b64 = grpc_base64_encode(orig, sizeof(orig), !url_safe, 0);
|
||
8 years ago
|
orig_decoded = grpc_base64_decode(&exec_ctx, b64, url_safe);
|
||
8 years ago
|
GPR_ASSERT(GRPC_SLICE_IS_EMPTY(orig_decoded));
|
||
9 years ago
|
gpr_free(b64);
|
||
8 years ago
|
grpc_slice_unref_internal(&exec_ctx, orig_decoded);
|
||
|
grpc_exec_ctx_finish(&exec_ctx);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_rfc4648_test_vectors(void) {
|
||
7 years ago
|
char* b64;
|
||
10 years ago
|
|
||
9 years ago
|
b64 = grpc_base64_encode("", 0, 0, 0);
|
||
|
GPR_ASSERT(strcmp("", b64) == 0);
|
||
|
gpr_free(b64);
|
||
10 years ago
|
|
||
9 years ago
|
b64 = grpc_base64_encode("f", 1, 0, 0);
|
||
|
GPR_ASSERT(strcmp("Zg==", b64) == 0);
|
||
|
gpr_free(b64);
|
||
10 years ago
|
|
||
9 years ago
|
b64 = grpc_base64_encode("fo", 2, 0, 0);
|
||
|
GPR_ASSERT(strcmp("Zm8=", b64) == 0);
|
||
|
gpr_free(b64);
|
||
10 years ago
|
|
||
9 years ago
|
b64 = grpc_base64_encode("foo", 3, 0, 0);
|
||
|
GPR_ASSERT(strcmp("Zm9v", b64) == 0);
|
||
|
gpr_free(b64);
|
||
10 years ago
|
|
||
9 years ago
|
b64 = grpc_base64_encode("foob", 4, 0, 0);
|
||
|
GPR_ASSERT(strcmp("Zm9vYg==", b64) == 0);
|
||
|
gpr_free(b64);
|
||
10 years ago
|
|
||
9 years ago
|
b64 = grpc_base64_encode("fooba", 5, 0, 0);
|
||
|
GPR_ASSERT(strcmp("Zm9vYmE=", b64) == 0);
|
||
|
gpr_free(b64);
|
||
10 years ago
|
|
||
9 years ago
|
b64 = grpc_base64_encode("foobar", 6, 0, 0);
|
||
|
GPR_ASSERT(strcmp("Zm9vYmFy", b64) == 0);
|
||
|
gpr_free(b64);
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
static void test_unpadded_decode(void) {
|
||
8 years ago
|
grpc_slice decoded;
|
||
10 years ago
|
|
||
8 years ago
|
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
|
||
|
decoded = grpc_base64_decode(&exec_ctx, "Zm9vYmFy", 0);
|
||
8 years ago
|
GPR_ASSERT(!GRPC_SLICE_IS_EMPTY(decoded));
|
||
8 years ago
|
GPR_ASSERT(grpc_slice_str_cmp(decoded, "foobar") == 0);
|
||
|
grpc_slice_unref(decoded);
|
||
9 years ago
|
|
||
8 years ago
|
decoded = grpc_base64_decode(&exec_ctx, "Zm9vYmE", 0);
|
||
8 years ago
|
GPR_ASSERT(!GRPC_SLICE_IS_EMPTY(decoded));
|
||
8 years ago
|
GPR_ASSERT(grpc_slice_str_cmp(decoded, "fooba") == 0);
|
||
|
grpc_slice_unref(decoded);
|
||
9 years ago
|
|
||
8 years ago
|
decoded = grpc_base64_decode(&exec_ctx, "Zm9vYg", 0);
|
||
8 years ago
|
GPR_ASSERT(!GRPC_SLICE_IS_EMPTY(decoded));
|
||
8 years ago
|
GPR_ASSERT(grpc_slice_str_cmp(decoded, "foob") == 0);
|
||
|
grpc_slice_unref(decoded);
|
||
9 years ago
|
|
||
8 years ago
|
decoded = grpc_base64_decode(&exec_ctx, "Zm9v", 0);
|
||
8 years ago
|
GPR_ASSERT(!GRPC_SLICE_IS_EMPTY(decoded));
|
||
8 years ago
|
GPR_ASSERT(grpc_slice_str_cmp(decoded, "foo") == 0);
|
||
|
grpc_slice_unref(decoded);
|
||
9 years ago
|
|
||
8 years ago
|
decoded = grpc_base64_decode(&exec_ctx, "Zm8", 0);
|
||
8 years ago
|
GPR_ASSERT(!GRPC_SLICE_IS_EMPTY(decoded));
|
||
8 years ago
|
GPR_ASSERT(grpc_slice_str_cmp(decoded, "fo") == 0);
|
||
|
grpc_slice_unref(decoded);
|
||
9 years ago
|
|
||
8 years ago
|
decoded = grpc_base64_decode(&exec_ctx, "Zg", 0);
|
||
8 years ago
|
GPR_ASSERT(!GRPC_SLICE_IS_EMPTY(decoded));
|
||
8 years ago
|
GPR_ASSERT(grpc_slice_str_cmp(decoded, "f") == 0);
|
||
|
grpc_slice_unref(decoded);
|
||
9 years ago
|
|
||
8 years ago
|
decoded = grpc_base64_decode(&exec_ctx, "", 0);
|
||
8 years ago
|
GPR_ASSERT(GRPC_SLICE_IS_EMPTY(decoded));
|
||
8 years ago
|
grpc_exec_ctx_finish(&exec_ctx);
|
||
10 years ago
|
}
|
||
|
|
||
7 years ago
|
int main(int argc, char** argv) {
|
||
9 years ago
|
grpc_test_init(argc, argv);
|
||
|
test_simple_encode_decode_b64_no_multiline();
|
||
|
test_simple_encode_decode_b64_multiline();
|
||
|
test_simple_encode_decode_b64_urlsafe_no_multiline();
|
||
|
test_simple_encode_decode_b64_urlsafe_multiline();
|
||
|
test_full_range_encode_decode_b64_no_multiline();
|
||
|
test_full_range_encode_decode_b64_multiline();
|
||
|
test_full_range_encode_decode_b64_urlsafe_no_multiline();
|
||
|
test_full_range_encode_decode_b64_urlsafe_multiline();
|
||
8 years ago
|
test_url_safe_unsafe_mismatch_failure();
|
||
9 years ago
|
test_rfc4648_test_vectors();
|
||
|
test_unpadded_decode();
|
||
10 years ago
|
return 0;
|
||
10 years ago
|
}
|