Last updated on 2024-12-25 07:50:33 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.1.2 | 5.47 | 43.52 | 48.99 | ERROR | |
r-devel-linux-x86_64-debian-gcc | 0.1.2 | 3.45 | 33.30 | 36.75 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.1.2 | 81.84 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.1.2 | 93.86 | OK | |||
r-devel-windows-x86_64 | 0.1.2 | 7.00 | 78.00 | 85.00 | OK | |
r-patched-linux-x86_64 | 0.1.2 | 5.21 | 42.01 | 47.22 | OK | |
r-release-linux-x86_64 | 0.1.2 | 4.59 | 41.99 | 46.58 | ERROR | |
r-release-macos-arm64 | 0.1.2 | 49.00 | OK | |||
r-release-macos-x86_64 | 0.1.2 | 84.00 | OK | |||
r-release-windows-x86_64 | 0.1.2 | 6.00 | 66.00 | 72.00 | OK | |
r-oldrel-macos-arm64 | 0.1.2 | 57.00 | OK | |||
r-oldrel-macos-x86_64 | 0.1.2 | 91.00 | OK | |||
r-oldrel-windows-x86_64 | 0.1.2 | 7.00 | 72.00 | 79.00 | OK |
Version: 0.1.2
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/User820de63/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-clang
Version: 0.1.2
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_copy_file
> ### Title: Copy a resource on the WebDAV server
> ### Aliases: webdav_copy_file
>
> ### ** 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)
>
> # Copy a file from one path to another
> if (class(test_server) != "try-error")
+ webdav_copy_file(base_url = test_server$url,
+ from_path = "Project.pdf",
+ to_path = "New_Project.pdf",
+ verbose = TRUE)
Base URL: https://www.webdavserver.com/User5f96ea3
Copying from: Project.pdf to: New_Project.pdf
Source Path: https://www.webdavserver.com/User5f96ea3/Project.pdf
Destination Path: https://www.webdavserver.com/User5f96ea3/New_Project.pdf
Base URL: https://www.webdavserver.com/User5f96ea3/Project.pdf
Username: Not provided
Request object created successfully.
No authentication added.
Error during the copy process: Failed to perform HTTP request.
Error in value[[3L]](cond) : Failed to copy resource.
Calls: webdav_copy_file ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted
Flavor: r-release-linux-x86_64