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
cc0ce38a
Commit
cc0ce38a
authored
17 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
add test 549 and 550
parent
8cdff55b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
tests/data/test549
+62
-0
62 additions, 0 deletions
tests/data/test549
tests/data/test550
+62
-0
62 additions, 0 deletions
tests/data/test550
tests/libtest/Makefile.am
+4
-1
4 additions, 1 deletion
tests/libtest/Makefile.am
tests/libtest/lib549.c
+48
-0
48 additions, 0 deletions
tests/libtest/lib549.c
with
176 additions
and
1 deletion
tests/data/test549
0 → 100644
+
62
−
0
View file @
cc0ce38a
<testcase>
<info>
<keywords>
FTP
CURLOPT_PROXY_TRANSFER_MODE
CURLOPT_PROXY
</keywords>
</info>
#
# Server-side
<reply>
<data nocheck="1">
HTTP/1.1 200 OK swsclose
Date: Thu, 09 Nov 2010 14:49:00 GMT
Server: test-server/fake
Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
ETag: "21025-dc7-39462498"
Accept-Ranges: bytes
Content-Length: 6
hello
</data>
</reply>
#
# Client-side
<client>
<server>
http
</server>
<tool>
lib549
</tool>
<name>
FPT RETR over proxy with CURLOPT_PROXY_TRANSFER_MODE
</name>
# first URL then proxy
<command>
ftp://www.haxx.se/moo/549 http://%HOSTIP:%HTTPPORT
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
<strip>
^User-Agent:.*
</strip>
<protocol>
GET ftp://www.haxx.se/moo/549;type=i HTTP/1.1
Host: www.haxx.se:21
Pragma: no-cache
Accept: */*
Proxy-Connection: Keep-Alive
</protocol>
<stdout mode="text">
hello
</stdout>
</verify>
</testcase>
This diff is collapsed.
Click to expand it.
tests/data/test550
0 → 100644
+
62
−
0
View file @
cc0ce38a
<testcase>
<info>
<keywords>
FTP
CURLOPT_PROXY_TRANSFER_MODE
CURLOPT_PROXY
</keywords>
</info>
#
# Server-side
<reply>
<data nocheck="1">
HTTP/1.1 200 OK swsclose
Date: Thu, 09 Nov 2010 14:49:00 GMT
Server: test-server/fake
Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
ETag: "21025-dc7-39462498"
Accept-Ranges: bytes
Content-Length: 6
hello
</data>
</reply>
#
# Client-side
<client>
<server>
http
</server>
<tool>
lib549
</tool>
<name>
FPT RETR over proxy with CURLOPT_PROXY_TRANSFER_MODE and ascii transfer
</name>
# first URL then proxy
<command>
ftp://www.haxx.se/moo/550 http://%HOSTIP:%HTTPPORT ascii
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
<strip>
^User-Agent:.*
</strip>
<protocol>
GET ftp://www.haxx.se/moo/550;type=a HTTP/1.1
Host: www.haxx.se:21
Pragma: no-cache
Accept: */*
Proxy-Connection: Keep-Alive
</protocol>
<stdout mode="text">
hello
</stdout>
</verify>
</testcase>
This diff is collapsed.
Click to expand it.
tests/libtest/Makefile.am
+
4
−
1
View file @
cc0ce38a
...
...
@@ -48,7 +48,7 @@ noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 \
lib507 lib508 lib509 lib510 lib511 lib512 lib513 lib514 lib515 lib516
\
lib517 lib518 lib519 lib520 lib521 lib523 lib524 lib525 lib526 lib527
\
lib529 lib530 lib532 lib533 lib536 lib537 lib540 lib541 lib542 lib543
\
lib544 lib545 lib547 lib548
lib544 lib545 lib547 lib548
lib549
# Dependencies (may need to be overriden)
LDADD
=
$(
LIBDIR
)
/libcurl.la
...
...
@@ -143,3 +143,6 @@ lib547_SOURCES = lib547.c $(SUPPORTFILES)
lib548_SOURCES
=
lib547.c
$(
SUPPORTFILES
)
lib548_CFLAGS
=
-DLIB548
lib549_SOURCES
=
lib549.c
$(
SUPPORTFILES
)
This diff is collapsed.
Click to expand it.
tests/libtest/lib549.c
0 → 100644
+
48
−
0
View file @
cc0ce38a
/*****************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* $Id$
*
* argv1 = URL
* argv2 = proxy
* argv3 = non-zero means ASCII transfer
*/
#include
"test.h"
int
test
(
char
*
URL
)
{
CURLcode
res
;
CURL
*
curl
;
if
(
curl_global_init
(
CURL_GLOBAL_ALL
)
!=
CURLE_OK
)
{
fprintf
(
stderr
,
"curl_global_init() failed
\n
"
);
return
TEST_ERR_MAJOR_BAD
;
}
if
((
curl
=
curl_easy_init
())
==
NULL
)
{
fprintf
(
stderr
,
"curl_easy_init() failed
\n
"
);
curl_global_cleanup
();
return
TEST_ERR_MAJOR_BAD
;
}
curl_easy_setopt
(
curl
,
CURLOPT_PROXY
,
libtest_arg2
);
curl_easy_setopt
(
curl
,
CURLOPT_URL
,
URL
);
curl_easy_setopt
(
curl
,
CURLOPT_PROXY_TRANSFER_MODE
,
1
);
curl_easy_setopt
(
curl
,
CURLOPT_VERBOSE
,
TRUE
);
if
(
libtest_arg3
)
/* enable ascii/text mode */
curl_easy_setopt
(
curl
,
CURLOPT_TRANSFERTEXT
,
TRUE
);
res
=
curl_easy_perform
(
curl
);
curl_easy_cleanup
(
curl
);
curl_global_cleanup
();
return
(
int
)
res
;
}
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