Nothing
context("plugin Framework")
test_that(".isRegistered", {
expect_true(.isRegistered("mindensity"))
expect_true(.isRegistered("warpSet"))
expect_true(.isRegistered(".mindensity"))
expect_true(.isRegistered(".warpSet"))
expect_false(.isRegistered("myFunc"))
})
test_that("register_plugins", {
dummyMethod <- function(){}
#depdency not installed
expect_false(openCyto:::.isRegistered("dummyMethod"))
expect_message(thisRes <- register_plugins(fun=dummyMethod,methodName="dummyMethod",dep="dummyPkg")
, "Can't register dummyMethod with dependency on dummyPkg, because dependency is not installed.")
expect_false(thisRes)
expect_false(openCyto:::.isRegistered("dummyMethod"))
#invalid formal
myGatingFunc <- function(fr1, pp_res, yChannel, ...){
cat("dummy gating function")
}
expect_warning(expect_message(thisRes <- register_plugins(fun = myGatingFunc,methodName="myGatingFunc"), "Formals of function don't match expected template"))
expect_false(thisRes)
expect_false(.isRegistered("myGatingFunc"))
#successfully registered without rep
myGatingFunc <- function(fr, pp_res, channels, ...){
cat("dummy gating function")
}
expect_message(thisRes <- register_plugins(fun = myGatingFunc, methodName = "myGatingFunc"), "Registered myGatingFunc")
expect_true(thisRes)
expect_true(.isRegistered("myGatingFunc"))
expect_true(.unregister("myGatingFunc"))
expect_false(.isRegistered("myGatingFunc"))
#pp method
myPreprocessingFunc <- function(fr, pp_res, yChannel, ...){
cat("dummy preprocessing function")
}
expect_error(thisRes <- register_plugins(type = "pp", fun = myPreprocessingFunc, methodName = "myPreprocessingFunc"), "'arg' should be one of ")
expect_warning(expect_message(thisRes <- register_plugins(type = "preprocess", fun = myPreprocessingFunc, methodName = "myPreprocessingFunc"), "Formals of function don't match expected template"))
expect_false(.isRegistered("myPreprocessingFunc"))
myPreprocessingFunc <- function(fs, gs, gm, xChannel, yChannel, ...){
cat("dummy preprocessing function")
}
expect_warning(expect_message(thisRes <- register_plugins(type = "preprocess", fun = myPreprocessingFunc, methodName = "myPreprocessingFunc")
, "Formals of function don't match") )
expect_false(openCyto:::.isRegistered("myPreprocessingFunc"))
myPreprocessingFunc <- function(fs, gs, gm, channels, groupBy, isCollapse, ...){
cat("dummy preprocessing function")
}
expect_message(thisRes <- register_plugins(type = "preprocess", fun = myPreprocessingFunc, methodName = "myPreprocessingFunc")
, "Registered myPreprocessingFunc")
expect_true(.isRegistered("myPreprocessingFunc"))
expect_true(.unregister("myPreprocessingFunc", type = "pre"))
expect_false(.isRegistered("myPreprocessingFunc"))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.