Merge in build trunk.
[m6w6/libmemcached] / libtest / http.hpp
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * libtest
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22
23 #pragma once
24
25 namespace libtest {
26 namespace http {
27
28 class HTTP {
29 public:
30
31 HTTP(const std::string& url_arg) :
32 _url(url_arg),
33 _response(0)
34 { }
35
36 virtual bool execute()= 0;
37
38 virtual ~HTTP()
39 { }
40
41 const std::string& url() const
42 {
43 return _url;
44 }
45
46 long response()
47 {
48 return _response;
49 }
50
51 private:
52 std::string _url;
53
54 protected:
55 long _response;
56 };
57
58 class GET: public HTTP {
59 public:
60
61 GET(const std::string& url_arg) :
62 HTTP(url_arg)
63 {
64 }
65
66 bool execute();
67
68 private:
69 libtest::vchar_t _body;
70 };
71
72 class POST: public HTTP {
73 public:
74
75 POST(const std::string& url_arg,
76 const vchar_t& post_arg) :
77 HTTP(url_arg),
78 _post(post_arg)
79 {
80 }
81
82 bool execute();
83
84 private:
85 libtest::vchar_t _post;
86 libtest::vchar_t _body;
87 };
88
89 class TRACE: public HTTP {
90 public:
91
92 TRACE(const std::string& url_arg,
93 const vchar_t& body_arg) :
94 HTTP(url_arg),
95 _body(body_arg)
96 {
97 }
98
99 bool execute();
100
101 private:
102 libtest::vchar_t _body;
103 };
104
105 class HEAD: public HTTP {
106 public:
107
108 HEAD(const std::string& url_arg) :
109 HTTP(url_arg)
110 {
111 }
112
113 bool execute();
114
115 private:
116 };
117
118 } // namespace http
119 } // namespace libtest