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
|
## Copyright (C) 2010 - 2020 Dirk Eddelbuettel and Romain Francois
## Copyright (C) 2021 Dirk Eddelbuettel, Romain Francois and Travers Ching
##
## 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/>.
.runThisTest <- Sys.getenv("RunAllRcppTests") == "yes" && Sys.getenv("RunVerboseRcppTests") == "yes"
if (! .runThisTest) exit_file("Set 'RunVerboseRcppTests' and 'RunAllRcppTests' to 'yes' to run.")
td <- tempfile()
cwd <- getwd()
dir.create(td)
pkg <- "testRcppAttributePackage"
file.copy(pkg, td, recursive = TRUE) # simpler direct path thanks to tinytest
setwd(td)
on.exit( { setwd(cwd); unlink(td, recursive = TRUE) } )
R <- shQuote(file.path( R.home(component = "bin"), "R"))
Rcpp::compileAttributes(pkg)
cmd <- paste(R, "CMD build", pkg)
invisible(system(cmd, intern=TRUE))
dir.create("templib")
pkgfile <- paste0(pkg, "_1.0.tar.gz")
install.packages(pkgfile, "templib", repos = NULL, type = "source")
require(pkg, lib.loc = "templib", character.only = TRUE)
# Test Package
options(verbose=TRUE)
expect_equal(test_no_attributes(list("{A}"), FALSE),list("{A}", FALSE))
expect_equal(test_signature(),list("{A}", TRUE))
expect_equal(test_rng_false_signature_invisible_true(),list("{A}", TRUE))
expect_equal(test_rng_false(list("{A}"), FALSE),list("{A}", FALSE))
expect_equal(test_rng_true(list("{A}"), FALSE),list("{A}", FALSE))
expect_equal(test_rng_true_signature(),list("{A}", TRUE))
expect_equal(test_invisible_true_rng_true(list("{A}"), FALSE),list("{A}", FALSE))
expect_equal(test_invisible_true(list("{A}"), FALSE),list("{A}", FALSE))
expect_equal(test_invisible_true_signature(),list("{A}", TRUE))
options(verbose=FALSE)
# Test inline
# test 0
# This example should just run and not crash
Rcpp::sourceCpp(code='
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export( rng = false, signature = {x=list("{A}", "B"), verbose = getOption("verbose")}, invisible = TRUE )]]
List test_inline(List x, bool verbose) {
if(x.size() > 0) {
CharacterVector first_element = x[0];
return List::create(first_element, verbose);
} else {
return List::create(verbose);
}
}')
expect_equal(test_inline(), list("{A}", FALSE))
options(verbose=TRUE)
expect_equal(test_inline(), list("{A}", TRUE))
options(verbose=FALSE)
# test 1, from Enchufa2
# The verbose argument should be replaced with FALSE
Rcpp::sourceCpp(code='
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export( rng = false, signature = {x=list("{A}", "B"), verbose=FALSE} )]]
List test_inline(List x, bool verbose=true) {
if(x.size() > 0) {
CharacterVector first_element = x[0];
return List::create(first_element, verbose);
} else {
return List::create(verbose);
}
}')
expect_equal(test_inline(), list("{A}", FALSE))
# test 2, from Enchufa2
# This second example should not compile because of missing parameter verbose
expect_error({
Rcpp::sourceCpp(code='
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export( rng = false, signature = {x=list("{A}", "B")} )]]
List test_inline(List x, bool verbose=true) {
if(x.size() > 0) {
CharacterVector first_element = x[0];
return List::create(first_element, verbose);
} else {
return List::create(verbose);
}
}')
})
# test 3, from Enchufa2
# This third example should not compile because of missing end bracket }
# The bracket within the signature is taken as the end bracket, which results in
# invalid R code. There are some additional warnings due to the incorrect syntax
expect_warning({
expect_error({
Rcpp::sourceCpp(code='
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export( rng = false, signature = {x=list("{A}", "B"), verbose=FALSE )]]
List test_inline(List x, bool verbose) {
if(x.size() > 0) {
CharacterVector first_element = x[0];
return List::create(first_element, verbose);
} else {
return List::create(verbose);
}
}', verbose=T)
})
})
# test 4, from Enchufa2
# This 4th example is missing the end bracket and will not compile
expect_error({
Rcpp::sourceCpp(code='
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export( rng = false, signature = {x=list("A", "B"), verbose=FALSE )]]
List test_inline(List x, bool verbose) {
if(x.size() > 0) {
CharacterVector first_element = x[0];
return List::create(first_element, verbose);
} else {
return List::create(verbose);
}
}')
})
# This 5th example has brackets but incorrect R syntax
expect_error({
Rcpp::sourceCpp(code='
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export( rng = false, signature = {x=list("A", ###, verbose=FALSE} )]]
List test_inline(List x, bool verbose) {
if(x.size() > 0) {
CharacterVector first_element = x[0];
return List::create(first_element, verbose);
} else {
return List::create(verbose);
}
}')
})
# This 6th example is missing a parameter in the signature
expect_error({
Rcpp::sourceCpp(code='
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export( rng = false, signature = {x=list("A", "B")} )]]
List test_inline(List x, bool verbose) {
if(x.size() > 0) {
CharacterVector first_element = x[0];
return List::create(first_element, verbose);
} else {
return List::create(verbose);
}
}')
})
remove.packages(pkg, lib="templib")
unlink("templib", recursive = TRUE)
setwd(cwd)
unlink(pkgfile)
|