mirror of
https://github.com/curl/curl.git
synced 2026-04-12 00:11:42 +08:00
The idea here is to set limits per test how many allocations and maximum
amount of memory it is allowed to use. This is a means to make sure the
number and total size of allocations are kept in check and don't
mistakenly "blow up".
If runtests.pl detects that the given limits have been exceeded it fails
the test case with an error.
The `<verify>` part now supports `<limits>`, and in this section two
limits can be set for each test (verified in debug builds only):
Allocations: [number of allocation calls]
Maximum allocated: [maximum concurrent memory allocated]
Default limits (used if nothing is set in the test file):
Allocations: 1000
Maximum allocated: 1000000
Closes #17821
65 lines
942 B
Plaintext
65 lines
942 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP proxy
|
|
</keywords>
|
|
</info>
|
|
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
<connect>
|
|
HTTP/1.1 503 no just no
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Server: test-server/fake
|
|
Accept-Ranges: bytes
|
|
Content-Length: 6
|
|
Connection: close
|
|
|
|
-foo-
|
|
</connect>
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
gopher
|
|
dict
|
|
http
|
|
ftp
|
|
imap
|
|
ldap
|
|
mqtt
|
|
pop3
|
|
rtsp
|
|
scp
|
|
sftp
|
|
smb
|
|
smtp
|
|
</features>
|
|
<server>
|
|
http-proxy
|
|
</server>
|
|
<name>
|
|
Refuse tunneling protocols through HTTP proxy
|
|
</name>
|
|
<command>
|
|
-x http://%HOSTIP:%PROXYPORT/%TESTNUMBER -p gopher://127.0.0.1 dict://127.0.0.1 http://moo https://example telnet://another ftp://yes ftps://again imap://more ldap://perhaps mqtt://yes pop3://mail rtsp://harder scp://copy sftp://files smb://wird smtp://send --insecure
|
|
</command>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
# refused in the CONNECT
|
|
<errorcode>
|
|
56
|
|
</errorcode>
|
|
<limits>
|
|
Allocations: 1700
|
|
</limits>
|
|
</verify>
|
|
</testcase>
|