Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
1022e754
Commit
1022e754
authored
14 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
unittest: test base64 encode/decode
parent
703573c7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tests/data/test1302
+26
-0
26 additions, 0 deletions
tests/data/test1302
tests/unit/Makefile.inc
+2
-1
2 additions, 1 deletion
tests/unit/Makefile.inc
tests/unit/unit1302.c
+82
-0
82 additions, 0 deletions
tests/unit/unit1302.c
with
110 additions
and
1 deletion
tests/data/test1302
0 → 100644
+
26
−
0
View file @
1022e754
<testcase>
<info>
<keywords>
unittest
llist
</keywords>
</info>
#
# Client-side
<client>
<server>
none
</server>
<features>
unittest
</features>
<name>
base64 encode/decode unit tests
</name>
<tool>
unit1302
</tool>
</client>
</testcase>
This diff is collapsed.
Click to expand it.
tests/unit/Makefile.inc
+
2
−
1
View file @
1022e754
...
...
@@ -3,7 +3,8 @@
UNITFILES
=
curlcheck.h
# These are all unit test programs
noinst_PROGRAMS
=
unit1300 unit1301
noinst_PROGRAMS
=
unit1300 unit1301
unit1302
unit1300_SOURCES
=
unit1300.c
$(
UNITFILES
)
unit1301_SOURCES
=
unit1301.c
$(
UNITFILES
)
unit1302_SOURCES
=
unit1302.c
$(
UNITFILES
)
This diff is collapsed.
Click to expand it.
tests/unit/unit1302.c
0 → 100644
+
82
−
0
View file @
1022e754
#include
<stdlib.h>
#include
"curl_config.h"
#include
"setup.h"
#include
"urldata.h"
#include
"curl_base64.h"
#include
"curlcheck.h"
#include
"memdebug.h"
/* LAST include file */
static
struct
SessionHandle
*
data
;
static
void
unit_setup
(
void
)
{
data
=
curl_easy_init
();
}
static
void
unit_stop
(
void
)
{
curl_easy_cleanup
(
data
);
}
UNITTEST_START
char
*
output
;
unsigned
char
*
decoded
;
size_t
rc
;
rc
=
Curl_base64_encode
(
data
,
"i"
,
1
,
&
output
);
fail_unless
(
rc
==
4
,
"return code should be 4"
);
verify_memory
(
output
,
"aQ=="
,
4
);
free
(
output
);
rc
=
Curl_base64_encode
(
data
,
"ii"
,
2
,
&
output
);
fail_unless
(
rc
==
4
,
"return code should be 4"
);
verify_memory
(
output
,
"aWk="
,
4
);
free
(
output
);
rc
=
Curl_base64_encode
(
data
,
"iii"
,
3
,
&
output
);
fail_unless
(
rc
==
4
,
"return code should be 4"
);
verify_memory
(
output
,
"aWlp"
,
4
);
free
(
output
);
rc
=
Curl_base64_encode
(
data
,
"iiii"
,
4
,
&
output
);
fail_unless
(
rc
==
8
,
"return code should be 8"
);
verify_memory
(
output
,
"aWlpaQ=="
,
8
);
free
(
output
);
/* 0 length makes it do strlen() */
rc
=
Curl_base64_encode
(
data
,
"iiii"
,
0
,
&
output
);
fail_unless
(
rc
==
8
,
"return code should be 8"
);
verify_memory
(
output
,
"aWlpaQ=="
,
8
);
free
(
output
);
rc
=
Curl_base64_decode
(
"aWlpaQ=="
,
&
decoded
);
fail_unless
(
rc
==
4
,
"return code should be 4"
);
verify_memory
(
decoded
,
"iiii"
,
4
);
free
(
decoded
);
rc
=
Curl_base64_decode
(
"aWlp"
,
&
decoded
);
fail_unless
(
rc
==
3
,
"return code should be 3"
);
verify_memory
(
decoded
,
"iii"
,
3
);
free
(
decoded
);
rc
=
Curl_base64_decode
(
"aWk="
,
&
decoded
);
fail_unless
(
rc
==
2
,
"return code should be 2"
);
verify_memory
(
decoded
,
"ii"
,
2
);
free
(
decoded
);
rc
=
Curl_base64_decode
(
"aQ=="
,
&
decoded
);
fail_unless
(
rc
==
1
,
"return code should be 1"
);
verify_memory
(
decoded
,
"i"
,
2
);
free
(
decoded
);
/* this is an illegal input */
rc
=
Curl_base64_decode
(
"aQ"
,
&
decoded
);
fail_unless
(
rc
==
0
,
"return code should be 0"
);
/* this is garbage input that libcurl decodes as far as possible */
rc
=
Curl_base64_decode
(
"a
\x1f
=="
,
&
decoded
);
fail_unless
(
rc
==
1
,
"return code should be 1"
);
free
(
decoded
);
UNITTEST_STOP
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment