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
|
## Copyright (C) 2010 - 2014 Dirk Eddelbuettel and Romain Francois
##
## This file is part of Rcpp.
##
## Rcpp is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 2 of the License, or
## (at your option) any later version.
##
## Rcpp is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
if (Sys.getenv("RunAllRcppTests") != "yes") exit_file("Set 'RunAllRcppTests' to 'yes' to run.")
Rcpp::sourceCpp("cpp/language.cpp")
# test.Language <- function(){
expect_equal( runit_language( call("rnorm") ), call("rnorm" ), info = "Language( LANGSXP )" )
expect_error( runit_language(test.Language), info = "Language not compatible with function" )
expect_error( runit_language(new.env()), info = "Language not compatible with environment" )
expect_error( runit_language(1:10), info = "Language not compatible with integer" )
expect_error( runit_language(TRUE), info = "Language not compatible with logical" )
expect_error( runit_language(1.3), info = "Language not compatible with numeric" )
expect_error( runit_language(as.raw(1) ), info = "Language not compatible with raw" )
# test.Language.variadic <- function(){
expect_equal( runit_lang_variadic_1(), call("rnorm", 10L, 0.0, 2.0 ),
info = "variadic templates" )
expect_equal( runit_lang_variadic_2(), call("rnorm", 10L, mean = 0.0, 2.0 ),
info = "variadic templates (with names)" )
## same as above but without variadic templates
# test.Language.push.back <- function(){
expect_equal( runit_lang_push_back(),
call("rnorm", 10L, mean = 0.0, 2.0 ),
info = "Language::push_back" )
# test.Language.square <- function(){
expect_equal( runit_lang_square_rv(), 10.0, info = "Language::operator[] used as rvalue" )
expect_equal( runit_lang_square_lv(), call("rnorm", "foobar", 20.0, 20.0) , info = "Pairlist::operator[] used as lvalue" )
# test.Language.function <- function(){
expect_equal( runit_lang_fun(sort, sample(1:10)), 1:10, info = "Language( Function ) " )
# test.Language.inputoperator <- function(){
expect_equal( runit_lang_inputop(), call("rnorm", 10L, sd = 10L ) , info = "Language<<" )
# test.Language.unary.call <- function(){
expect_equal(
runit_lang_unarycall( 1:10 ),
lapply( 1:10, function(n) seq(from=n, to = 0 ) ),
info = "c++ lapply using calls" )
# test.Language.unary.call.index <- function(){
expect_equal(
runit_lang_unarycallindex( 1:10 ),
lapply( 1:10, function(n) seq(from=10, to = n ) ),
info = "c++ lapply using calls" )
# test.Language.binary.call <- function(){
expect_equal(
runit_lang_binarycall( 1:10, 11:20 ),
lapply( 1:10, function(n) seq(n, n+10) ),
info = "c++ lapply using calls" )
# test.Language.fixed.call <- function(){
set.seed(123)
res <- runit_lang_fixedcall()
set.seed(123)
exp <- lapply( 1:10, function(n) rnorm(10) )
expect_equal( res, exp, info = "std::generate" )
# test.Language.in.env <- function(){
e <- new.env()
e[["y"]] <- 1:10
expect_equal( runit_lang_inenv(e), sum(1:10), info = "Language::eval( SEXP )" )
# test.Pairlist <- function(){
expect_equal( runit_pairlist( pairlist("rnorm") ), pairlist("rnorm" ), info = "Pairlist( LISTSXP )" )
expect_equal( runit_pairlist( call("rnorm") ), pairlist(as.name("rnorm")), info = "Pairlist( LANGSXP )" )
expect_equal( runit_pairlist(1:10), as.pairlist(1:10) , info = "Pairlist( INTSXP) " )
expect_equal( runit_pairlist(TRUE), as.pairlist( TRUE) , info = "Pairlist( LGLSXP )" )
expect_equal( runit_pairlist(1.3), as.pairlist(1.3), info = "Pairlist( REALSXP) " )
expect_equal( runit_pairlist(as.raw(1) ), as.pairlist(as.raw(1)), info = "Pairlist( RAWSXP)" )
expect_error( runit_pairlist(runit_pairlist), info = "Pairlist not compatible with function" )
expect_error( runit_pairlist(new.env()), info = "Pairlist not compatible with environment" )
# test.Pairlist.variadic <- function(){
expect_equal( runit_pl_variadic_1(), pairlist("rnorm", 10L, 0.0, 2.0 ),
info = "variadic templates" )
expect_equal( runit_pl_variadic_2(), pairlist("rnorm", 10L, mean = 0.0, 2.0 ),
info = "variadic templates (with names)" )
# test.Pairlist.push.front <- function(){
expect_equal( runit_pl_push_front(),
pairlist( foobar = 10, "foo", 10.0, 1L),
info = "Pairlist::push_front" )
# test.Pairlist.push.back <- function(){
expect_equal( runit_pl_push_back(),
pairlist( 1L, 10.0, "foo", foobar = 10),
info = "Pairlist::push_back" )
# test.Pairlist.insert <- function(){
expect_equal( runit_pl_insert(),
pairlist( 30.0, 1L, bla = "bla", 10.0, 20.0, "foobar" ),
info = "Pairlist::replace" )
# test.Pairlist.replace <- function(){
expect_equal( runit_pl_replace(),
pairlist( first = 1, 20.0 , FALSE), info = "Pairlist::replace" )
# test.Pairlist.size <- function(){
expect_equal( runit_pl_size(), 3L, info = "Pairlist::size()" )
# test.Pairlist.remove <- function(){
expect_equal( runit_pl_remove_1(), pairlist(10.0, 20.0), info = "Pairlist::remove(0)" )
expect_equal( runit_pl_remove_2(), pairlist(1L, 10.0), info = "Pairlist::remove(0)" )
expect_equal( runit_pl_remove_3(), pairlist(1L, 20.0), info = "Pairlist::remove(0)" )
# test.Pairlist.square <- function(){
expect_equal( runit_pl_square_1(), 10.0, info = "Pairlist::operator[] used as rvalue" )
expect_equal( runit_pl_square_2(), pairlist(1L, "foobar", 1L) , info = "Pairlist::operator[] used as lvalue" )
# test.Formula <- function(){
expect_equal( runit_formula_(), x ~ y + z, info = "Formula( string )" )
# test.Formula.SEXP <- function(){
expect_equal( runit_formula_SEXP( x ~ y + z), x ~ y + z, info = "Formula( SEXP = formula )" )
expect_equal( runit_formula_SEXP( "x ~ y + z" ), x ~ y + z, info = "Formula( SEXP = STRSXP )" )
expect_equal( runit_formula_SEXP( parse( text = "x ~ y + z") ), x ~ y + z, info = "Formula( SEXP = EXPRSXP )" )
expect_equal( runit_formula_SEXP( list( "x ~ y + z") ), x ~ y + z, info = "Formula( SEXP = VECSXP(1 = STRSXP) )" )
expect_equal( runit_formula_SEXP( list( x ~ y + z) ), x ~ y + z, info = "Formula( SEXP = VECSXP(1 = formula) )" )
expect_equal( runit_language_modify(sum), c(999, 1), info = "Language objects don't duplicate their arguments" )
|