Last updated on 2025-01-15 02:50:00 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.1.3 | 5.29 | 45.85 | 51.14 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.1.3 | 3.70 | 33.05 | 36.75 | ERROR | |
r-devel-linux-x86_64-fedora-clang | 0.1.3 | 83.02 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.1.3 | 97.04 | OK | |||
r-devel-windows-x86_64 | 0.1.3 | 8.00 | 71.00 | 79.00 | OK | |
r-patched-linux-x86_64 | 0.1.2 | 5.28 | 41.94 | 47.22 | OK | |
r-release-linux-x86_64 | 0.1.2 | 4.74 | 42.54 | 47.28 | OK | |
r-release-macos-arm64 | 0.1.3 | 66.00 | OK | |||
r-release-macos-x86_64 | 0.1.3 | 74.00 | OK | |||
r-release-windows-x86_64 | 0.1.3 | 7.00 | 67.00 | 74.00 | OK | |
r-oldrel-macos-arm64 | 0.1.3 | 55.00 | OK | |||
r-oldrel-macos-x86_64 | 0.1.3 | 86.00 | OK | |||
r-oldrel-windows-x86_64 | 0.1.3 | 7.00 | 62.00 | 69.00 | ERROR |
Version: 0.1.3
Check: examples
Result: ERROR
Running examples in ‘webdav-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: webdav_create_directory
> ### Title: Create a collection (directory) on a WebDAV server
> ### Aliases: webdav_create_directory
>
> ### ** Examples
>
>
> # Example usage with a public WebDAV server.
> # Visit test_server$url link to view the results of the operation.
> library(magrittr)
> library(httr2)
> test_server <- "https://www.webdavserver.com/" %>%
+ request() %>%
+ req_retry(max_tries = 3, max_seconds = 4, backoff = ~ 1) %>%
+ req_perform() %>%
+ try(silent = TRUE)
>
> # Create a directory on the WebDAV server
> if (class(test_server) != "try-error")
+ webdav_create_directory(base_url = test_server$url, folder_path = "Test_Folder", verbose = TRUE)
Folder path to create: Test_Folder
Base URL: https://www.webdavserver.com/User5e29f3b/Test_Folder
Username: Not provided
Request object created successfully.
No authentication added.
Error during directory creation: Failed to perform HTTP request.
Error in value[[3L]](cond) : Failed to create directory.
Calls: webdav_create_directory ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.1.3
Check: examples
Result: ERROR
Running examples in 'webdav-Ex.R' failed
The error most likely occurred in:
> ### Name: webdav_create_directory
> ### Title: Create a collection (directory) on a WebDAV server
> ### Aliases: webdav_create_directory
>
> ### ** Examples
>
>
> # Example usage with a public WebDAV server.
> # Visit test_server$url link to view the results of the operation.
> library(magrittr)
> library(httr2)
> test_server <- "https://www.webdavserver.com/" %>%
+ request() %>%
+ req_retry(max_tries = 3, max_seconds = 4, backoff = ~ 1) %>%
+ req_perform() %>%
+ try(silent = TRUE)
>
> # Create a directory on the WebDAV server
> if (class(test_server) != "try-error")
+ webdav_create_directory(base_url = test_server$url, folder_path = "Test_Folder", verbose = TRUE)
Folder path to create: Test_Folder
Base URL: https://www.webdavserver.com/Userf59069c/Test_Folder
Username: Not provided
Request object created successfully.
No authentication added.
Error during directory creation: Failed to perform HTTP request.
Error in value[[3L]](cond) : Failed to create directory.
Calls: webdav_create_directory ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted
Flavor: r-oldrel-windows-x86_64