summaryrefslogtreecommitdiff
path: root/curl/tests/https.testscript
blob: 1dee6c08f22989d9f4bf85a678cecd1d8ce78146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# file      : tests/https.testscript
# copyright : Copyright (c) 2016-2019 Code Synthesis Ltd
# license   : cURL License; see accompanying COPYING file

: default
:
{
  $* --fail -sS 'https://www.example.com' >>~%EOO%
    %.+
    EOO
}

: override
:
: Specify the empty CA certificates bundle on the command line and make sure
: curl exits with the 'peer certificate cannot be authenticated with known CA
: certificates' exit code.
:
{
  $* -s 'https://www.example.com' --capath "$src_base/empty.pem" == 60
}