1/***************************************************************************
2 *                                  _   _ ____  _
3 *  Project                     ___| | | |  _ \| |
4 *                             / __| | | | |_) | |
5 *                            | (__| |_| |  _ <| |___
6 *                             \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
9 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at http://curl.haxx.se/docs/copyright.html.
13 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22#include "curlcheck.h"
23
24#include "tool_getparam.h"
25
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29
30#include "memdebug.h" /* LAST include file */
31
32static CURLcode unit_setup(void)
33{
34  return CURLE_OK;
35}
36
37static void unit_stop(void)
38{
39
40}
41
42UNITTEST_START
43
44  const char *values[] = {
45    /* -E parameter */        /* exp. cert name */  /* exp. passphrase */
46    "foo:bar:baz",            "foo",                "bar:baz",
47    "foo\\:bar:baz",          "foo:bar",            "baz",
48    "foo\\\\:bar:baz",        "foo\\",              "bar:baz",
49    "foo:bar\\:baz",          "foo",                "bar\\:baz",
50    "foo:bar\\\\:baz",        "foo",                "bar\\\\:baz",
51    "foo\\bar\\baz",          "foo\\bar\\baz",      NULL,
52    "foo\\\\bar\\\\baz",      "foo\\bar\\baz",      NULL,
53    "foo\\",                  "foo\\",              NULL,
54    "foo\\\\",                "foo\\",              NULL,
55    "foo:bar\\",              "foo",                "bar\\",
56    "foo:bar\\\\",            "foo",                "bar\\\\",
57    "foo:bar:",               "foo",                "bar:",
58    "foo\\::bar\\:",          "foo:",               "bar\\:",
59#ifdef WIN32
60    "c:\\foo:bar:baz",        "c:\\foo",            "bar:baz",
61    "c:\\foo\\:bar:baz",      "c:\\foo:bar",        "baz",
62    "c:\\foo\\\\:bar:baz",    "c:\\foo\\",          "bar:baz",
63    "c:\\foo:bar\\:baz",      "c:\\foo",            "bar\\:baz",
64    "c:\\foo:bar\\\\:baz",    "c:\\foo",            "bar\\\\:baz",
65    "c:\\foo\\bar\\baz",      "c:\\foo\\bar\\baz",  NULL,
66    "c:\\foo\\\\bar\\\\baz",  "c:\\foo\\bar\\baz",  NULL,
67    "c:\\foo\\",              "c:\\foo\\",          NULL,
68    "c:\\foo\\\\",            "c:\\foo\\",          NULL,
69    "c:\\foo:bar\\",          "c:\\foo",            "bar\\",
70    "c:\\foo:bar\\\\",        "c:\\foo",            "bar\\\\",
71    "c:\\foo:bar:",           "c:\\foo",            "bar:",
72    "c:\\foo\\::bar\\:",      "c:\\foo:",           "bar\\:",
73#endif
74    NULL,                     NULL,                 NULL,
75  };
76  const char **p;
77  char *certname, *passphrase;
78  for(p = values; *p; p += 3) {
79    parse_cert_parameter(p[0], &certname, &passphrase);
80    if(p[1]) {
81      if(certname) {
82        if(strcmp(p[1], certname)) {
83          printf("expected certname '%s' but got '%s' "
84              "for -E param '%s'\n", p[1], certname, p[0]);
85          fail("assertion failure");
86        }
87      } else {
88        printf("expected certname '%s' but got NULL "
89            "for -E param '%s'\n", p[1], p[0]);
90        fail("assertion failure");
91      }
92    } else {
93      if(certname) {
94        printf("expected certname NULL but got '%s' "
95            "for -E param '%s'\n", certname, p[0]);
96        fail("assertion failure");
97      }
98    }
99    if(p[2]) {
100      if(passphrase) {
101        if(strcmp(p[2], passphrase)) {
102          printf("expected passphrase '%s' but got '%s'"
103              "for -E param '%s'\n", p[2], passphrase, p[0]);
104          fail("assertion failure");
105        }
106      } else {
107        printf("expected passphrase '%s' but got NULL "
108            "for -E param '%s'\n", p[2], p[0]);
109        fail("assertion failure");
110      }
111    } else {
112      if(passphrase) {
113        printf("expected passphrase NULL but got '%s' "
114            "for -E param '%s'\n", passphrase, p[0]);
115        fail("assertion failure");
116      }
117    }
118    if(certname) free(certname);
119    if(passphrase) free(passphrase);
120  }
121
122UNITTEST_STOP
123