File: io-qap.t

package info (click to toggle)
libstatistics-r-io-perl 1.0002-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,824 kB
  • sloc: perl: 10,895; makefile: 2
file content (582 lines) | stat: -rw-r--r-- 24,538 bytes parent folder | download
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
#!perl -T
use 5.010;
use strict;
use warnings FATAL => 'all';

use Test::More tests => 54;
use Test::Fatal;

use Statistics::R::IO::Parser qw(:all);
use Statistics::R::IO::ParserState;
use Statistics::R::IO::QapEncoding qw(:all);

use lib 't/lib';
use ShortDoubleVector;
use TestCases;


sub check_qap {
    my ($file, $expected, $message) = @_;
    my $filename = $file . '.qap';
    
    open (my $f, $filename) or die $! . " $filename";
    binmode $f;
    my ($data, $rc) = '';
    while ($rc = read($f, $data, 8192, length $data)) {}
    die $! unless defined $rc;
    
    subtest 'qap - ' . $message => sub {
        plan tests => 2;
        
        my ($actual, $state) = @{ decode($data) };
        ## NOTE: I'm switching the order of comparisons to ensure
        ## ShortDoubleVector's 'eq' overload is used
        is($expected, $actual, $message) or diag explain $actual;
        ok($state->eof, $message . ' - parse complete')
    }
}


sub check_padding {
    my ($data, $expected, $message) = @_;
    subtest 'padding - ' . $message => sub {
        plan tests => 2;
        
        my ($value, $state) = @{ decode($data) };
        
        is($value, $expected, $message) or diag explain $value;
        ok($state->eof, $message . ' - parse complete')

    }
}


subtest 'integer vectors' => sub {
    plan tests => 2;
    
    ## serialize 1:3, XDR: true
    check_qap('t/data/noatt-123l',
              Statistics::R::REXP::Integer->new([ 1, 2, 3 ]),
              'int vector no atts');

    ## serialize a=1L, b=2L, c=3L, XDR: true
    check_qap('t/data/abc-123l',
              Statistics::R::REXP::Integer->new(
                  elements => [ 1, 2, 3 ],
                  attributes => {
                      names => Statistics::R::REXP::Character->new(['a', 'b', 'c'])
                  }),
              'int vector names att');
    
    # ## handling of negative integer vector length
    # like(exception {
    #     unserialize("\x58\x0a\0\0\0\2\0\3\0\2\0\2\3\0\0\0\0\x0d\xff\xff\xff\xff" .
    #                 "\0\0\0\0" . "\0\0\0\1")
    #      }, qr/TODO: Long vectors are not supported/, 'long length');

    # like(exception {
    #     unserialize("\x58\x0a\0\0\0\2\0\3\0\2\0\2\3\0\0\0\0\x0d\xff\xff\xff\x0")
    #      }, qr/Negative length/, 'negative length');
};


subtest 'double vectors' => sub {
    plan tests => 2;
    
    ## serialize 1:3, XDR: true
    check_qap('t/data/noatt-123456',
              ShortDoubleVector->new([ 1234.56 ]),
              'double vector no atts');

    ## serialize foo=1234.56, XDR: true
    check_qap('t/data/foo-123456',
              ShortDoubleVector->new(
                  elements => [ 1234.56 ],
                  attributes => {
                      names => Statistics::R::REXP::Character->new(['foo'])
                  }),
              'double vector names att');
};


subtest 'character vectors' => sub {
    plan tests => 3;

    ## serialize letters[1:3], XDR: true
    check_qap('t/data/noatt-abc',
              Statistics::R::REXP::Character->new([ 'a', 'b', 'c' ]),
              'character vector no atts');
    ## serialize A='a', B='b', C='c', XDR: true
    check_qap('t/data/ABC-abc',
              Statistics::R::REXP::Character->new(
                  elements => [ 'a', 'b', 'c' ],
                  attributes => {
                      names => Statistics::R::REXP::Character->new(['A', 'B', 'C'])
                  }),
              'character vector names att');

    check_padding("\x0a\x0c\0\0\x22\x08\0\0\x61\0\x62\0\x63\0\1\1",
                  Statistics::R::REXP::Character->new(['a', 'b', 'c']),
                  'c("a", "b", "c")');
};


