aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib567.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-01-28 04:58:03 +0000
committerYang Tse <yangsita@gmail.com>2010-01-28 04:58:03 +0000
commit6259bcd51f057a7389bf41a1c653c1e5387c6999 (patch)
tree5b5c30012337589e5f99478c642ba58a12671418 /tests/libtest/lib567.c
parenta4031dbd850c6447526c49c939274d85023d9640 (diff)
Chris Conroy provided first RTSP tests
Diffstat (limited to 'tests/libtest/lib567.c')
-rw-r--r--tests/libtest/lib567.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/tests/libtest/lib567.c b/tests/libtest/lib567.c
new file mode 100644
index 000000000..e04873b11
--- /dev/null
+++ b/tests/libtest/lib567.c
@@ -0,0 +1,54 @@
+/*****************************************************************************
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
+ * \___|\___/|_| \_\_____|
+ *
+ * $Id$
+ */
+
+#include "test.h"
+#include "memdebug.h"
+
+/*
+ * Test a simple OPTIONS request with a custom header
+ */
+int test(char *URL)
+{
+ CURLcode res;
+ CURL *curl;
+ struct curl_slist *custom_headers=NULL;
+
+ if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
+ fprintf(stderr, "curl_global_init() failed\n");
+ return TEST_ERR_MAJOR_BAD;
+ }
+
+ if ((curl = curl_easy_init()) == NULL) {
+ fprintf(stderr, "curl_easy_init() failed\n");
+ curl_global_cleanup();
+ return TEST_ERR_MAJOR_BAD;
+ }
+
+ /* Dump data to stdout for protocol verification */
+ curl_easy_setopt(curl, CURLOPT_HEADERDATA, stdout);
+ curl_easy_setopt(curl, CURLOPT_WRITEDATA, stdout);
+
+ curl_easy_setopt(curl, CURLOPT_URL, URL);
+ curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, URL);
+ curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS);
+ curl_easy_setopt(curl, CURLOPT_USERAGENT, "test567");
+
+ custom_headers = curl_slist_append(custom_headers, "Test-Number: 567");
+ curl_easy_setopt(curl, CURLOPT_RTSPHEADER, custom_headers);
+
+ res = curl_easy_perform(curl);
+
+ curl_slist_free_all(custom_headers);
+ curl_easy_cleanup(curl);
+ curl_global_cleanup();
+
+ return (int)res;
+}
+