xref: /third_party/curl/tests/libtest/lib1511.c (revision 13498266)
1/***************************************************************************
2 *                                  _   _ ____  _
3 *  Project                     ___| | | |  _ \| |
4 *                             / __| | | | |_) | |
5 *                            | (__| |_| |  _ <| |___
6 *                             \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) 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 https://curl.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 * SPDX-License-Identifier: curl
22 *
23 ***************************************************************************/
24#include "test.h"
25
26#include "memdebug.h"
27
28int test(char *URL)
29{
30  long unmet;
31  CURL *curl = NULL;
32  int res = 0;
33
34  global_init(CURL_GLOBAL_ALL);
35
36  easy_init(curl);
37
38  easy_setopt(curl, CURLOPT_URL, URL);
39  easy_setopt(curl, CURLOPT_HEADER, 1L);
40  easy_setopt(curl, CURLOPT_TIMECONDITION, (long)CURL_TIMECOND_IFMODSINCE);
41
42  /* TIMEVALUE in the future */
43  easy_setopt(curl, CURLOPT_TIMEVALUE, 1566210680L);
44
45  res = curl_easy_perform(curl);
46  if(res)
47    goto test_cleanup;
48
49  curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet);
50  if(unmet != 1L) {
51    res = TEST_ERR_FAILURE; /* not correct */
52    goto test_cleanup;
53  }
54
55  /* TIMEVALUE in the past */
56  easy_setopt(curl, CURLOPT_TIMEVALUE, 1L);
57
58  res = curl_easy_perform(curl);
59  if(res)
60    goto test_cleanup;
61
62  curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet);
63  if(unmet) {
64    res = TEST_ERR_FAILURE; /* not correct */
65    goto test_cleanup;
66  }
67
68  res = TEST_ERR_SUCCESS; /* this is where we should be */
69
70test_cleanup:
71
72  /* always cleanup */
73  curl_easy_cleanup(curl);
74  curl_global_cleanup();
75
76  return res;
77}
78