subtest 'raw vectors' => sub {
    plan tests => 4;
    
    ## serialize as.raw(c(1:3, 255, 0), XDR: true
    check_qap('t/data/noatt-raw',
              Statistics::R::REXP::Raw->new([ 1, 2, 3, 255, 0 ]),
              'raw vector');
    
    check_padding("\x0a\x0c\0\0\x25\x08\0\0\1\0\0\0\x78\0\0\0",
                  Statistics::R::REXP::Raw->new([120]),
                  'charToRaw("x")');
    
    check_padding("\x0a\x0c\0\0\x25\x08\0\0\3\0\0\0\x66\x6f\x6f\0",
                  Statistics::R::REXP::Raw->new([102, 111, 111]),
                  'charToRaw("foo")');
    
    check_padding("\x0a\x0c\0\0\x25\x08\0\0\4\0\0\0\x66\x72\x65\x64",
                  Statistics::R::REXP::Raw->new([102, 114, 101, 100]),
                  'charToRaw("fred")');
};


subtest 'logical vectors' => sub {
    plan tests => 5;
    
    check_qap('t/data/noatt-true',
              Statistics::R::REXP::Logical->new([ 1 ]),
              'logical vector - singleton');
    
    check_qap('t/data/noatt-tfftf',
              Statistics::R::REXP::Logical->new([ 1, 0, 0, 1, 0 ]),
              'logical vector');
    
    check_qap('t/data/ABCDE-tfftf',
              Statistics::R::REXP::Logical->new(
                  elements => [ 1, 0, 0, 1, 0 ],
                  attributes => {
                      names => Statistics::R::REXP::Character->new(['A', 'B', 'C', 'D', 'E'])
                  }),
              'logical vector names att');
    
    check_padding("\x0a\x0c\0\0\x24\x08\0\0\1\0\0\0\1\xff\xff\xff",
                  Statistics::R::REXP::Logical->new([1]),
                  'TRUE');
    
    check_padding("\x0a\x0c\0\0\x24\x08\0\0\4\0\0\0\1\0\0\1",
                  Statistics::R::REXP::Logical->new([1, 0, 0, 1]),
                  'c(TRUE, FALSE, FALSE, TRUE)');
};


subtest 'generic vector (list)' => sub {
    plan tests => 2;
    
    ## serialize list(1:3, list('a', 'b', 11), 'foo'), XDR: true
    check_qap('t/data/noatt-list',
              Statistics::R::REXP::List->new([
                  Statistics::R::REXP::Integer->new([ 1, 2, 3]),
                  Statistics::R::REXP::List->new([
                      Statistics::R::REXP::Character->new(['a']),
                      Statistics::R::REXP::Character->new(['b']),
                      ShortDoubleVector->new([11]) ]),
                  Statistics::R::REXP::Character->new(['foo']) ]),
              'generic vector no atts');

    ## serialize list(foo=1:3, list('a', 'b', 11), bar='foo'), XDR: true
    check_qap('t/data/foobar-list',
              Statistics::R::REXP::List->new(
                  elements => [
                      Statistics::R::REXP::Integer->new([ 1, 2, 3]),
                      Statistics::R::REXP::List->new([
                          Statistics::R::REXP::Character->new(['a']),
                          Statistics::R::REXP::Character->new(['b']),
                          ShortDoubleVector->new([11]) ]),
                      Statistics::R::REXP::Character->new(['foo']) ],
                  attributes => {
                      names => Statistics::R::REXP::Character->new(['foo', '', 'bar'])
                  }),
              'generic vector names att');
};


