Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 1 | /* |
| 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 | |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 20 | |
| 21 | #include <string.h> |
| 22 | #include <fcntl.h> |
| 23 | #include <errno.h> |
| 24 | #include <unistd.h> |
| 25 | |
| 26 | #include <glib.h> |
| 27 | #include <glib/gstdio.h> |
| 28 | |
| 29 | #include <thrift/c_glib/transport/thrift_transport.h> |
| 30 | #include <thrift/c_glib/transport/thrift_fd_transport.h> |
| 31 | |
| 32 | static const gchar TEST_DATA[12] = "abcde01234!"; |
| 33 | |
| 34 | static void |
| 35 | test_create_and_destroy (void) |
| 36 | { |
| 37 | GObject *object; |
| 38 | object = g_object_new (THRIFT_TYPE_FD_TRANSPORT, "fd", -1, NULL); |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 39 | g_assert (object != NULL); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 40 | g_object_unref (object); |
| 41 | } |
| 42 | |
| 43 | static void |
| 44 | test_open_and_close (void) |
| 45 | { |
| 46 | ThriftTransport *transport; |
| 47 | ThriftTransportClass *klass; |
| 48 | GError *error; |
| 49 | gint fd; |
| 50 | gchar *filename; |
| 51 | |
| 52 | error = NULL; |
| 53 | filename = NULL; |
| 54 | |
| 55 | fd = g_file_open_tmp (NULL, &filename, &error); |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 56 | g_assert (fd >= 0); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 57 | |
| 58 | transport = THRIFT_TRANSPORT (g_object_new (THRIFT_TYPE_FD_TRANSPORT, |
| 59 | "fd", fd, |
| 60 | NULL)); |
| 61 | klass = THRIFT_TRANSPORT_GET_CLASS (transport); |
| 62 | |
| 63 | /* open is no-op */ |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 64 | g_assert (klass->is_open (transport)); |
| 65 | g_assert (klass->peek (transport, &error)); |
| 66 | g_assert (klass->open (transport, &error)); |
| 67 | g_assert (klass->is_open (transport)); |
| 68 | g_assert (klass->peek (transport, &error)); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 69 | |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 70 | g_assert (klass->close (transport, &error)); |
| 71 | g_assert (! klass->open (transport, &error)); |
| 72 | g_assert (! klass->is_open (transport)); |
| 73 | g_assert (! klass->peek (transport, &error)); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 74 | |
| 75 | /* already closed */ |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 76 | g_assert (close (fd) != 0); |
| 77 | g_assert (errno == EBADF); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 78 | |
| 79 | g_object_unref (transport); |
| 80 | |
| 81 | g_remove (filename); |
| 82 | g_free (filename); |
| 83 | |
| 84 | /* test bad fd */ |
| 85 | transport = THRIFT_TRANSPORT (g_object_new (THRIFT_TYPE_FD_TRANSPORT, |
| 86 | "fd", -1, |
| 87 | NULL)); |
| 88 | klass = THRIFT_TRANSPORT_GET_CLASS (transport); |
| 89 | |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 90 | g_assert (! klass->is_open (transport)); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 91 | error = NULL; |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 92 | g_assert (! klass->peek (transport, &error)); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 93 | error = NULL; |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 94 | g_assert (! klass->open (transport, &error)); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 95 | error = NULL; |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 96 | g_assert (! klass->close (transport, &error)); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 97 | |
| 98 | g_object_unref (transport); |
| 99 | } |
| 100 | |
| 101 | static void |
| 102 | test_read_and_write (void) |
| 103 | { |
| 104 | gchar out_buf[8]; |
| 105 | gchar *b; |
| 106 | gint want, got; |
| 107 | ThriftTransport *transport; |
| 108 | ThriftTransportClass *klass; |
| 109 | GError *error; |
| 110 | gint fd; |
| 111 | gchar *filename; |
| 112 | |
| 113 | error = NULL; |
| 114 | filename = NULL; |
| 115 | |
| 116 | fd = g_file_open_tmp (NULL, &filename, &error); |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 117 | g_assert (fd >= 0); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 118 | |
| 119 | /* write */ |
| 120 | transport = THRIFT_TRANSPORT (g_object_new (THRIFT_TYPE_FD_TRANSPORT, |
| 121 | "fd", fd, |
| 122 | NULL)); |
| 123 | klass = THRIFT_TRANSPORT_GET_CLASS (transport); |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 124 | g_assert (klass->is_open (transport)); |
| 125 | g_assert (klass->write (transport, (gpointer) TEST_DATA, 11, &error)); |
| 126 | g_assert (klass->flush (transport, &error)); |
| 127 | g_assert (klass->close (transport, &error)); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 128 | g_object_unref (transport); |
| 129 | |
| 130 | /* read */ |
| 131 | fd = open(filename, O_RDONLY, S_IRUSR | S_IWUSR); |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 132 | g_assert (fd >= 0); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 133 | |
| 134 | transport = THRIFT_TRANSPORT (g_object_new (THRIFT_TYPE_FD_TRANSPORT, |
| 135 | "fd", fd, |
| 136 | NULL)); |
| 137 | klass = THRIFT_TRANSPORT_GET_CLASS (transport); |
| 138 | |
| 139 | memset(out_buf, 0, 8); |
| 140 | b = out_buf; |
| 141 | want = 7; |
| 142 | while (want > 0) { |
| 143 | got = klass->read (transport, (gpointer) b, want, &error); |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 144 | g_assert (got > 0 && got <= want); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 145 | b += got; |
| 146 | want -= got; |
| 147 | } |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 148 | g_assert (memcmp (out_buf, TEST_DATA, 7) == 0); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 149 | |
| 150 | memset(out_buf, 0, 8); |
| 151 | b = out_buf; |
| 152 | want = 4; |
| 153 | while (want > 0) { |
| 154 | got = klass->read (transport, (gpointer) b, want, &error); |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 155 | g_assert (got > 0 && got <= want); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 156 | b += got; |
| 157 | want -= got; |
| 158 | } |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 159 | g_assert (memcmp (out_buf, TEST_DATA + 7, 4) == 0); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 160 | |
James E. King, III | 43f4bf2 | 2017-10-28 12:54:02 -0400 | [diff] [blame] | 161 | g_assert (klass->close (transport, &error)); |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 162 | g_object_unref (transport); |
| 163 | |
| 164 | /* clean up */ |
| 165 | |
| 166 | g_remove (filename); |
| 167 | g_free (filename); |
| 168 | } |
| 169 | |
| 170 | int |
| 171 | main (int argc, char *argv[]) |
| 172 | { |
| 173 | #if (!GLIB_CHECK_VERSION (2, 36, 0)) |
| 174 | g_type_init (); |
| 175 | #endif |
| 176 | |
| 177 | g_test_init (&argc, &argv, NULL); |
| 178 | |
| 179 | g_test_add_func ("/testfdtransport/CreateAndDestroy", test_create_and_destroy); |
| 180 | g_test_add_func ("/testfdtransport/OpenAndClose", test_open_and_close); |
| 181 | g_test_add_func ("/testfdtransport/ReadAndWrite", test_read_and_write); |
| 182 | |
| 183 | return g_test_run (); |
| 184 | } |