Last updated on 2025-11-19 01:49:24 CET.
| Package | ERROR | OK |
|---|---|---|
| askgpt | 13 | |
| atrrr | 13 | |
| cookiemonster | 6 | 7 |
| LexisNexisTools | 13 | |
| rollama | 13 |
Current CRAN status: OK: 13
Current CRAN status: OK: 13
Current CRAN status: ERROR: 6, OK: 7
Version: 0.0.5
Check: examples
Result: ERROR
Running examples in ‘cookiemonster-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: store_cookies
> ### Title: Store cookies in a jar
> ### Aliases: store_cookies
>
> ### ** Examples
>
> # to conform with CRAN policies, examples use a temporary location. Do not use
> # the options like this, except you want your cookies gone when closing R.
> options(cookie_dir = tempdir())
>
> if (requireNamespace("curl", quietly = TRUE)) {
+ # get cookies from a curl request
+ library(curl)
+ h <- new_handle()
+ resp <- curl_fetch_memory("https://hb.cran.dev/cookies/set?new_cookies=moo", handle = h)
+ cookies <- handle_cookies(h)
+
+ # then store them for future use
+ store_cookies(cookies)
+
+ # then you can retrieve them and use in future calls
+ get_cookies("hb.cran.dev")
+ }
Using libcurl 8.17.0 with OpenSSL/3.5.4
Error in `vctrs::vec_rbind()`:
! Can't combine `..1$path` <character> and `..2$path` <logical>.
Backtrace:
▆
1. ├─cookiemonster::store_cookies(cookies)
2. │ └─vctrs::vec_rbind(cookies_old, cookies)
3. └─vctrs (local) `<fn>`()
4. └─vctrs::vec_default_ptype2(...)
5. ├─base::withRestarts(...)
6. │ └─base (local) withOneRestart(expr, restarts[[1L]])
7. │ └─base (local) doWithOneRestart(return(expr), restart)
8. └─vctrs::stop_incompatible_type(...)
9. └─vctrs:::stop_incompatible(...)
10. └─vctrs:::stop_vctrs(...)
11. └─rlang::abort(message, class = c(class, "vctrs_error"), ..., call = call)
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.0.5
Check: re-building of vignette outputs
Result: ERROR
Error(s) in re-building vignettes:
...
--- re-building ‘cookies.Rmd’ using rmarkdown
Quitting from cookies.Rmd:157-165 [unnamed-chunk-16]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NULL
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: processing vignette 'cookies.Rmd' failed with diagnostics:
HTTP 500 Internal Server Error.
--- failed re-building ‘cookies.Rmd’
SUMMARY: processing the following file failed:
‘cookies.Rmd’
Error: Vignette re-building failed.
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.0.5
Check: tests
Result: ERROR
Running ‘spelling.R’
Running ‘testthat.R’ [6s/20s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(cookiemonster)
>
> test_check("cookiemonster")
v Cookies for create.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
# A tibble: 2 x 2
domain name
<chr> <chr>
1 tests.com test
2 tests.com success
v Cookies deleted.
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for 127.0.0.1 put in the jar!
Saving _problems/test-req_cookiemonster_set-11.R
v Cookies for hb.cran.dev put in the jar!
v Cookies for hb.cran.dev put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
[ FAIL 1 | WARN 1 | SKIP 1 | PASS 31 ]
══ Skipped tests (1) ═══════════════════════════════════════════════════════════
• On CRAN (1): 'test-browser.R:3:3'
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-req_cookiemonster_set.R:7:5'): setting cookies works ───────────
Error in `example_url()`: could not find function "example_url"
Backtrace:
▆
1. ├─testthat::expect_equal(...) at test-req_cookiemonster_set.R:4:3
2. │ └─testthat::quasi_label(enquo(object), label)
3. │ └─rlang::eval_bare(expr, quo_get_env(quo))
4. ├─httr2::resp_body_json(...) at test-req_cookiemonster_set.R:7:5
5. │ └─httr2:::check_response(resp)
6. │ └─httr2:::is_response(resp)
7. ├─httr2::req_perform(...)
8. │ └─httr2:::check_request(req)
9. │ └─httr2:::is_request(req)
10. ├─cookiemonster::req_cookiemonster_set(...)
11. │ └─httr2::req_options(req, cookie = get_cookies(url$hostname, as = "string"))
12. │ └─httr2:::check_request(.req)
13. │ └─httr2:::is_request(req)
14. ├─httr2::req_url_path(httr2::request(example_url()), "/cookies/set")
15. │ └─httr2:::check_request(req)
16. │ └─httr2:::is_request(req)
17. └─httr2::request(example_url())
18. └─httr2:::new_request(base_url)
19. └─httr2:::check_string(url, call = error_call)
20. └─httr2:::.rlang_check_is_string(...)
21. └─rlang::is_string(x)
[ FAIL 1 | WARN 1 | SKIP 1 | PASS 31 ]
Error:
! Test failures.
Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc
Version: 0.0.5
Check: tests
Result: ERROR
Running ‘spelling.R’ [0s/0s]
Running ‘testthat.R’ [1s/2s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(cookiemonster)
>
> test_check("cookiemonster")
v Cookies for create.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
# A tibble: 2 x 2
domain name
<chr> <chr>
1 tests.com test
2 tests.com success
v Cookies deleted.
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for 127.0.0.1 put in the jar!
Saving _problems/test-req_cookiemonster_set-11.R
v Cookies for hb.cran.dev put in the jar!
v Cookies for hb.cran.dev put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
[ FAIL 1 | WARN 1 | SKIP 1 | PASS 31 ]
══ Skipped tests (1) ═══════════════════════════════════════════════════════════
• length(find_cookiejar("Firefox")) == 0L is TRUE (1): 'test-browser.R:2:3'
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-req_cookiemonster_set.R:7:5'): setting cookies works ───────────
Error in `example_url()`: could not find function "example_url"
Backtrace:
▆
1. ├─testthat::expect_equal(...) at test-req_cookiemonster_set.R:4:3
2. │ └─testthat::quasi_label(enquo(object), label)
3. │ └─rlang::eval_bare(expr, quo_get_env(quo))
4. ├─httr2::resp_body_json(...) at test-req_cookiemonster_set.R:7:5
5. │ └─httr2:::check_response(resp)
6. │ └─httr2:::is_response(resp)
7. ├─httr2::req_perform(...)
8. │ └─httr2:::check_request(req)
9. │ └─httr2:::is_request(req)
10. ├─cookiemonster::req_cookiemonster_set(...)
11. │ └─httr2::req_options(req, cookie = get_cookies(url$hostname, as = "string"))
12. │ └─httr2:::check_request(.req)
13. │ └─httr2:::is_request(req)
14. ├─httr2::req_url_path(httr2::request(example_url()), "/cookies/set")
15. │ └─httr2:::check_request(req)
16. │ └─httr2:::is_request(req)
17. └─httr2::request(example_url())
18. └─httr2:::new_request(base_url)
19. └─httr2:::check_string(url, call = error_call)
20. └─httr2:::.rlang_check_is_string(...)
21. └─rlang::is_string(x)
[ FAIL 1 | WARN 1 | SKIP 1 | PASS 31 ]
Error:
! Test failures.
Execution halted
Flavors: r-release-macos-arm64, r-oldrel-macos-arm64
Version: 0.0.5
Check: tests
Result: ERROR
Running ‘spelling.R’ [0s/0s]
Running ‘testthat.R’ [3s/4s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(cookiemonster)
>
> test_check("cookiemonster")
v Cookies for create.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
# A tibble: 2 x 2
domain name
<chr> <chr>
1 tests.com test
2 tests.com success
v Cookies deleted.
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for more.tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for tests_nl.com put in the jar!
v Cookies for 127.0.0.1 put in the jar!
Saving _problems/test-req_cookiemonster_set-11.R
v Cookies for hb.cran.dev put in the jar!
v Cookies for hb.cran.dev put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
v Cookies for tests.com put in the jar!
[ FAIL 1 | WARN 1 | SKIP 1 | PASS 31 ]
══ Skipped tests (1) ═══════════════════════════════════════════════════════════
• length(find_cookiejar("Firefox")) == 0L is TRUE (1): 'test-browser.R:2:3'
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-req_cookiemonster_set.R:7:5'): setting cookies works ───────────
Error in `example_url()`: could not find function "example_url"
Backtrace:
▆
1. ├─testthat::expect_equal(...) at test-req_cookiemonster_set.R:4:3
2. │ └─testthat::quasi_label(enquo(object), label)
3. │ └─rlang::eval_bare(expr, quo_get_env(quo))
4. ├─httr2::resp_body_json(...) at test-req_cookiemonster_set.R:7:5
5. │ └─httr2:::check_response(resp)
6. │ └─httr2:::is_response(resp)
7. ├─httr2::req_perform(...)
8. │ └─httr2:::check_request(req)
9. │ └─httr2:::is_request(req)
10. ├─cookiemonster::req_cookiemonster_set(...)
11. │ └─httr2::req_options(req, cookie = get_cookies(url$hostname, as = "string"))
12. │ └─httr2:::check_request(.req)
13. │ └─httr2:::is_request(req)
14. ├─httr2::req_url_path(httr2::request(example_url()), "/cookies/set")
15. │ └─httr2:::check_request(req)
16. │ └─httr2:::is_request(req)
17. └─httr2::request(example_url())
18. └─httr2:::new_request(base_url)
19. └─httr2:::check_string(url, call = error_call)
20. └─httr2:::.rlang_check_is_string(...)
21. └─rlang::is_string(x)
[ FAIL 1 | WARN 1 | SKIP 1 | PASS 31 ]
Error:
! Test failures.
Execution halted
Flavors: r-release-macos-x86_64, r-oldrel-macos-x86_64
Current CRAN status: OK: 13
Current CRAN status: OK: 13