File: test_stream.rb

package info (click to toggle)
ruby-libvirt 0.8.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 832 kB
  • sloc: ansic: 8,052; ruby: 2,541; makefile: 6
file content (171 lines) | stat: -rw-r--r-- 4,976 bytes parent folder | download | duplicates (3)
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#!/usr/bin/ruby

# Test the stream methods the bindings support

$: << File.dirname(__FILE__)

require 'libvirt'
require 'test_utils.rb'

set_test_object("stream")

conn = Libvirt::open(URI)

# TESTGROUP: stream.send
st = conn.stream

expect_too_many_args(st, "send", 1, 2)
expect_too_few_args(st, "send")
expect_invalid_arg_type(st, "send", 1)
expect_invalid_arg_type(st, "send", nil)
expect_invalid_arg_type(st, "send", [])
expect_invalid_arg_type(st, "send", {})

# FIXME: we need to setup a proper stream for this to work
#expect_success(st, "buffer arg", "send", buffer)

st.free

# TESTGROUP: stream.recv
st = conn.stream

expect_too_many_args(st, "recv", 1, 2)
expect_too_few_args(st, "recv")
expect_invalid_arg_type(st, "recv", nil)
expect_invalid_arg_type(st, "recv", 'foo')
expect_invalid_arg_type(st, "recv", [])
expect_invalid_arg_type(st, "recv", {})

# FIXME: we need to setup a proper stream for this to work
#expect_success(st, "bytes arg", "recv", 12)

st.free

# TESTGROUP: stream.sendall
st = conn.stream

# equivalent to expect_too_many_args
begin
  st.sendall(1, 2) {|x,y| x = y}
rescue NoMethodError
  puts_skipped "#{$test_object}.sendall does not exist"
rescue ArgumentError => e
  puts_ok "#{$test_object}.sendall too many args threw #{ArgumentError.to_s}"
rescue => e
  puts_fail "#{$test_object}.sendall too many args expected to throw #{ArgumentError.to_s}, but instead threw #{e.class.to_s}: #{e.to_s}"
else
  puts_fail "#{$test_object}.sendall too many args expected to throw #{ArgumentError.to_s}, but threw nothing"
end

expect_fail(st, RuntimeError, "no block given", "sendall")

# FIXME: we need to setup a proper stream for this to work
#st.sendall {|opaque,nbytes| return opaque}

st.free

# TESTGROUP: stream.recvall
st = conn.stream

# equivalent to expect_too_many_args
begin
  st.recvall(1, 2) {|x,y| x = y}
rescue NoMethodError
  puts_skipped "#{$test_object}.recvall does not exist"
rescue ArgumentError => e
  puts_ok "#{$test_object}.recvall too many args threw #{ArgumentError.to_s}"
rescue => e
  puts_fail "#{$test_object}.recvall too many args expected to throw #{ArgumentError.to_s}, but instead threw #{e.class.to_s}: #{e.to_s}"
else
  puts_fail "#{$test_object}.recvall too many args expected to throw #{ArgumentError.to_s}, but threw nothing"
end

expect_fail(st, RuntimeError, "no block given", "recvall")

# FIXME: we need to setup a proper stream for this to work
#st.recvall {|data,opaque| return opaque}

st.free

# TESTGROUP: stream.event_add_callback
st_event_callback_proc = lambda {|stream,events,opaque|
}

st = conn.stream

expect_too_many_args(st, "event_add_callback", 1, 2, 3, 4)
expect_too_few_args(st, "event_add_callback")
expect_too_few_args(st, "event_add_callback", 1)
expect_invalid_arg_type(st, "event_add_callback", nil, st_event_callback_proc)
expect_invalid_arg_type(st, "event_add_callback", 'foo', st_event_callback_proc)
expect_invalid_arg_type(st, "event_add_callback", [], st_event_callback_proc)
expect_invalid_arg_type(st, "event_add_callback", {}, st_event_callback_proc)
expect_invalid_arg_type(st, "event_add_callback", 1, nil)
expect_invalid_arg_type(st, "event_add_callback", 1, 'foo')
expect_invalid_arg_type(st, "event_add_callback", 1, 1)
expect_invalid_arg_type(st, "event_add_callback", 1, [])
expect_invalid_arg_type(st, "event_add_callback", 1, {})

# FIXME: I get "this function is not support by the connection driver"
#expect_success(st, "events and callback arg", "event_add_callback", Libvirt::Stream::EVENT_READABLE, st_event_callback_proc)
#st.event_remove_callback

st.free

# TESTGROUP: stream.event_update_callback
st = conn.stream

expect_too_many_args(st, "event_update_callback", 1, 2)
expect_too_few_args(st, "event_update_callback")
expect_invalid_arg_type(st, "event_update_callback", nil)
expect_invalid_arg_type(st, "event_update_callback", 'foo')
expect_invalid_arg_type(st, "event_update_callback", [])
expect_invalid_arg_type(st, "event_update_callback", {})

# FIXME: we would need to get st.event_add_callback working to get this working
#expect_success(st, "events arg", "event_update_callback", Libvirt::Stream::EVENT_WRITABLE)

st.free

# TESTGROUP: stream.remove_callback
st = conn.stream

expect_too_many_args(st, "event_remove_callback", 1)

# FIXME: we would need to get st.event_add_callback working to get this working
#expect_success(st, "no arg", "event_remove_callback")

st.free

# TESTGROUP: stream.finish
st = conn.stream

expect_too_many_args(st, "finish", 1)

# FIXME: I get "this function is not support by the connection driver"
#expect_success(st, "no arg", "finish")

st.free

# TESTGROUP: stream.abort
st = conn.stream

expect_too_many_args(st, "abort", 1)

# FIXME: I get "this function is not support by the connection driver"
#expect_success(st, "no arg", "abort")

st.free

# TESTGROUP: stream.abort
st = conn.stream

expect_too_many_args(st, "free", 1)

expect_success(st, "no arg", "free")

# END TESTS

conn.close

finish_tests