GDBus tests: factor out TestIOStream, test_pipe and test_bidi_pipe
[platform/upstream/glib.git] / gio / tests / test-io-stream.h
1 /* Simple I/O stream. This is a utility module for tests, not a test.
2  *
3  * Copyright © 2008-2010 Red Hat, Inc.
4  * Copyright © 2011 Nokia Corporation
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General
17  * Public License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Author: David Zeuthen <davidz@redhat.com>
22  * Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
23  */
24
25 #ifndef TEST_IO_STREAM_H
26 #define TEST_IO_STREAM_H
27
28 #include <gio/gio.h>
29
30 typedef struct
31 {
32   GIOStream parent_instance;
33   GInputStream *input_stream;
34   GOutputStream *output_stream;
35 } TestIOStream;
36
37 typedef struct
38 {
39   GIOStreamClass parent_class;
40 } TestIOStreamClass;
41
42 GType test_io_stream_get_type (void) G_GNUC_CONST;
43
44 #define TEST_TYPE_IO_STREAM  (test_io_stream_get_type ())
45 #define TEST_IO_STREAM(o)    (G_TYPE_CHECK_INSTANCE_CAST ((o), \
46                               TEST_TYPE_IO_STREAM, TestIOStream))
47 #define TEST_IS_IO_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \
48                                                           TEST_TYPE_IO_STREAM))
49
50 GIOStream *test_io_stream_new (GInputStream  *input_stream,
51                                GOutputStream *output_stream);
52
53 #endif /* guard */