-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathtc_errors.rb
378 lines (307 loc) · 5.97 KB
/
tc_errors.rb
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
require './test_common'
require 'tempfile'
class TestErrorHandling < Minitest::Test
class EmptyBud
include Bud
end
def test_do_sync_error
b = EmptyBud.new
b.run_bg
3.times {
assert_raises(ZeroDivisionError) {
b.sync_do {
puts 5 / 0
}
}
}
b.stop
end
class IllegalOp
include Bud
state do
table :t1
end
bloom do
t1 < t1 {|t| [t.key + 1, t.val + 1]}
end
end
def test_illegal_op_error
assert_raises(Bud::CompileError) { IllegalOp.new }
end
class IllegalAsyncOp
include Bud
state do
table :t1
end
bloom do
t1 <~ t1 {|x| ["foo"]}
end
end
def test_illegal_async_op
assert_raises(Bud::CompileError) { IllegalAsyncOp.new.tick }
end
class IllegalAsyncLattice
include Bud
state do
lmap :m1
end
bloom do
m1 <~ m1
end
end
def test_illegal_async_lattice
assert_raises(Bud::CompileError) { IllegalAsyncLattice.new.tick }
end
class InsertInBloomBlock
include Bud
state do
table :t1
end
bloom do
t1 << [5, 10]
end
end
def test_insert_in_bloom_error
assert_raises(Bud::CompileError) { InsertInBloomBlock.new }
end
class MissingTable
include Bud
state do
table :t1
end
bloom do
t2 <= t1
end
end
class BadSchemy
include Bud
state do
table :num, ["key"] => []
end
end
def test_bad_schemy
assert_raises(Bud::Error) do
p = BadSchemy.new
p.tick
end
end
class SchemyConflict
include Bud
state do
table :num, [:map] => []
end
end
def test_schemy_conflict
assert_raises(Bud::Error) do
p = SchemyConflict.new
p.tick
end
end
def test_missing_table_error
assert_raises(Bud::CompileError) { MissingTable.new }
end
class PrecedenceError
include Bud
state do
table :foo
table :bar
table :baz
end
bloom do
foo <= baz
# Mistake: <= binds more tightly than "or"
foo <= (bar.first and baz.first) or []
end
end
def test_precedence_error
assert_raises(Bud::CompileError) { PrecedenceError.new }
end
class VarShadowError
include Bud
state do
table :t1
table :t2
end
bloom do
temp :t2 <= (t1 * t1)
end
end
def test_var_shadow_error
assert_raises(Bud::CompileError) { VarShadowError.new }
end
def test_bloom_block_error
defn = "class BloomBlockError\ninclude Bud\nbloom \"blockname\" do\nend\n\nend\n"
assert_raises(Bud::CompileError) {eval(defn)}
end
def test_dup_blocks
src = "class DupBlocks\ninclude Bud\nbloom :foo do\nend\nbloom :foo do\nend\nend\n"
f = Tempfile.new("dup_blocks.rb")
f.write(src)
f.close
assert_raises(Bud::CompileError) { load f.path }
end
class EvalError
include Bud
state do
scratch :t1
scratch :t2
end
bloom do
t2 <= t1 { |t| [t.key, 5 / t.val]}
end
end
def test_eval_error
e = EvalError.new
e.run_bg
assert_raises(ZeroDivisionError) {
e.sync_do {
e.t1 <+ [[5, 0]]
}
}
e.stop
end
class BadGroupingCols
include Bud
state do
table :t1
end
bootstrap do
t1 << [1,1]
end
bloom do
temp :t2 <= t1.group(["key"], min(:val))
end
end
def test_bad_grouping_cols
p = BadGroupingCols.new
assert_raises(Bud::Error) {p.tick}
end
class BadJoinTabs
include Bud
state do
table :t1
table :t2
table :t3
end
bootstrap do
t1 << [1,1]
t2 << [2,2]
end
bloom do
temp :out <= (t1*t2).pairs(t3.key => t2.val)
end
end
def test_bad_join_tabs
p = BadJoinTabs.new
assert_raises(Bud::CompileError) {p.tick}
end
class BadNextChannel
include Bud
state do
channel :c1
end
bloom do
c1 <+ [["doh"]]
end
end
def test_bad_next_channel
p = BadNextChannel.new
assert_raises(Bud::CompileError) {p.tick}
end
class BadStdio
include Bud
bloom do
stdio <= [["phooey"]]
end
end
def test_bad_stdio
p = BadStdio.new
assert_raises(Bud::CompileError) {p.tick}
end
class BadFileReader1
include Bud
state do
file_reader :fd, "/tmp/foo#{Process.pid}"
end
bloom do
fd <= [['no!']]
end
end
def test_bad_file_reader_1
File.open("/tmp/foo#{Process.pid}", 'a')
p = BadFileReader1.new
assert_raises(Bud::CompileError){p.tick}
end
class BadFileReader2
include Bud
state do
file_reader :fd, "/tmp/foo#{Process.pid}"
end
bloom do
fd <+ [['no!']]
end
end
def test_bad_file_reader_2
File.open("/tmp/foo#{Process.pid}", 'a')
assert_raises(Bud::CompileError) { BadFileReader2.new.tick}
end
class BadFileReader3
include Bud
state do
file_reader :fd, "/tmp/foo#{Process.pid}"
end
bloom do
fd <~ [['no!']]
end
end
def test_bad_file_reader_3
File.open("/tmp/foo#{Process.pid}", 'a')
assert_raises(Bud::CompileError) { BadFileReader3.new.tick}
end
class BadOp
include Bud
state do
table :foo
table :bar
end
bloom do
foo + bar
end
end
def test_bad_op
assert_raises(Bud::CompileError) { BadOp.new }
end
class BadTerminal
include Bud
state {terminal :joeio}
bloom do
joeio <~ [["hi"]]
end
end
def test_bad_terminal
assert_raises(Bud::Error) { BadTerminal.new }
end
module SyntaxBase
state do
table :foo
table :bar
end
end
class SyntaxTest1
include Bud
include SyntaxBase
bloom :foobar do
foo = bar
end
end
def test_parsetime_error
begin
SyntaxTest1.new
assert(false)
rescue
assert_equal(Bud::CompileError, $!.class)
# fragile assertion? (whitespace etc)
assert_equal("illegal operator: '=' in rule block \"__bloom__foobar\"\nCode: foo = bar", $!.to_s)
end
end
end