-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathproto-lisp-test.lisp
315 lines (270 loc) · 12 KB
/
proto-lisp-test.lisp
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
;;;; Copyright 2008 Google Inc. All Rights Reserved
;;;; Redistribution and use in source and binary forms, with or without
;;;; modification, are permitted provided that the following conditions are
;;;; met:
;;;; * Redistributions of source code must retain the above copyright
;;;; notice, this list of conditions and the following disclaimer.
;;;; * Redistributions in binary form must reproduce the above
;;;; copyright notice, this list of conditions and the following disclaimer
;;;; in the documentation and/or other materials provided with the
;;;; distribution.
;;;; * Neither the name of Google Inc. nor the names of its
;;;; contributors may be used to endorse or promote products derived from
;;;; this software without specific prior written permission.
;;;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
;;;; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
;;;; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
;;;; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
;;;; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
;;;; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
;;;; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
;;;; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
;;;; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
;;;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
;;;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;;; Author: Robert Brown <[email protected]>
;;;; Protobuf tests
(in-package #:common-lisp-user)
(defpackage #:proto-lisp-test
(:documentation "Test the Lisp implementation of protocol buffers.")
(:use #:common-lisp
#:com.google.base
#:hu.dwim.stefil
#:protobuf-test-config)
(:export #:test-proto-lisp))
(in-package #:proto-lisp-test)
(defsuite (test-proto-lisp :in root-suite) ()
(run-child-tests))
(in-suite test-proto-lisp)
(defconst +golden-file-name+ (merge-pathnames "golden" *base-directory*)
"Pathname of a file containing correct protocol buffer data.")
(defconst +test-file-name+ (merge-pathnames "test-output-file" *base-directory*)
"Pathname of file to which we write protocol buffer data.")
(defun verify-string-field (string-field expected)
(is (string= (pb:string-value string-field) expected))
(is (equalp (pb:utf8-string-value string-field) (string-to-utf8-octets expected))))
(deftest correctness-tests ()
;; Check that required strings are cleared by CLEAR.
(let ((p (make-instance 'pb:test-protocol)))
(verify-string-field (pb:zero p) "")
(setf (pb:zero p) (pb:string-field "x"))
(verify-string-field (pb:zero p) "x")
(pb:clear p)
(verify-string-field (pb:zero p) ""))
;; Check that optional strings are set to their default value by CLEAR.
(let ((p (make-instance 'pb:test-protocol)))
(verify-string-field (pb:opt-string p) "opt")
(setf (pb:opt-string p) (pb:string-field "x"))
(verify-string-field (pb:opt-string p) "x")
(pb:clear p)
(verify-string-field (pb:opt-string p) "opt")
(setf (pb:opt-string p) (pb:string-field "x"))
(pb:clear p)
(verify-string-field (pb:opt-string p) "opt")
(setf (pb:opt-string p) (pb:string-field "x"))
(pb:clear-opt-string p)
(verify-string-field (pb:opt-string p) "opt"))
(values))
(deftest test-pb-write ()
(let ((p (make-instance 'pb:test1proto)))
;; verify enum values
(is (= pb:+test1proto-enum-code-foo+ 0))
(is (= pb:+test1proto-enum-code-bar+ 1))
(is (= pb:+test1proto-enum-code-baz+ 2))
;; default settings
(is (= (pb:d-int32 p) 12))
(verify-string-field (pb:d-string p) "foo")
(is (eq (pb:d-bool p) t))
;; test is-initialized
(is (not (pb:is-initialized p)))
(setf (pb:o-a p) 20)
(is (pb:is-initialized p))
;; unrepeated things
(setf (pb:u-int32 p) 20)
(setf (pb:u-int64 p) -20)
(setf (pb:u-uint64 p) 12345678900)
(setf (pb:u-fixed32 p) 100)
(setf (pb:u-fixed64 p) 12345678900)
(setf (pb:u-bool p) t)
(setf (pb:u-float p) 3.14159f0)
(setf (pb:u-double p) 3.14159265d0)
(setf (pb:u-string p) (pb:string-field "foo"))
(setf (pb:u-vardata p) (pb:string-field "bar"))
(setf (pb:foo (pb:u-msg p)) 12)
;; repeated things
(vector-push-extend -20 (pb:r-int32 p))
(vector-push-extend -30 (pb:r-int32 p))
(vector-push-extend 20 (pb:r-int64 p))
(vector-push-extend 30 (pb:r-int64 p))
(vector-push-extend 12345678900 (pb:r-uint64 p))
(vector-push-extend 98765432100 (pb:r-uint64 p))
(vector-push-extend 12345 (pb:r-fixed32 p))
(vector-push-extend 23456 (pb:r-fixed32 p))
(vector-push-extend 12345678900 (pb:r-fixed64 p))
(vector-push-extend 98765432100 (pb:r-fixed64 p))
(vector-push-extend nil (pb:r-bool p))
(vector-push-extend t (pb:r-bool p))
(vector-push-extend 1.5f0 (pb:r-float p))
(vector-push-extend -1.75f0 (pb:r-float p))
(vector-push-extend 3.3d0 (pb:r-double p))
(vector-push-extend -1.2d0 (pb:r-double p))
(vector-push-extend (pb:string-field "foo") (pb:r-string p))
(vector-push-extend (pb:string-field "bar") (pb:r-string p))
(vector-push-extend (pb:string-field "ping") (pb:r-vardata p))
(vector-push-extend (pb:string-field "pong") (pb:r-vardata p))
(let ((x (make-instance 'pb:test1msg))
(y (make-instance 'pb:test1msg)))
(setf (pb:foo x) 12)
(setf (pb:foo y) 13)
(vector-push-extend x (pb:r-msg p))
(vector-push-extend y (pb:r-msg p)))
(let ((x (make-instance 'pb:test1proto-test-group1))
(y (make-instance 'pb:test1proto-test-group2))
(z (make-instance 'pb:test1proto-test-group2)))
(setf (pb:a x) 80)
(setf (pb:b y) 100)
(setf (pb:b z) 130)
(vector-push-extend x (pb:test-group1 p))
(vector-push-extend y (pb:test-group2 p))
(vector-push-extend z (pb:test-group2 p)))
;; int32 tests
(loop for x in (list (1- (ash 1 31)) (- (ash 1 31)) 1 0 -1)
do (vector-push-extend x (pb:r-int32 p)))
;; int64 tests
(loop for x in (list (1- (ash 1 63)) (- (ash 1 63)) 1 0 -1)
do (vector-push-extend x (pb:r-int64 p)))
;; fixed32 tests
(loop for x in (list #xffffffff (1- (ash 1 31)) 0 1)
do (vector-push-extend x (pb:r-fixed32 p)))
;; fixed64 tests
(loop for x in (list #xffffffffffffffff (1- (ash 1 63)) 0 1)
do (vector-push-extend x (pb:r-fixed64 p)))
;; uint64 tests
(loop for x in (list (1- (ash 1 64)) (1- (ash 1 63)) 0 1)
do (vector-push-extend x (pb:r-uint64 p)))
;; write buffer to a file
(let ((size (pb:octet-size p)))
(let* ((output-buffer (make-octet-vector size))
(end (pb:serialize p output-buffer 0 size)))
(is (= end size))
(with-open-file (output-stream +test-file-name+ :direction :output
:if-exists :supersede :element-type 'unsigned-byte)
(write-sequence output-buffer output-stream)))
;; check against the golden data
(with-open-file (golden-input +golden-file-name+ :direction :input
:element-type 'unsigned-byte)
(is (= (file-length golden-input) size))
(with-open-file (test-input +test-file-name+ :direction :input
:element-type 'unsigned-byte)
(is (= (file-length test-input) size))
(let ((golden-buffer (make-octet-vector size))
(test-buffer (make-octet-vector size)))
(read-sequence golden-buffer golden-input)
(read-sequence test-buffer test-input)
(is (equalp golden-buffer test-buffer))))))
;; clean up
(delete-file +test-file-name+)))
(defun test-repeated (value golden)
(let ((golden-size (length golden)))
(is (= (length value) golden-size))
(loop for v across value
for g in golden
do (cond ((stringp g) (is (string= (pb:string-value v) g)))
((vectorp g)
(cond ((stringp (aref g 0))
(is (= (length v) (length g)))
(dotimes (i (length g))
(is (string= (pb:string-value (aref v i)) (aref g i)))))
(t (is (equalp v g)))))
(t (is (eql v g)))))))
(deftest test-pb-read ()
(let ((p (make-instance 'pb:test1proto)))
(with-open-file (golden-input +golden-file-name+ :direction :input
:element-type 'unsigned-byte)
(let* ((size (file-length golden-input))
(buffer (make-octet-vector size)))
(read-sequence buffer golden-input)
(is (= (pb:merge-from-array p buffer 0 size) size))))
;; unrepeated things
(is (pb:has-o-a p))
(is (= (pb:o-a p) 20))
(is (not (pb:has-o-b p)))
(is (= (pb:u-int32 p) 20))
(is (= (pb:u-int64 p) -20))
(is (= (pb:u-uint64 p) 12345678900))
(is (= (pb:u-fixed32 p) 100))
(is (= (pb:u-fixed64 p) 12345678900))
(is (eq (pb:u-bool p) t))
(is (= (pb:u-float p) 3.14159f0))
(is (= (pb:u-double p) 3.14159265d0))
;; Lisp implementation omits "has" function for embedded messages.
;;(is (has-u-msg p))
(is (= (pb:foo (pb:u-msg p)) 12))
;; repeated things
(test-repeated (pb:r-int32 p)
(list -20 -30 (1- (ash 1 31)) (- (ash 1 31)) 1 0 -1))
(test-repeated (pb:r-int64 p)
(list 20 30 (1- (ash 1 63)) (- (ash 1 63)) 1 0 -1))
(test-repeated (pb:r-uint64 p)
(list 12345678900 98765432100
(1- (ash 1 64)) (1- (ash 1 63))
0 1))
(test-repeated (pb:r-fixed32 p)
(list 12345 23456 #xffffffff (1- (ash 1 31)) 0 1))
(test-repeated (pb:r-fixed64 p)
(list 12345678900 98765432100 #xffffffffffffffff
(1- (ash 1 63)) 0 1))
(test-repeated (pb:r-bool p) '(nil t))
(test-repeated (pb:r-float p) '(1.5f0 -1.75f0))
(test-repeated (pb:r-double p) '(3.3d0 -1.2d0))
(test-repeated (pb:r-string p) '("foo" "bar"))
(test-repeated (pb:r-vardata p) '("ping" "pong"))
(is (= (length (pb:r-msg p)) 2))
(is (= (pb:foo (aref (pb:r-msg p) 0)) 12))
(is (= (pb:foo (aref (pb:r-msg p) 1)) 13))
;; groups
(is (= (length (pb:test-group1 p)) 1))
(is (= (pb:a (aref (pb:test-group1 p) 0)) 80))
(is (= (length (pb:test-group2 p)) 2))
(is (= (pb:b (aref (pb:test-group2 p) 0)) 100))
(is (= (pb:b (aref (pb:test-group2 p) 1)) 130))
;; default settings
(is (= (pb:d-int32 p) 12))
(verify-string-field (pb:d-string p) "foo")
(is (eq (pb:d-bool p) t))))
(defun parser-timing (iterations)
(let ((src (make-instance 'pb:time-protocol)))
(dotimes (i 1000)
(let ((new (make-instance 'pb:time-protocol-g)))
(setf (pb:v1 new) 100)
(setf (pb:v2 new) 80)
(vector-push-extend new (pb:g src))))
(let* ((buffer (make-octet-vector 10000))
;; XXXXXXXXXX
(size (pb:serialize src buffer 0 10000)))
(time (dotimes (i iterations)
(let ((msg (make-instance 'pb:time-protocol)))
(pb:merge-from-array msg buffer 0 size)))))))
;; XXXXXXXXXXXXXXXXXXXX use parser-timing here
;; (defun output-timing ())
;; (defun test-copy-and-merge ())
;; (defun auto-tests ())
;; (defun test (&key
;; (time-raw-parse nil)
;; (time-auto-parse nil)
;; (time-raw-output nil)
;; (time-auto-output nil)
;; (iterations 10000))
;; (if (or time-raw-parse time-auto-parse)
;; (parser-timing iterations)
;; (if (or time-raw-output time-auto-output)
;; (output-timing)
;; (progn (correctness-tests)
;; (test-pb-write)
;; (test-pb-read)
;; (test-copy-and-merge)
;; ;; XXXX initialize random number generator ??
;; (auto-tests)
;; (print "PASS"))))
;; (values))
;; XXXXXXXXXXXXXXXXXXXX add more test code here