From 46b6e90c81d81c0795a476f136be0bc962eb85fc Mon Sep 17 00:00:00 2001 From: removedporn <86824510+removedporn@users.noreply.github.com> Date: Mon, 28 Nov 2022 20:11:12 +0800 Subject: [PATCH] Delete test_base64.c --- test_base64.c | 59 --------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 test_base64.c diff --git a/test_base64.c b/test_base64.c deleted file mode 100644 index 95e4320..0000000 --- a/test_base64.c +++ /dev/null @@ -1,59 +0,0 @@ -#include -#include -#include "types.h" -#include "base64.h" -#include -#include -#include -#include - -struct texttestcase { - const char *in; - const char *out; -} tests0[] = { - { "" ,"" }, - { "f" ,"Zg==" }, - { "fo" ,"Zm8=" }, - { "foo" ,"Zm9v" }, - { "foob" ,"Zm9vYg==" }, - { "fooba" ,"Zm9vYmE=" }, - { "foobar","Zm9vYmFy" }, - - { "foobarf" ,"Zm9vYmFyZg==" }, - { "foobarfo" ,"Zm9vYmFyZm8=" }, - { "foobarfoo" ,"Zm9vYmFyZm9v" }, - { "foobarfoob" ,"Zm9vYmFyZm9vYg==" }, - { "foobarfooba" ,"Zm9vYmFyZm9vYmE=" }, - { "foobarfoobar","Zm9vYmFyZm9vYmFy" }, -}; - -int main(void) -{ - char buf[1024], buf2[1024]; - size_t r; - for (size_t i = 0; i < sizeof(tests0)/sizeof(tests0[0]); ++i) { - base64_to(buf, (const u8 *)tests0[i].in, strlen(tests0[i].in)); - if (strcmp(buf, tests0[i].out) != 0) { - printf("invalid encoding result: \"%s\" -> encoded as \"%s\", but expected \"%s\".\n", - tests0[i].in, buf, tests0[i].out); - return 1; - } - if (strlen(buf) != BASE64_TO_LEN(strlen(tests0[i].in))) { - printf("encoded length mismatch: got %d expected %d\n", - (int) strlen(buf), (int) BASE64_TO_LEN(strlen(tests0[i].in))); - return 1; - } - if (!base64_valid(buf,0)) { - printf("encoded data is considered invalid\n"); - return 1; - } - r = base64_from((u8 *)buf2, buf, strlen(buf)); - buf2[r] = '\000'; - if (strcmp(buf2, tests0[i].in) != 0) { - printf("invalid decoding result: encoded \"%s\", decoded as \"%s\", but expected \"%s\".\n", - tests0[i].out, buf2, tests0[i].in); - return 1; - } - } - return 0; -}