lib1511.c
Go to the documentation of this file.
00001 /***************************************************************************
00002  *                                  _   _ ____  _
00003  *  Project                     ___| | | |  _ \| |
00004  *                             / __| | | | |_) | |
00005  *                            | (__| |_| |  _ <| |___
00006  *                             \___|\___/|_| \_\_____|
00007  *
00008  * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
00009  *
00010  * This software is licensed as described in the file COPYING, which
00011  * you should have received as part of this distribution. The terms
00012  * are also available at https://curl.haxx.se/docs/copyright.html.
00013  *
00014  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
00015  * copies of the Software, and permit persons to whom the Software is
00016  * furnished to do so, under the terms of the COPYING file.
00017  *
00018  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
00019  * KIND, either express or implied.
00020  *
00021  ***************************************************************************/
00022 #include "test.h"
00023 
00024 #include "memdebug.h"
00025 
00026 int test(char *URL)
00027 {
00028   long unmet;
00029   CURL *curl = NULL;
00030   int res = 0;
00031 
00032   global_init(CURL_GLOBAL_ALL);
00033 
00034   easy_init(curl);
00035 
00036   easy_setopt(curl, CURLOPT_URL, URL);
00037   easy_setopt(curl, CURLOPT_HEADER, 1L);
00038   easy_setopt(curl, CURLOPT_TIMECONDITION, (long)CURL_TIMECOND_IFMODSINCE);
00039 
00040   /* TIMEVALUE in the future */
00041   easy_setopt(curl, CURLOPT_TIMEVALUE, 1566210680L);
00042 
00043   res = curl_easy_perform(curl);
00044   if(res)
00045     goto test_cleanup;
00046 
00047   curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet);
00048   if(unmet != 1L) {
00049     res = TEST_ERR_FAILURE; /* not correct */
00050     goto test_cleanup;
00051   }
00052 
00053   /* TIMEVALUE in the past */
00054   easy_setopt(curl, CURLOPT_TIMEVALUE, 1L);
00055 
00056   res = curl_easy_perform(curl);
00057   if(res)
00058     goto test_cleanup;
00059 
00060   curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet);
00061   if(unmet != 0L) {
00062     res = TEST_ERR_FAILURE; /* not correct */
00063     goto test_cleanup;
00064   }
00065 
00066   res = TEST_ERR_SUCCESS; /* this is where we should be */
00067 
00068 test_cleanup:
00069 
00070   /* always cleanup */
00071   curl_easy_cleanup(curl);
00072   curl_global_cleanup();
00073 
00074   return res;
00075 }


rc_visard_driver
Author(s): Heiko Hirschmueller , Christian Emmerich , Felix Ruess
autogenerated on Thu Jun 6 2019 20:43:05