blob: 3c6f2e80dbb298f2052246ecf0c8ff961e349996 [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 <glib.h>
21#include <stdlib.h>
22#include <unistd.h>
23#include <sys/types.h>
24#include <sys/wait.h>
25
Roger Meiere3da7682013-01-11 11:41:53 +010026#include <thrift/c_glib/thrift.h>
27#include <thrift/c_glib/processor/thrift_processor.h>
28#include <thrift/c_glib/transport/thrift_server_socket.h>
Roger Meier213a6642010-10-27 12:30:11 +000029
30#define TEST_PORT 51199
31
Roger Meiere3da7682013-01-11 11:41:53 +010032#include <thrift/c_glib/server/thrift_simple_server.c>
Roger Meier213a6642010-10-27 12:30:11 +000033
34/* create a rudimentary processor */
35#define TEST_PROCESSOR_TYPE (test_processor_get_type ())
36
37struct _TestProcessor
38{
39 ThriftProcessor parent;
40};
41typedef struct _TestProcessor TestProcessor;
42
43struct _TestProcessorClass
44{
45 ThriftProcessorClass parent;
46};
47typedef struct _TestProcessorClass TestProcessorClass;
48
Roger Meierc1010922010-11-26 10:17:48 +000049G_DEFINE_TYPE(TestProcessor, test_processor, THRIFT_TYPE_PROCESSOR)
50
Roger Meier213a6642010-10-27 12:30:11 +000051gboolean
52test_processor_process (ThriftProcessor *processor, ThriftProtocol *in,
Roger Meier63243c62014-09-29 20:29:58 +020053 ThriftProtocol *out, GError **error)
Roger Meier213a6642010-10-27 12:30:11 +000054{
Simon South38e71552015-08-03 10:51:16 +000055 THRIFT_UNUSED_VAR (processor);
56 THRIFT_UNUSED_VAR (in);
57 THRIFT_UNUSED_VAR (out);
58 THRIFT_UNUSED_VAR (error);
59
Roger Meier213a6642010-10-27 12:30:11 +000060 return FALSE;
61}
62
63static void
Roger Meierc1010922010-11-26 10:17:48 +000064test_processor_init (TestProcessor *p)
Roger Meier213a6642010-10-27 12:30:11 +000065{
Roger Meierc1010922010-11-26 10:17:48 +000066 THRIFT_UNUSED_VAR (p);
Roger Meier213a6642010-10-27 12:30:11 +000067}
68
Roger Meierc1010922010-11-26 10:17:48 +000069static void
70test_processor_class_init (TestProcessorClass *proc)
Roger Meier213a6642010-10-27 12:30:11 +000071{
Roger Meierc1010922010-11-26 10:17:48 +000072 (THRIFT_PROCESSOR_CLASS(proc))->process = test_processor_process;
Roger Meier213a6642010-10-27 12:30:11 +000073}
74
75static void
76test_server (void)
77{
78 int status;
79 pid_t pid;
80 TestProcessor *p = NULL;
81 ThriftServerSocket *tss = NULL;
82 ThriftSimpleServer *ss = NULL;
83
84 p = g_object_new (TEST_PROCESSOR_TYPE, NULL);
85 tss = g_object_new (THRIFT_TYPE_SERVER_SOCKET, "port", TEST_PORT, NULL);
86 ss = g_object_new (THRIFT_TYPE_SIMPLE_SERVER, "processor", p,
87 "server_transport", THRIFT_SERVER_TRANSPORT (tss), NULL);
88
89 /* run the server in a child process */
90 pid = fork ();
James E. King, III43f4bf22017-10-28 12:54:02 -040091 g_assert (pid >= 0);
Roger Meier213a6642010-10-27 12:30:11 +000092
93 if (pid == 0)
94 {
Roger Meier63243c62014-09-29 20:29:58 +020095 THRIFT_SERVER_GET_CLASS (THRIFT_SERVER (ss))->serve (THRIFT_SERVER (ss),
96 NULL);
Roger Meier213a6642010-10-27 12:30:11 +000097 exit (0);
98 } else {
99 sleep (5);
100 kill (pid, SIGINT);
101
102 g_object_unref (ss);
103 g_object_unref (tss);
104 g_object_unref (p);
James E. King, III43f4bf22017-10-28 12:54:02 -0400105 g_assert (wait (&status) == pid);
106 g_assert (status == SIGINT);
Roger Meier213a6642010-10-27 12:30:11 +0000107 }
108}
109
110int
Roger Meierc1010922010-11-26 10:17:48 +0000111main(int argc, char *argv[])
Roger Meier213a6642010-10-27 12:30:11 +0000112{
Jens Geyer1c190272015-07-28 23:15:18 +0200113#if (!GLIB_CHECK_VERSION (2, 36, 0))
Roger Meierc1010922010-11-26 10:17:48 +0000114 g_type_init();
Jens Geyer1c190272015-07-28 23:15:18 +0200115#endif
116
Roger Meierc1010922010-11-26 10:17:48 +0000117 g_test_init (&argc, &argv, NULL);
Roger Meier213a6642010-10-27 12:30:11 +0000118
Roger Meierc1010922010-11-26 10:17:48 +0000119 g_test_add_func ("/testsimpleserver/SimpleServer", test_server);
120
121 return g_test_run ();
Roger Meier213a6642010-10-27 12:30:11 +0000122}