Menu

[r2336]: / framework / trunk / tests / cookie_test.cpp  Maximize  Restore  History

Download this file

89 lines (82 with data), 2.4 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#include <cppcms/service.h>
#include <cppcms/application.h>
#include <cppcms/applications_pool.h>
#include <cppcms/http_request.h>
#include <cppcms/http_cookie.h>
#include <cppcms/http_response.h>
#include <cppcms/http_context.h>
#include <cppcms/json.h>
#include <iostream>
#include "client.h"
#include "test.h"
class unit_test : public cppcms::application {
public:
unit_test(cppcms::service &s) : cppcms::application(s)
{
}
virtual void main(std::string /*test*/)
{
response().set_cookie(cppcms::http::cookie("normal","token"));
response().set_cookie(cppcms::http::cookie("utf","\xD7\xA9\xD7\x9C\xD7\x95\xD7\x9D \xD7\xA9\xD7\x9C\xD7\x95\xD7\x9D"));
typedef cppcms::http::request::cookies_type cookies_type;
cookies_type cookies=request().cookies();
for(cookies_type::iterator cookie=cookies.begin();cookie!=cookies.end();cookie++) {
response().out()<<cookie->second.name()<<':'<<cookie->second.value()<<'\n';
}
}
};
void basic_test()
{
cppcms::http::cookie c("a","b");
{
std::ostringstream ss;
ss << c;
TEST(ss.str()=="Set-Cookie:a=b; Version=1");
}
{
c.max_age(10);
std::ostringstream ss;
ss << c;
TEST(ss.str()=="Set-Cookie:a=b; Max-Age=10; Version=1");
}
{
c.expires(1);
std::ostringstream ss;
ss << c;
TEST(ss.str()=="Set-Cookie:a=b; Max-Age=10; Expires=Thu, 01 Jan 1970 00:00:01 GMT; Version=1");
}
{
std::ostringstream ss;
c.browser_age();
ss << c;
TEST(ss.str()=="Set-Cookie:a=b; Version=1");
}
{
c.expires(1);
std::ostringstream ss;
ss << c;
TEST(ss.str()=="Set-Cookie:a=b; Expires=Thu, 01 Jan 1970 00:00:01 GMT; Version=1");
}
}
int main(int argc,char **argv)
{
try {
basic_test();
cppcms::service srv(argc,argv);
srv.applications_pool().mount( cppcms::create_pool<unit_test>());
srv.after_fork(submitter(srv));
srv.run();
}
catch(std::exception const &e) {
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
return run_ok ? EXIT_SUCCESS : EXIT_FAILURE;
}
MongoDB Logo MongoDB