subtest 'symbol' => sub {
    plan tests => 3;
    
    check_padding("\x0a\x08\0\0\x13\4\0\0\x78\0\0\0",
                  Statistics::R::REXP::Symbol->new('x'),
                  'as.name("x")');
    
    check_padding("\x0a\x08\0\0\x13\4\0\0\x66\x6f\x6f\0",
                  Statistics::R::REXP::Symbol->new('foo'),
                  'as.name("foo")');
    
    check_padding("\x0a\x0c\0\0\x13\x08\0\0\x66\x72\x65\x64\0\0\0\0",
                  Statistics::R::REXP::Symbol->new('fred'),
                  'as.name("fred")');
};



subtest 'matrix' => sub {
    plan tests => 2;
    
    ## serialize matrix(-1:4, 2, 3), XDR: true
    check_qap('t/data/noatt-mat',
              Statistics::R::REXP::Integer->new(
                  elements => [ -1, 0, 1, 2, 3, 4 ],
                  attributes => {
                      dim => Statistics::R::REXP::Integer->new([2, 3]),
                  }),
              'int matrix no atts');
    
    ## serialize matrix(-1:4, 2, 3, dimnames=list(c('a', 'b'))), XDR: true
    check_qap('t/data/ab-mat',
              Statistics::R::REXP::Integer->new(
                  elements => [ -1, 0, 1, 2, 3, 4 ],
                  attributes => {
                      dim => Statistics::R::REXP::Integer->new([2, 3]),
                      dimnames => Statistics::R::REXP::List->new([
                          Statistics::R::REXP::Character->new(['a', 'b']),
                          Statistics::R::REXP::Null->new
                      ]),
                  }),
              'int matrix rownames');
};


subtest 'data frames' => sub {
    plan tests => 3;

    ## serialize head(cars)
    check_qap('t/data/cars',
              Statistics::R::REXP::List->new(
                  elements => [
                      ShortDoubleVector->new([ 4, 4, 7, 7, 8, 9]),
                      ShortDoubleVector->new([ 2, 10, 4, 22, 16, 10]),
                  ],
                  attributes => {
                      names => Statistics::R::REXP::Character->new(['speed', 'dist']),
                      class => Statistics::R::REXP::Character->new(['data.frame']),
                      'row.names' => Statistics::R::REXP::Integer->new([
                          1, 2, 3, 4, 5, 6
                      ]),
                  }),
              'the cars data frame');


    ## serialize head(mtcars)
    check_qap('t/data/mtcars',
       Statistics::R::REXP::List->new(
           elements => [
               ShortDoubleVector->new([ 21.0, 21.0, 22.8, 21.4, 18.7, 18.1 ]),
               ShortDoubleVector->new([ 6, 6, 4, 6, 8, 6 ]),
               ShortDoubleVector->new([ 160, 160, 108, 258, 360, 225 ]),
               ShortDoubleVector->new([ 110, 110, 93, 110, 175, 105 ]),
               ShortDoubleVector->new([ 3.90, 3.90, 3.85, 3.08, 3.15, 2.76 ]),
               ShortDoubleVector->new([ 2.620, 2.875, 2.320, 3.215, 3.440, 3.460 ]),
               ShortDoubleVector->new([ 16.46, 17.02, 18.61, 19.44, 17.02, 20.22 ]),
               ShortDoubleVector->new([ 0, 0, 1, 1, 0, 1 ]),
               ShortDoubleVector->new([ 1, 1, 1, 0, 0, 0 ]),
               ShortDoubleVector->new([ 4, 4, 4, 3, 3, 3 ]),
               ShortDoubleVector->new([ 4, 4, 1, 1, 2, 1 ]),
           ],
           attributes => {
               names => Statistics::R::REXP::Character->new([
                   'mpg' , 'cyl', 'disp', 'hp', 'drat', 'wt', 'qsec',
                   'vs', 'am', 'gear', 'carb']),
               class => Statistics::R::REXP::Character->new(['data.frame']),
               'row.names' => Statistics::R::REXP::Character->new([
                   'Mazda RX4', 'Mazda RX4 Wag', 'Datsun 710',
                   'Hornet 4 Drive', 'Hornet Sportabout', 'Valiant'
               ]),
           }),
       'the mtcars data frame');

    ## serialize head(iris)
    check_qap('t/data/iris',
       Statistics::R::REXP::List->new(
           elements => [
               ShortDoubleVector->new([ 5.1, 4.9, 4.7, 4.6, 5.0, 5.4 ]),
               ShortDoubleVector->new([ 3.5, 3.0, 3.2, 3.1, 3.6, 3.9 ]),
               ShortDoubleVector->new([ 1.4, 1.4, 1.3, 1.5, 1.4, 1.7 ]),
               ShortDoubleVector->new([ 0.2, 0.2, 0.2, 0.2, 0.2, 0.4 ]),
               Statistics::R::REXP::Integer->new(
                   elements => [ 1, 1, 1, 1, 1, 1 ],
                   attributes => {
                       levels => Statistics::R::REXP::Character->new([
                           'setosa', 'versicolor', 'virginica']),
                       class => Statistics::R::REXP::Character->new(['factor'])
                   } ),
           ],
           attributes => {
               names => Statistics::R::REXP::Character->new([
                   'Sepal.Length', 'Sepal.Width', 'Petal.Length',
                   'Petal.Width', 'Species']),
               class => Statistics::R::REXP::Character->new(['data.frame']),
               'row.names' => Statistics::R::REXP::Integer->new([
                   1, 2, 3, 4, 5, 6
               ]),
           }),
       'the iris data frame');
    };


