簡體   English   中英

如何運行測試包的測試

[英]How to run a package's testthat tests

對於給定的安裝包,我如何運行它的 testthat 測試? 我不是安裝包的開發者,我是用戶。 我只想運行它的測試套件以確認它的測試在我的環境中通過。 我試過test_checktest_package但我看到了錯誤。

更具體地說,我知道它的測試套件失敗了,我想在交互式 R 會話中運行測試,以便我可以調試它。

> require(eplusr)    # choice of package unimportant. Any using testthat will do.
Loading required package: eplusr
> require(testthat)
Loading required package: testthat
> test_check("eplusr")
Error in test_files(paths, reporter = reporter, env = env, stop_on_failure = stop_on_failure,  : 
  No matching test file in dir
> test_package("eplusr")
Error: No tests found for eplusr


> sessionInfo()
R version 3.5.1 (2018-07-02)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 18.04.1 LTS

Matrix products: default
BLAS: /usr/lib/x86_64-linux-gnu/openblas/libblas.so.3
LAPACK: /usr/lib/x86_64-linux-gnu/libopenblasp-r0.2.20.so

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C               LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8     LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8    LC_PAPER=en_US.UTF-8      
 [8] LC_NAME=C                  LC_ADDRESS=C               LC_TELEPHONE=C             LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] testthat_2.0.0 eplusr_0.9.1  

loaded via a namespace (and not attached):
 [1] Rcpp_0.12.18      magrittr_1.5      units_0.6-0       hms_0.4.2         progress_1.2.0    uuid_0.1-2        bit_1.1-14        debugme_1.1.0     R6_2.2.2          rlang_0.2.2      
[11] stringr_1.3.1     blob_1.1.1        tools_3.5.1       data.table_1.11.5 cli_1.0.0         DBI_1.0.0         withr_2.1.2       bit64_0.9-7       assertthat_0.2.0  digest_0.6.16    
[21] tibble_1.4.2      crayon_1.3.4      processx_3.2.0    readr_1.1.1       callr_3.0.0       later_0.7.4       base64enc_0.1-3   ps_1.1.0          fasttime_1.0-2    memoise_1.1.0    
[31] RSQLite_2.1.1     stringi_1.2.4     pillar_1.3.0      compiler_3.5.1    prettyunits_1.0.2 lubridate_1.7.4   pkgconfig_2.0.2  

R 不安裝默認情況下測試的測試。 為此,請嘗試:

install.packages('eplusr', INSTALL_opts="--install-tests", type='source')

然后,要么:

testthat::test_package('eplusr')

或者使用內置的testInstalledPackage

tools::testInstalledPackage('eplusr')

您不能(除非您重新安裝覆蓋默認行為,如 Brodie 的回答所示)。

這是一個設計缺陷^ Hchoice。 testthattestthat ,決定通過強制放置在tests/目錄中來默認安裝測試。 R 提供了一個選項來覆蓋它(如圖所示),該選項通常不會打開。 因此陷入了困境。

當然, RUnit一直在inst/進行測試, RUnit一直是正確的。 所以如果一個包使用RUnit你可以在安裝后運行它的測試。 無需重新安裝它。

編輯: 1 1/2 年后,我們中的許多人現在都使用去年推出的tinytest包。 除其他優點外,還可以非常輕松地測試已安裝的軟件包。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM