@@ -10,19 +10,12 @@ https://developers.google.com/open-source/licenses/bsd
10
10
--]] ---- ----------------------------------------------------------------------
11
11
12
12
local upb = require " lupb"
13
- local lunit = require " lunit"
14
13
local upb_test = require " lua.test_pb"
15
14
local test_messages_proto3 = require " google.protobuf.test_messages_proto3_pb"
16
15
local test_messages_proto2 = require " google.protobuf.test_messages_proto2_pb"
17
16
local descriptor = require " google.protobuf.descriptor_pb"
18
17
local empty = require " google.protobuf.empty_pb"
19
18
20
- if _VERSION >= ' Lua 5.2' then
21
- _ENV = lunit .module (" testupb" , " seeall" )
22
- else
23
- module (" testupb" , lunit .testcase , package.seeall )
24
- end
25
-
26
19
function iter_to_array (iter )
27
20
local arr = {}
28
21
for v in iter do
@@ -31,6 +24,36 @@ function iter_to_array(iter)
31
24
return arr
32
25
end
33
26
27
+ function assert_equal (a , b )
28
+ assert (a == b )
29
+ end
30
+
31
+ function assert_not_equal (a , b )
32
+ assert (a ~= b )
33
+ end
34
+
35
+ function assert_nil (x )
36
+ assert (x == nil )
37
+ end
38
+
39
+ function assert_not_nil (x )
40
+ assert (x ~= nil )
41
+ end
42
+
43
+ function assert_true (x )
44
+ assert (x )
45
+ end
46
+
47
+ function assert_error (f )
48
+ assert (not pcall (f ))
49
+ end
50
+
51
+ function assert_error_match (expected , f )
52
+ local status , err = pcall (f )
53
+ assert (not status )
54
+ assert (string.find (err , expected ) ~= nil )
55
+ end
56
+
34
57
function test_def_readers ()
35
58
local m = test_messages_proto3 .TestAllTypesProto3
36
59
assert_equal (" TestAllTypesProto3" , m :name ())
@@ -173,7 +196,7 @@ function test_utf8()
173
196
-- Decoding invalid UTF-8 succeeds in proto2.
174
197
upb .decode (test_messages_proto2 .TestAllTypesProto2 , serialized )
175
198
176
- -- Decoding invalid UTF-8 fails in proto2 .
199
+ -- Decoding invalid UTF-8 fails in proto3 .
177
200
assert_error_match (" Error decoding protobuf" , function ()
178
201
upb .decode (test_messages_proto3 .TestAllTypesProto3 , serialized )
179
202
end )
@@ -207,7 +230,7 @@ function test_string_double_map()
207
230
assert_equal (2.5 , msg2 .map_string_double [" two point five" ])
208
231
end
209
232
210
- function test_string_double_map ()
233
+ function test_packed_repeated ()
211
234
local function fill_msg (msg )
212
235
msg .i32_packed [1 ] = 100
213
236
msg .i32_packed [2 ] = 200
@@ -440,22 +463,6 @@ local numeric_types = {
440
463
},
441
464
}
442
465
443
- function test_utf8 ()
444
- local invalid_utf8 = " \xff "
445
- local proto2_msg = test_messages_proto2 .TestAllTypesProto2 {
446
- optional_string = invalid_utf8 ,
447
- }
448
-
449
- -- As proto2, invalid UTF-8 parses and serializes fine.
450
- local serialized = upb .encode (proto2_msg )
451
- local proto2_msg2 = upb .decode (test_messages_proto2 .TestAllTypesProto2 , serialized )
452
-
453
- -- Decoding as proto3 fails.
454
- assert_error (function ()
455
- upb .decode (test_messages_proto3 .TestAllTypesProto3 , serialized )
456
- end )
457
- end
458
-
459
466
function test_msg_primitives ()
460
467
local msg = test_messages_proto3 .TestAllTypesProto3 {
461
468
optional_int32 = 10 ,
@@ -822,8 +829,33 @@ function test_b9440()
822
829
assert_equal (8 , m .id )
823
830
end
824
831
825
- local stats = lunit .main ()
826
-
827
- if stats .failed > 0 or stats .errors > 0 then
828
- error (" One or more errors in test suite" )
829
- end
832
+ -- Run all tests
833
+ test_def_readers ()
834
+ test_msg_map ()
835
+ test_map_sorting ()
836
+ test_utf8 ()
837
+ test_string_double_map ()
838
+ test_packed_repeated ()
839
+ test_msg_string_map ()
840
+ test_msg_array ()
841
+ test_array_append ()
842
+ test_msg_submsg ()
843
+ test_finalizer ()
844
+ test_msg_primitives ()
845
+ test_string_array ()
846
+ test_numeric_array ()
847
+ test_numeric_map ()
848
+ test_unknown ()
849
+ test_foo ()
850
+ test_descriptor ()
851
+ test_descriptor_error ()
852
+ test_duplicate_enumval ()
853
+ test_duplicate_filename_error ()
854
+ test_encode_skipunknown ()
855
+ test_json_emit_defaults ()
856
+ test_json_locale ()
857
+ test_encode_depth_limit ()
858
+ test_large_field_number ()
859
+ test_timestamp_minutes ()
860
+ test_gc ()
861
+ test_b9440 ()
0 commit comments