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
|
#!perl
use 5.010;
use strict;
use warnings FATAL => 'all';
use Test::More tests => 66;
use Test::Fatal;
use Statistics::R::IO::RDS;
use Statistics::R::IO::REXPFactory;
use lib 't/lib';
use ShortDoubleVector;
use TestCases;
## integer vectors
sub check_rds {
my ($file, $expected, $message) = @_;
subtest 'rds ' . $message => sub {
plan tests => 2;
## test with filename
my $rds = Statistics::R::IO::RDS->new($file);
my $actual = $rds->read;
## NOTE: I'm switching the order of comparisons to ensure
## ShortDoubleVector's 'eq' overload is used
is($expected, $actual, $message);
$rds->close;
## test with raw file handle
open my $fh, $file or die $!;
$rds = Statistics::R::IO::RDS->new({ fh => $fh });
$actual = $rds->read;
## NOTE: I'm switching the order of comparisons to ensure
## ShortDoubleVector's 'eq' overload is used
is($expected, $actual, $message);
$rds->close;
}
}
sub check_rds_variants {
my ($file, $expected, $message) = @_;
subtest 'variants ' . $message => sub {
plan tests => (-f "$file-noxdr" ? 5 : 4);
check_rds($file . '-xdr',
$expected, $message . ' - xdr');
check_rds($file . '-noxdr',
$expected, $message . ' - binary') if (-f "$file-noxdr");
check_rds($file . '-xdr.rds',
$expected, $message . ' - compressed xdr');
check_rds($file . '-xdr_bzip.rds',
$expected, $message . ' - bzip compressed xdr');
like(exception {
Statistics::R::IO::RDS->new($file . '-xdr_xz.rds')->read
}, qr/xz-compressed R files are not supported/, $message . ' - xz');
}
}
## serialize 1:3, XDR: true
check_rds_variants('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_rds_variants('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');
## double vectors
## serialize 1234.56, XDR: true
check_rds_variants('t/data/noatt-123456',
ShortDoubleVector->new([ 1234.56 ]),
'double vector no atts');
## serialize foo=1234.56, XDR: true
check_rds_variants('t/data/foo-123456',
ShortDoubleVector->new(
elements => [ 1234.56 ],
attributes => {
names => Statistics::R::REXP::Character->new(['foo'])
}),
'double vector names att');
## character vectors
## serialize letters[1:3], XDR: true
check_rds_variants('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_rds_variants('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 - xdr');
## raw vectors
## serialize as.raw(c(1:3, 255, 0), XDR: true
check_rds_variants('t/data/noatt-raw',
Statistics::R::REXP::Raw->new([ 1, 2, 3, 255, 0 ]),
'raw vector');
## logical vectors
## serialize TRUE
check_rds_variants('t/data/noatt-true',
Statistics::R::REXP::Logical->new([ 1 ]),
'logical vector - singleton');
## serialize c(TRUE, FALSE, FALSE, TRUE, FALSE)
check_rds_variants('t/data/noatt-tfftf',
Statistics::R::REXP::Logical->new([ 1, 0, 0, 1, 0 ]),
'logical vector');
## serialize c(A=T, B=F, C=F, D=T, E=F)
check_rds_variants('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');
## list (i.e., generic vector)
## serialize list(1:3, list('a', 'b', 11), 'foo'), XDR: true
check_rds_variants('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_rds_variants('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 - xdr');
## matrix
## serialize matrix(-1:4, 2, 3), XDR: true
check_rds_variants('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_rds_variants('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');
## data frames
## serialize head(cars)
check_rds_variants('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_rds_variants('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_rds_variants('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_rds_variants('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_rds_variants('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::GlobalEnvironment->new,
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::GlobalEnvironment->new,
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)');
## opening a non-existent file
like(exception {
Statistics::R::IO::RDS->new('foobard')
}, qr/No such file 'foobard'/, 'new on non-existent file');
## bad arguments to new
like(exception {
Statistics::R::IO::RDS->new
}, qr/Attribute 'fh' is required/, 'new with no args');
like(exception {
Statistics::R::IO::RDS->new([])
}, qr/Single parameters to new/, 'new with array ref');
like(exception {
Statistics::R::IO::RDS->new(fh => [])
}, qr/Attribute 'fh' must be an instance of IO::Handle or an open filehandle/,
'bad fh');
while ( my ($name, $value) = each %{TEST_CASES()} ) {
SKIP: {
skip "not yet supported", 1 if ($value->{skip} || '' =~ 'rds');
check_rds_variants('t/data/' . $name,
$value->{value},
$value->{desc});
}
}
|