1/***************************************************************************
2 *                                  _   _ ____  _
3 *  Project                     ___| | | |  _ \| |
4 *                             / __| | | | |_) | |
5 *                            | (__| |_| |  _ <| |___
6 *                             \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) 1998 - 2011, 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 "test.h"
23
24#ifdef HAVE_SYS_STAT_H
25#include <sys/stat.h>
26#endif
27#ifdef HAVE_FCNTL_H
28#include <fcntl.h>
29#endif
30
31#include <curl/mprintf.h>
32
33#include "memdebug.h"
34
35/* build request url */
36static char *suburl(const char *base, int i)
37{
38  return curl_maprintf("%s%.4d", base, i);
39}
40
41/*
42 * Test the Client->Server ANNOUNCE functionality (PUT style)
43 */
44int test(char *URL)
45{
46  int res;
47  CURL *curl;
48  int sdp;
49  FILE *sdpf = NULL;
50  struct_stat file_info;
51  char *stream_uri = NULL;
52  int request=1;
53  struct curl_slist *custom_headers=NULL;
54
55  if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
56    fprintf(stderr, "curl_global_init() failed\n");
57    return TEST_ERR_MAJOR_BAD;
58  }
59
60  if ((curl = curl_easy_init()) == NULL) {
61    fprintf(stderr, "curl_easy_init() failed\n");
62    curl_global_cleanup();
63    return TEST_ERR_MAJOR_BAD;
64  }
65
66  test_setopt(curl, CURLOPT_HEADERDATA, stdout);
67  test_setopt(curl, CURLOPT_WRITEDATA, stdout);
68
69  test_setopt(curl, CURLOPT_URL, URL);
70
71  if((stream_uri = suburl(URL, request++)) == NULL) {
72    res = TEST_ERR_MAJOR_BAD;
73    goto test_cleanup;
74  }
75  test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri);
76  free(stream_uri);
77  stream_uri = NULL;
78
79  sdp = open("log/file568.txt", O_RDONLY);
80  fstat(sdp, &file_info);
81  close(sdp);
82
83  sdpf = fopen("log/file568.txt", "rb");
84  if(sdpf == NULL) {
85    fprintf(stderr, "can't open log/file568.txt\n");
86    res = TEST_ERR_MAJOR_BAD;
87    goto test_cleanup;
88  }
89  test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_ANNOUNCE);
90
91  test_setopt(curl, CURLOPT_READDATA, sdpf);
92  test_setopt(curl, CURLOPT_UPLOAD, 1L);
93  test_setopt(curl, CURLOPT_INFILESIZE_LARGE, (curl_off_t) file_info.st_size);
94
95  /* Do the ANNOUNCE */
96  res = curl_easy_perform(curl);
97  if(res)
98    goto test_cleanup;
99
100  test_setopt(curl, CURLOPT_UPLOAD, 0L);
101  fclose(sdpf);
102  sdpf = NULL;
103
104  /* Make sure we can do a normal request now */
105  if((stream_uri = suburl(URL, request++)) == NULL) {
106    res = TEST_ERR_MAJOR_BAD;
107    goto test_cleanup;
108  }
109  test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri);
110  free(stream_uri);
111  stream_uri = NULL;
112
113  test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_DESCRIBE);
114  res = curl_easy_perform(curl);
115  if(res)
116    goto test_cleanup;
117
118  /* Now do a POST style one */
119
120  if((stream_uri = suburl(URL, request++)) == NULL) {
121    res = TEST_ERR_MAJOR_BAD;
122    goto test_cleanup;
123  }
124  test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri);
125  free(stream_uri);
126  stream_uri = NULL;
127
128  custom_headers = curl_slist_append(custom_headers,
129                                     "Content-Type: posty goodness");
130  if(!custom_headers) {
131    res = TEST_ERR_MAJOR_BAD;
132    goto test_cleanup;
133  }
134  test_setopt(curl, CURLOPT_RTSPHEADER, custom_headers);
135  test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_ANNOUNCE);
136  test_setopt(curl, CURLOPT_POSTFIELDS, "postyfield=postystuff&project=curl\n");
137
138  res = curl_easy_perform(curl);
139  if(res)
140    goto test_cleanup;
141
142  test_setopt(curl, CURLOPT_POSTFIELDS, NULL);
143  test_setopt(curl, CURLOPT_RTSPHEADER, NULL);
144  curl_slist_free_all(custom_headers);
145  custom_headers = NULL;
146
147  /* Make sure we can do a normal request now */
148  if((stream_uri = suburl(URL, request++)) == NULL) {
149    res = TEST_ERR_MAJOR_BAD;
150    goto test_cleanup;
151  }
152  test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri);
153  free(stream_uri);
154  stream_uri = NULL;
155
156  test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS);
157  res = curl_easy_perform(curl);
158
159test_cleanup:
160
161  if(sdpf)
162    fclose(sdpf);
163
164  if(stream_uri)
165    free(stream_uri);
166
167  if(custom_headers)
168    curl_slist_free_all(custom_headers);
169
170  curl_easy_cleanup(curl);
171  curl_global_cleanup();
172
173  return res;
174}
175
176