* using log directory ‘/data/blackswan/ripley/R/packages/tests-devel/ced.Rcheck’ * using R Under development (unstable) (2022-10-14 r83104) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * checking for file ‘ced/DESCRIPTION’ ... OK * checking extension type ... Package * this is package ‘ced’ version ‘1.0.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package ‘ced’ can be installed ... [41s/22s] OK * checking package directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking R files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd line widths ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking line endings in C/C++/Fortran sources/headers ... OK * checking line endings in Makefiles ... OK * checking compilation flags in Makevars ... OK * checking for GNU extensions in Makefiles ... OK * checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK * checking use of PKG_*FLAGS in Makefiles ... OK * checking use of SHLIB_OPENMP_*FLAGS in Makefiles ... OK * checking compilation flags used ... OK * checking compiled code ... OK * checking examples ... OK * checking examples with --run-donttest ... ERROR Running examples in ‘ced-Ex.R’ failed The error most likely occurred in: > ### Name: ced_enc_detect > ### Title: Detect Encoding > ### Aliases: ced_enc_detect > > ### ** Examples > > # detect character vector with ASCII strings > ascii <- "I can eat glass and it doesn't hurt me." > ced_enc_detect(ascii) [1] "US-ASCII" > ced_enc_detect(charToRaw(ascii)) [1] "US-ASCII" > > # detect character vector with UTF-8 strings > utf8 <- "\u4e0b\u5348\u597d" > print(utf8) [1] "下午好" > ced_enc_detect(utf8) [1] "UTF-8" > ced_enc_detect(charToRaw(utf8)) [1] "UTF-8" > > # path to examples > ex_path <- system.file("test.txt", package = "ced") > ex_txt <- read.dcf(ex_path, all = TRUE) > > # russian text > print(ex_txt[["France"]]) NULL > ced_enc_detect(ex_txt[["Russian"]]) [1] "UTF-8" > ced_enc_detect(iconv(ex_txt[["Russian"]], "utf8", "ibm866")) [1] "IBM866" > ced_enc_detect(iconv(ex_txt[["Russian"]], "utf8", "windows-1251")) [1] "windows-1251" > ced_enc_detect(iconv(ex_txt[["Russian"]], "utf8", "koi8-r")) [1] "KOI8-R" > > # chinese text > print(ex_txt[["Chinese"]]) [1] "我能吞下玻璃而不伤身体。" > ced_enc_detect(ex_txt[["Chinese"]]) [1] "UTF-8" > ced_enc_detect(iconv(ex_txt[["Chinese"]], "utf8", "gb18030")) [1] "GB2312" > > # korean text > print(ex_txt[["Korean"]]) [1] "나는 유리를 먹을 수 있어요. 그래도 아프지 않아요" > ced_enc_detect(ex_txt[["Korean"]]) [1] "UTF-8" > ced_enc_detect(iconv(ex_txt[["Korean"]], "utf8", "uhc")) [1] "EUC-KR" > ced_enc_detect(iconv(ex_txt[["Korean"]], "utf8", "iso-2022-kr")) [1] "ISO-2022-KR" > > # japanese text > print(ex_txt[["Japanese"]]) [1] "私はガラスを食べられます。それは私を傷つけません。" > ced_enc_detect(ex_txt[["Japanese"]]) [1] "UTF-8" > ced_enc_detect(iconv(ex_txt[["Japanese"]], "utf8", "shift_jis")) [1] "Shift_JIS" > ced_enc_detect(iconv(ex_txt[["Japanese"]], "utf8", "iso-2022-jp")) [1] "ISO-2022-JP" > > > ## No test: > # detect encoding of the web pages content > if (require("curl")) { + detect_enc_url <- function(u) ced_enc_detect(curl_fetch_memory(u)$content) + detect_enc_url("https://www.corriere.it") + detect_enc_url("https://www.vk.com") + detect_enc_url("https://www.qq.com") + detect_enc_url("https://kakaku.com") + detect_enc_url("https://etoland.co.kr") + } Loading required package: curl Using libcurl 7.76.1 with OpenSSL/1.1.1n-fips Error in curl_fetch_memory(u) : SSL peer certificate or SSH remote key was not OK: [vk.com] SSL: no alternative certificate subject name matches target host name 'vk.com' Calls: detect_enc_url -> ced_enc_detect -> curl_fetch_memory Execution halted * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... Running ‘tinytest.R’ OK * checking PDF version of manual ... OK * checking for non-standard things in the check directory ... OK * checking for detritus in the temp directory ... OK * checking for new files in some other directories ... OK * DONE Status: 1 ERROR See ‘/data/blackswan/ripley/R/packages/tests-devel/ced.Rcheck/00check.log’ for details. Command exited with non-zero status 1 Time 0:54.16, 61.23 + 9.81