## Call lm(mpg ~ wt, data = head(mtcars))
check_qap('t/data/lang-lm-mpgwt',
          Statistics::R::REXP::Language->new(
              elements => [
                  Statistics::R::REXP::Symbol->new('lm'),
                  Statistics::R::REXP::Language->new(
                      elements => [
                          Statistics::R::REXP::Symbol->new('~'),
                          Statistics::R::REXP::Symbol->new('mpg'),
                          Statistics::R::REXP::Symbol->new('wt'),
                      ]),
                  Statistics::R::REXP::Language->new(
                      elements => [
                          Statistics::R::REXP::Symbol->new('head'),
                          Statistics::R::REXP::Symbol->new('mtcars'),
                      ]),
              ],
              attributes => {
                  names => Statistics::R::REXP::Character->new([
                      '', 'formula', 'data' ])
              }),
          'language lm(mpg~wt, head(mtcars))');


## serialize lm(mpg ~ wt, data = head(mtcars))
check_qap('t/data/mtcars-lm-mpgwt',
   Statistics::R::REXP::List->new(
       elements => [
           # coefficients
           ShortDoubleVector->new(
               elements => [ 30.3002034730204, -3.27948805566774 ],
               attributes => {
                   names => Statistics::R::REXP::Character->new(['(Intercept)', 'wt'])
               }),
           # residuals
           ShortDoubleVector->new(
               elements => [ -0.707944767170941, 0.128324687024322, 0.108208816128727,
                             1.64335062595135, -0.318764561523408, -0.853174800410051 ],
               attributes => {
                   names => Statistics::R::REXP::Character->new([
                       "Mazda RX4", "Mazda RX4 Wag",
                       "Datsun 710", "Hornet 4 Drive",
                       "Hornet Sportabout", "Valiant" ])
               }),
           # effects
           ShortDoubleVector->new(
               elements => [ -50.2145397270552, -3.39713386075597, 0.13375416348722,
                             1.95527848390874, 0.0651588996571721, -0.462851730054076 ],
               attributes => {
                   names => Statistics::R::REXP::Character->new([
                       '(Intercept)', 'wt', '',
                       '', '', '' ])
               }),
           # rank
           Statistics::R::REXP::Integer->new([2]),
           # fitted.values
           ShortDoubleVector->new(
               elements => [ 21.7079447671709, 20.8716753129757, 22.6917911838713,
                             19.7566493740486, 19.0187645615234, 18.9531748004101  ],
               attributes => {
                   names => Statistics::R::REXP::Character->new([
                       "Mazda RX4", "Mazda RX4 Wag",
                       "Datsun 710", "Hornet 4 Drive",
                       "Hornet Sportabout", "Valiant" ])
               }),
           # assign
           Statistics::R::REXP::Integer->new([0, 1]),
           # qr
           Statistics::R::REXP::List->new(
               elements => [
                   # qr
                   ShortDoubleVector->new(
                       elements => [ -2.44948974278318, 0.408248290463863,
                                     0.408248290463863, 0.408248290463863,
                                     0.408248290463863, 0.408248290463863,
                                     -7.31989184801706, 1.03587322261623,
                                     0.542107126002057, -0.321898217952644,
                                     -0.539106265315558, -0.558413647303373 ],
                       attributes => {
                           dim => Statistics::R::REXP::Integer->new([ 6, 2 ]),
                           dimnames => Statistics::R::REXP::List->new([
                               Statistics::R::REXP::Character->new([
                                   "Mazda RX4", "Mazda RX4 Wag",
                                   "Datsun 710", "Hornet 4 Drive",
                                   "Hornet Sportabout", "Valiant" ]),
                               Statistics::R::REXP::Character->new([
                                   '(Intercept)', 'wt' ])
                               ]),
                           assign => Statistics::R::REXP::Integer->new([
                               0, 1
                           ]),
                       }),
                   # qraux
                   ShortDoubleVector->new(
                       [ 1.40824829046386, 1.0063272758402 ]),
                   # pivot
                   Statistics::R::REXP::Integer->new([1, 2]),
                   # tol
                   ShortDoubleVector->new([1E-7]),
                   # rank
                   Statistics::R::REXP::Integer->new([2]),
               ],
               attributes => {
                   names => Statistics::R::REXP::Character->new([
                       "qr", "qraux", "pivot",
                       "tol", "rank" ]),
                   class => Statistics::R::REXP::Character->new(['qr'])
               }),
           # df.residual
           Statistics::R::REXP::Integer->new([4]),
           # xlevels
           Statistics::R::REXP::List->new(
               elements => [],
               attributes => {
                   names => Statistics::R::REXP::Character->new([])
               }),
           # call
           Statistics::R::REXP::Language->new(
               elements => [
                   Statistics::R::REXP::Symbol->new('lm'),
                   Statistics::R::REXP::Language->new(
                       elements => [
                           Statistics::R::REXP::Symbol->new('~'),
                           Statistics::R::REXP::Symbol->new('mpg'),
                           Statistics::R::REXP::Symbol->new('wt'),
                       ]),
                   Statistics::R::REXP::Language->new(
                       elements => [
                           Statistics::R::REXP::Symbol->new('head'),
                           Statistics::R::REXP::Symbol->new('mtcars'),
                       ]),
               ],
               attributes => {
                   names => Statistics::R::REXP::Character->new([
                       '', 'formula', 'data' ])
               }),
           # terms
           Statistics::R::REXP::Language->new(
               elements => [
                   Statistics::R::REXP::Symbol->new('~'),
                   Statistics::R::REXP::Symbol->new('mpg'),
                   Statistics::R::REXP::Symbol->new('wt'),
               ],
               attributes => {
                   variables => Statistics::R::REXP::Language->new(
                       elements => [
                           Statistics::R::REXP::Symbol->new('list'),
                           Statistics::R::REXP::Symbol->new('mpg'),
                           Statistics::R::REXP::Symbol->new('wt'),
                       ]),
                   factors => Statistics::R::REXP::Integer->new(
                       elements => [ 0, 1 ],
                       attributes => {
                           dim => Statistics::R::REXP::Integer->new([ 2, 1 ]),
                           dimnames => Statistics::R::REXP::List->new([
                               Statistics::R::REXP::Character->new([
                                   'mpg', 'wt' ]),
                               Statistics::R::REXP::Character->new([ 'wt' ]),
                           ]),
                       }),
                   'term.labels' => Statistics::R::REXP::Character->new(['wt']),
                   order => Statistics::R::REXP::Integer->new([1]),
                   intercept => Statistics::R::REXP::Integer->new([1]),
                   response => Statistics::R::REXP::Integer->new([1]),
                   class => Statistics::R::REXP::Character->new([
                       'terms', 'formula'
                   ]),
                   '.Environment' => Statistics::R::REXP::Unknown->new(sexptype=>4),
                   predvars => Statistics::R::REXP::Language->new(
                       elements => [
                           Statistics::R::REXP::Symbol->new('list'),
                           Statistics::R::REXP::Symbol->new('mpg'),
                           Statistics::R::REXP::Symbol->new('wt'),
                       ]),
                   dataClasses => Statistics::R::REXP::Character->new(
                       elements => ['numeric', 'numeric'],
                       attributes => {
                           names => Statistics::R::REXP::Character->new(['mpg', 'wt'])
                       }),
               }),
           # model
           Statistics::R::REXP::List->new(
               elements => [
                   ShortDoubleVector->new([ 21.0, 21.0, 22.8, 21.4, 18.7, 18.1 ]),
                   ShortDoubleVector->new([ 2.62, 2.875, 2.32, 3.215, 3.44, 3.46 ]),
               ],
               attributes => {
                   names => Statistics::R::REXP::Character->new(['mpg', 'wt']),
                   'row.names' => Statistics::R::REXP::Character->new([
                       'Mazda RX4', 'Mazda RX4 Wag', 'Datsun 710',
                       'Hornet 4 Drive', 'Hornet Sportabout', 'Valiant']),
                   class => Statistics::R::REXP::Character->new(['data.frame']),
                   terms => Statistics::R::REXP::Language->new(
                       elements => [
                           Statistics::R::REXP::Symbol->new('~'),
                           Statistics::R::REXP::Symbol->new('mpg'),
                           Statistics::R::REXP::Symbol->new('wt'),
                       ],
                       attributes => {
                           variables => Statistics::R::REXP::Language->new(
                               elements => [
                                   Statistics::R::REXP::Symbol->new('list'),
                                   Statistics::R::REXP::Symbol->new('mpg'),
                                   Statistics::R::REXP::Symbol->new('wt'),
                               ]),
                           factors => Statistics::R::REXP::Integer->new(
                               elements => [ 0, 1 ],
                               attributes => {
                                   dim => Statistics::R::REXP::Integer->new([ 2, 1 ]),
                                   dimnames => Statistics::R::REXP::List->new([
                                       Statistics::R::REXP::Character->new([
                                           'mpg', 'wt' ]),
                                       Statistics::R::REXP::Character->new([ 'wt' ]),
                                   ]),
                               }),
                           'term.labels' => Statistics::R::REXP::Character->new(['wt']),
                           order => Statistics::R::REXP::Integer->new([1]),
                           intercept => Statistics::R::REXP::Integer->new([1]),
                           response => Statistics::R::REXP::Integer->new([1]),
                           class => Statistics::R::REXP::Character->new([
                               'terms', 'formula'
                           ]),
                           '.Environment' => Statistics::R::REXP::Unknown->new(sexptype=>4),
                           predvars => Statistics::R::REXP::Language->new(
                               elements => [
                                   Statistics::R::REXP::Symbol->new('list'),
                                   Statistics::R::REXP::Symbol->new('mpg'),
                                   Statistics::R::REXP::Symbol->new('wt'),
                               ]),
                           dataClasses => Statistics::R::REXP::Character->new(
                               elements => ['numeric', 'numeric'],
                               attributes => {
                                   names => Statistics::R::REXP::Character->new(['mpg', 'wt'])
                               }),
                       }),
               }),
       ],
       attributes => {
           names => Statistics::R::REXP::Character->new([
               'coefficients', 'residuals', 'effects', 'rank',
               'fitted.values', 'assign', 'qr', 'df.residual',
               'xlevels', 'call', 'terms', 'model',
           ]),
           class => Statistics::R::REXP::Character->new(['lm']) }),
   'lm mpg~wt, head(mtcars)');


while ( my ($name, $value) = each %{TEST_CASES()} ) {
  SKIP: {
    skip "not yet supported", 1 if ($value->{skip} || '' =~ 'rserve');
    check_qap('t/data/' . $name,
              $value->{value},
              $value->{desc});
  }
}