summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2008-03-07 19:53:46 (UTC)
committer Michael Krelin <hacker@klever.net>2008-03-07 19:53:46 (UTC)
commitf953b073abbf9e58e5b2a46c6ddf65f57dec1fad (patch) (side-by-side diff)
treecd8bf29efc2dc59070c013a69a7c6d70f63322b4
parent0d19bbaa23b7bd07ec4f5e3683ffdd8df4641bc9 (diff)
downloadlibopkele-f953b073abbf9e58e5b2a46c6ddf65f57dec1fad.zip
libopkele-f953b073abbf9e58e5b2a46c6ddf65f57dec1fad.tar.gz
libopkele-f953b073abbf9e58e5b2a46c6ddf65f57dec1fad.tar.bz2
comitting updated test consumer
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--test/test-oauth-consumer.cc18
1 files changed, 4 insertions, 14 deletions
diff --git a/test/test-oauth-consumer.cc b/test/test-oauth-consumer.cc
index 3b3ca70..c5a0fc0 100644
--- a/test/test-oauth-consumer.cc
+++ b/test/test-oauth-consumer.cc
@@ -42,24 +42,14 @@ int main(int,char**) {
opkele::fields_t(),test,
opkele::oauth::oauth_auth_header,"HMAC-SHA1",
&at,"realm");
- DOUT_("url: " << hr.url << endl
- << "body: " << hr.body << endl
- << "header: " << hr.authorize_header);
- opkele::util::curl_slist_t rh;
- rh.append("Authorization: "+hr.authorize_header);
- CURLcode r;
- (r=curl.misc_sets())
- || (r=curl.set_write())
- || (r=curl.easy_setopt(CURLOPT_HTTPHEADER,rh) )
- || (r=curl.easy_setopt(CURLOPT_URL,hr.url.c_str()))
- || (r=curl.easy_setopt(CURLOPT_POST,1))
- || (r=curl.easy_setopt(CURLOPT_POSTFIELDS,hr.body.c_str()))
- || (r=curl.easy_setopt(CURLOPT_POSTFIELDSIZE,hr.body.size()));
+ CURLcode r = curl.misc_sets();
+ r || (r=curl.set_write());
if(r)
throw opkele::exception_curl(OPKELE_CP_ "failed to set curly options",r);
+ hr.setup_curl(curl);
if( (r=curl.easy_perform()) )
throw opkele::exception_curl(OPKELE_CP_ "failed to perform curly request",r);
- DOUT_("Response: " << endl << curl.response);
+ cout << "Response: " << curl.response << endl;
#ifdef OPKELE_HAVE_KONFORKA
}catch(konforka::exception& e) {