Title: | Wrapper for 'run_examples()' |
---|---|
Description: | Captures errors encountered when running 'run_examples()', and processes and archives them. The function 'run_examples()' within the 'devtools' package allows batch execution of all of the examples within a given package. This is much more convenient than testing each example manually. However, a major inconvenience is that if an error is encountered, the program stops and does not complete testing the remaining examples. Also, there is not a systematic record of the results, namely which package functions had no examples, which had examples that failed, and which had examples that succeeded. The current package provides the missing functionality. |
Authors: | Barry Zeeberg [aut, cre] |
Maintainer: | Barry Zeeberg <[email protected]> |
License: | GPL (>= 2) |
Version: | 1.0 |
Built: | 2025-03-24 05:39:35 UTC |
Source: | https://github.com/cran/runExamplesWrapper |
retrieve lines of text between '@examples' and matching curly braces
balanceCurly(v)
balanceCurly(v)
v |
character vector |
returns lines of text between '@examples' and matching curly braces
v<-c("@examples{","xxx","}","{","{") x<-balanceCurly(v) cat(x,sep="\n")
v<-c("@examples{","xxx","}","{","{") x<-balanceCurly(v) cat(x,sep="\n")
retrieve the lines containing the function name within the run_examples() results output file
parseRunExamples(f)
parseRunExamples(f)
f |
character string containing the path name of the run_examples() results output file |
returns a list of the lines containing the function name
## Not run: # replace dir and pack with your own versions!! # run this example within the RStudio Console for the package 'pack' dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) pack<-sprintf("%s/%s",dir,"cardUtils") out<-"~/test.txt" sink(out) on.exit(sink()) try(run_examples(pack,run_donttest=TRUE,run_dontrun=TRUE,document=FALSE)) sink() x<-parseRunExamples(out) ## End(Not run)
## Not run: # replace dir and pack with your own versions!! # run this example within the RStudio Console for the package 'pack' dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) pack<-sprintf("%s/%s",dir,"cardUtils") out<-"~/test.txt" sink(out) on.exit(sink()) try(run_examples(pack,run_donttest=TRUE,run_dontrun=TRUE,document=FALSE)) sink() x<-parseRunExamples(out) ## End(Not run)
retrieve the text of examples for man files
retrieveExamplesFromMan(package)
retrieveExamplesFromMan(package)
package |
character string full pathname for the package folder |
returns a list whose components are a list of examples text and a list of number of lines in each example text
## Not run: # replace package with your own version!! dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) pack<-"cardUtils" package<-sprintf("%s/%s",dir,pack) l<-retrieveExamplesFromMan(package) ## End(Not run)
## Not run: # replace package with your own version!! dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) pack<-"cardUtils" package<-sprintf("%s/%s",dir,pack) l<-retrieveExamplesFromMan(package) ## End(Not run)
retrieve the names of all man files
retrieveMan(package)
retrieveMan(package)
package |
character string full pathname for the package folder |
returns a list of the names of all man files
## Not run: # replace package with your own version!! dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) pack<-"cardUtils" package<-sprintf("%s/%s",dir,pack) l<-retrieveMan(package) ## End(Not run)
## Not run: # replace package with your own version!! dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) pack<-"cardUtils" package<-sprintf("%s/%s",dir,pack) l<-retrieveMan(package) ## End(Not run)
driver to automate run_examples() and retrieve the test results for each example
RunExamples( pack, run_donttest = TRUE, run_dontrun = TRUE, out = sprintf("%s/%s", tempdir(), "runExamplesOut.txt"), verbose = FALSE )
RunExamples( pack, run_donttest = TRUE, run_dontrun = TRUE, out = sprintf("%s/%s", tempdir(), "runExamplesOut.txt"), verbose = FALSE )
pack |
character string containing the path name of the package directory |
run_donttest |
parameter to be passed to run_examples() |
run_dontrun |
parameter to be passed to run_examples() |
out |
character string containing the path name of the run_examples() results output file |
verbose |
Boolean if TRUE generate some diagnostic information |
returns a character vector specifying each function example as either "GOOD", "BAD", or "MIA"
## Not run: # replace dir and pack with your own versions!! # run this example within the RStudio Console for the package 'pack' dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) pack<-sprintf("%s/%s",dir,"cardUtils") v<-RunExamples(pack,verbose=FALSE) ## End(Not run)
## Not run: # replace dir and pack with your own versions!! # run this example within the RStudio Console for the package 'pack' dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) pack<-sprintf("%s/%s",dir,"cardUtils") v<-RunExamples(pack,verbose=FALSE) ## End(Not run)
parse the output file produced by RunExamples() to determine the next example to start the list provided to run_examples()
startExample(f, xnames)
startExample(f, xnames)
f |
character string containing the path name of the run_examples() results output file |
xnames |
list of all the function names within the package |
returns a list whose components are
## Not run: # replace dir and pack with your own versions!! # run this example within the RStudio Console for the package 'pack' dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) load_all() pack<-sprintf("%s/%s",dir,"cardUtils") out<-sprintf("%s/%s",tempdir(),"runExamplesOut.txt") l<-retrieveExamplesFromMan(pack) xnames<-unlist(strsplit(sort(names(l$x)),".Rd")) sink(out) on.exit(sink()) suppressMessages(suppressWarnings(try(run_examples(pack)))) sink() l1<-startExample(out,xnames) ## End(Not run)
## Not run: # replace dir and pack with your own versions!! # run this example within the RStudio Console for the package 'pack' dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference/packages/" dir2<-"inference_packages/inference_packages/" dir<-sprintf("%s/%s",dir1,dir2) load_all() pack<-sprintf("%s/%s",dir,"cardUtils") out<-sprintf("%s/%s",tempdir(),"runExamplesOut.txt") l<-retrieveExamplesFromMan(pack) xnames<-unlist(strsplit(sort(names(l$x)),".Rd")) sink(out) on.exit(sink()) suppressMessages(suppressWarnings(try(run_examples(pack)))) sink() l1<-startExample(out,xnames) ## End(Not run)