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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
#include <string.h>
#include <libsoup/soup.h>
#include <rest/rest-proxy.h>
static int errors = 0;
static void
server_callback (SoupServer *server, SoupMessage *msg,
const char *path, GHashTable *query,
SoupClientContext *client, gpointer user_data)
{
if (g_str_equal (path, "/echo")) {
const char *value;
value = g_hash_table_lookup (query, "value");
soup_message_set_response (msg, "text/plain", SOUP_MEMORY_COPY,
value, strlen (value));
soup_message_set_status (msg, SOUP_STATUS_OK);
} else if (g_str_equal (path, "/reverse")) {
char *value;
value = g_strdup (g_hash_table_lookup (query, "value"));
g_strreverse (value);
soup_message_set_response (msg, "text/plain", SOUP_MEMORY_TAKE,
value, strlen (value));
soup_message_set_status (msg, SOUP_STATUS_OK);
}
}
static void
echo_test (RestProxy *proxy)
{
RestProxyCall *call;
GError *error = NULL;
call = rest_proxy_new_call (proxy);
rest_proxy_call_set_function (call, "echo");
rest_proxy_call_add_param (call, "value", "echome");
if (!rest_proxy_call_run (call, NULL, &error)) {
g_printerr ("Call failed: %s\n", error->message);
g_error_free (error);
errors++;
g_object_unref (call);
return;
}
if (rest_proxy_call_get_payload_length (call) != 6) {
g_printerr ("wrong length returned\n");
errors++;
return;
}
if (strcmp ("echome", rest_proxy_call_get_payload (call)) != 0) {
g_printerr ("wrong string returned\n");
errors++;
return;
}
}
static void
reverse_test (RestProxy *proxy)
{
RestProxyCall *call;
GError *error = NULL;
call = rest_proxy_new_call (proxy);
rest_proxy_call_set_function (call, "reverse");
rest_proxy_call_add_param (call, "value", "reverseme");
if (!rest_proxy_call_run (call, NULL, &error)) {
g_printerr ("Call failed: %s\n", error->message);
g_error_free (error);
errors++;
g_object_unref (call);
return;
}
if (rest_proxy_call_get_payload_length (call) != 9) {
g_printerr ("wrong length returned\n");
errors++;
return;
}
if (strcmp ("emesrever", rest_proxy_call_get_payload (call)) != 0) {
g_printerr ("wrong string returned\n");
errors++;
return;
}
}
int
main (int argc, char **argv)
{
SoupSession *session;
SoupServer *server;
char *url;
RestProxy *proxy;
g_thread_init (NULL);
g_type_init ();
session = soup_session_async_new ();
server = soup_server_new (NULL);
soup_server_add_handler (server, NULL, server_callback, NULL, NULL);
soup_server_run_async (server);
url = g_strdup_printf ("http://localhost:%d/", soup_server_get_port (server));
proxy = rest_proxy_new (url, FALSE);
g_free (url);
echo_test (proxy);
reverse_test (proxy);
return errors != 0;
}
|