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
117
118
119
120
121
122
123
124
|
# -*- Mode: Python -*-
import os
import unittest
from common import gio, glib, gobject
class TestSocket(unittest.TestCase):
def setUp(self):
self.sock = gio.Socket(gio.SOCKET_FAMILY_IPV4,
gio.SOCKET_TYPE_STREAM,
gio.SOCKET_PROTOCOL_TCP)
def test_socket_condition_check(self):
check = self.sock.condition_check(glib.IO_OUT)
self.failUnless(isinstance(check, gobject.GFlags))
self.failUnlessEqual(check, glib.IO_OUT | glib.IO_HUP)
def test_socket_condition_wait(self):
res = self.sock.condition_wait(glib.IO_OUT)
self.failUnless(res)
def tearDown(self):
self.sock.close()
class TestSocketAddress(unittest.TestCase):
def test_socket_address_enumerator_next_async(self):
def callback(enumerator, result):
try:
address = enumerator.next_finish(result)
self.failUnless(isinstance(address, gio.SocketAddress))
finally:
loop.quit()
socket = gio.NetworkAddress("www.pygtk.org", 80)
enumerator = socket.enumerate()
enumerator.next_async(callback)
loop = glib.MainLoop()
loop.run()
class TestSocketListener(unittest.TestCase):
def test_socket_listener_add_address(self):
address = gio.inet_address_new_from_string("127.0.0.1")
inetsock = gio.InetSocketAddress(address, 1024)
listener = gio.SocketListener()
effective = listener.add_address(inetsock, gio.SOCKET_TYPE_STREAM, gio.SOCKET_PROTOCOL_TCP)
self.failUnless(isinstance(effective, gio.InetSocketAddress))
def test_socket_listener_accept(self):
address = gio.inet_address_new_from_string("127.0.0.1")
inetsock = gio.InetSocketAddress(address, 1024)
listener = gio.SocketListener()
listener.add_address(inetsock, gio.SOCKET_TYPE_STREAM, gio.SOCKET_PROTOCOL_TCP)
client = gio.SocketClient()
client.connect_to_host("127.0.0.1:1024", 1024)
connection, source = listener.accept(cancellable=None)
self.failUnless(isinstance(connection, gio.TcpConnection))
def test_socket_listener_accept_socket(self):
address = gio.inet_address_new_from_string("127.0.0.1")
inetsock = gio.InetSocketAddress(address, 1024)
listener = gio.SocketListener()
listener.add_address(inetsock, gio.SOCKET_TYPE_STREAM, gio.SOCKET_PROTOCOL_TCP)
client = gio.SocketClient()
client.connect_to_host("127.0.0.1:1024", 1024)
socket, source = listener.accept_socket(cancellable=None)
self.failUnless(isinstance(socket, gio.Socket))
def test_socket_listener_accept_async(self):
def callback(listener, result):
try:
connection, source = listener.accept_finish(result)
self.failUnless(isinstance(connection, gio.TcpConnection))
finally:
loop.quit()
address = gio.inet_address_new_from_string("127.0.0.1")
inetsock = gio.InetSocketAddress(address, 1024)
listener = gio.SocketListener()
listener.add_address(inetsock,
gio.SOCKET_TYPE_STREAM,
gio.SOCKET_PROTOCOL_TCP)
client = gio.SocketClient()
client.connect_to_host("127.0.0.1:1024", 1024)
listener.accept_async(callback)
loop = glib.MainLoop()
loop.run()
def test_socket_listener_accept_socket_async(self):
def callback(listener, result):
try:
socket, source = listener.accept_socket_finish(result)
self.failUnless(isinstance(socket, gio.Socket))
finally:
loop.quit()
address = gio.inet_address_new_from_string("127.0.0.1")
inetsock = gio.InetSocketAddress(address, 1024)
listener = gio.SocketListener()
listener.add_address(inetsock,
gio.SOCKET_TYPE_STREAM,
gio.SOCKET_PROTOCOL_TCP)
client = gio.SocketClient()
client.connect_to_host("127.0.0.1:1024", 1024)
listener.accept_socket_async(callback)
loop = glib.MainLoop()
loop.run()
|