R Under development (unstable) (2024-09-18 r87177 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(REDCapExporter) > > # Test if a new keyring can be built > kr <- keyring::backend_file$new() > try(kr$keyring_delete("testingring"), silent = TRUE) > #kr$keyring_create(password = "") > #kr$keyring_list() > > x <- tryCatch(REDCapExporter_keyring_check("testingring"), message = function(m) {m}) > stopifnot(identical(x$message, "File based keyring testingring has been created\n")) > x <- tryCatch(REDCapExporter_keyring_check("testingring"), message = function(m) {m}) > stopifnot(identical(x$message, "File based keyring testingring exists\n")) > stopifnot(isTRUE(REDCapExporter_keyring_check("testingring"))) File based keyring testingring exists > > # Expect that this will error because we are not interactive and a password > # prompt cannot be filled in > x <- + tryCatch( + REDCapExporter_add_api_token(project = 'testingproject', keyring = 'testingring'), + error = function(e) e + ) Please enter your API token Project: testingproject Keyring: testingring > > stopifnot(inherits(x, "error")) > stopifnot(isTRUE(grepl("Aborted setting keyring key", x$message))) > > # expect the get api token to fail as the token for the testingproject has not > # been set > x <- + tryCatch( + REDCapExporter_get_api_token(project = 'testingproject', keyring = 'testingring'), + error = function(e) e + ) > > stopifnot(inherits(x, "error")) > stopifnot(isTRUE(grepl("specified item could not be found in the keychain", x$message))) > > # create token > kr$set_with_value(service = "testingproject", password = "testingTOKEN", keyring = "testingring") > > # verify you can get the token > stopifnot( + identical( + REDCapExporter_get_api_token(project = 'testingproject', keyring = 'testingring') + , + "testingTOKEN" + )) > > > # the REDCapExporter_add_api_token should return a message that the token > # already exists > stopifnot( + REDCapExporter_add_api_token(project = 'testingproject', keyring = 'testingring') + ) API token exisits for Project: testingproject Keyring: testingring > > x <- tryCatch( + REDCapExporter_add_api_token(project = 'testingproject', keyring = 'testingring'), + message = function(m) {m} + ) > > stopifnot(isTRUE(grepl("API token exisits", x$message))) > > > proc.time() user system elapsed 0.34 0.14 0.46