R Under development (unstable) (2024-05-17 r86566 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(testthat) > library(geonode4R) > > #test environment > geonodeUrl <- Sys.getenv("GEONODE_URL") > if(geonodeUrl != "") geonodeUrl = "https://stable.demo.geonode.org" > geonodeUsr <- Sys.getenv("GEONODE_USER") > geonodePwd <- Sys.getenv("GEONODE_PASSWORD") > geonodeLogger <- Sys.getenv("GEONODE_LOGGER") > GEONODE <- try(GeoNodeManager$new(geonodeUrl, geonodeUsr, geonodePwd, geonodeLogger)) Error in b_env_get(self, private, service, username, keyring) : Cannot find password > > > if(is(GEONODE, "GeoNodeManager")){ + cat(sprintf("GeoNode test instance started at %s. Running integration tests...\n", geonodeUrl)) + test_check("geonode4R") + }else{ + cat("GeoNode test instance is not started. Skipping integration tests...\n") + } GeoNode test instance is not started. Skipping integration tests... > > proc.time() user system elapsed 0.70 0.12 0.81