blob: 92629b4001123109096005cda936650b320a1ada [file] [log] [blame]
Roger Meierc1010922010-11-26 10:17:48 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
Roger Meier213a6642010-10-27 12:30:11 +000020#include <assert.h>
21#include <glib.h>
22#include <stdlib.h>
23#include <unistd.h>
24#include <sys/types.h>
25#include <sys/wait.h>
26
Roger Meiere3da7682013-01-11 11:41:53 +010027#include <thrift/c_glib/thrift.h>
28#include <thrift/c_glib/processor/thrift_processor.h>
29#include <thrift/c_glib/transport/thrift_server_socket.h>
Roger Meier213a6642010-10-27 12:30:11 +000030
31#define TEST_PORT 51199
32
Roger Meiere3da7682013-01-11 11:41:53 +010033#include <thrift/c_glib/server/thrift_simple_server.c>
Roger Meier213a6642010-10-27 12:30:11 +000034
35/* create a rudimentary processor */
36#define TEST_PROCESSOR_TYPE (test_processor_get_type ())
37
38struct _TestProcessor
39{
40 ThriftProcessor parent;
41};
42typedef struct _TestProcessor TestProcessor;
43
44struct _TestProcessorClass
45{
46 ThriftProcessorClass parent;
47};
48typedef struct _TestProcessorClass TestProcessorClass;
49
Roger Meierc1010922010-11-26 10:17:48 +000050G_DEFINE_TYPE(TestProcessor, test_processor, THRIFT_TYPE_PROCESSOR)
51
Roger Meier213a6642010-10-27 12:30:11 +000052gboolean
53test_processor_process (ThriftProcessor *processor, ThriftProtocol *in,
Roger Meier63243c62014-09-29 20:29:58 +020054 ThriftProtocol *out, GError **error)
Roger Meier213a6642010-10-27 12:30:11 +000055{
56 return FALSE;
57}
58
59static void
Roger Meierc1010922010-11-26 10:17:48 +000060test_processor_init (TestProcessor *p)
Roger Meier213a6642010-10-27 12:30:11 +000061{
Roger Meierc1010922010-11-26 10:17:48 +000062 THRIFT_UNUSED_VAR (p);
Roger Meier213a6642010-10-27 12:30:11 +000063}
64
Roger Meierc1010922010-11-26 10:17:48 +000065static void
66test_processor_class_init (TestProcessorClass *proc)
Roger Meier213a6642010-10-27 12:30:11 +000067{
Roger Meierc1010922010-11-26 10:17:48 +000068 (THRIFT_PROCESSOR_CLASS(proc))->process = test_processor_process;
Roger Meier213a6642010-10-27 12:30:11 +000069}
70
71static void
72test_server (void)
73{
74 int status;
75 pid_t pid;
76 TestProcessor *p = NULL;
77 ThriftServerSocket *tss = NULL;
78 ThriftSimpleServer *ss = NULL;
79
80 p = g_object_new (TEST_PROCESSOR_TYPE, NULL);
81 tss = g_object_new (THRIFT_TYPE_SERVER_SOCKET, "port", TEST_PORT, NULL);
82 ss = g_object_new (THRIFT_TYPE_SIMPLE_SERVER, "processor", p,
83 "server_transport", THRIFT_SERVER_TRANSPORT (tss), NULL);
84
85 /* run the server in a child process */
86 pid = fork ();
87 assert (pid >= 0);
88
89 if (pid == 0)
90 {
Roger Meier63243c62014-09-29 20:29:58 +020091 THRIFT_SERVER_GET_CLASS (THRIFT_SERVER (ss))->serve (THRIFT_SERVER (ss),
92 NULL);
Roger Meier213a6642010-10-27 12:30:11 +000093 exit (0);
94 } else {
95 sleep (5);
96 kill (pid, SIGINT);
97
98 g_object_unref (ss);
99 g_object_unref (tss);
100 g_object_unref (p);
101 assert (wait (&status) == pid);
102 assert (status == SIGINT);
103 }
104}
105
106int
Roger Meierc1010922010-11-26 10:17:48 +0000107main(int argc, char *argv[])
Roger Meier213a6642010-10-27 12:30:11 +0000108{
Roger Meierc1010922010-11-26 10:17:48 +0000109 g_type_init();
110 g_test_init (&argc, &argv, NULL);
Roger Meier213a6642010-10-27 12:30:11 +0000111
Roger Meierc1010922010-11-26 10:17:48 +0000112 g_test_add_func ("/testsimpleserver/SimpleServer", test_server);
113
114 return g_test_run ();
Roger Meier213a6642010-10-27 12:30:11 +0000115}