Crandore Hub

disposables

Create Disposable R Packages for Testing

Create disposable R packages for testing. You can create, install and load multiple R packages with a single function call, and then unload, uninstall and destroy them with another function call. This is handy when testing how some R code or an R package behaves with respect to other packages.

README

```{r, setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
  comment = "#>",
  tidy = FALSE,
  error = FALSE)
```

# Disposable R packages, for testing purposes

[![Linux Build Status](https://travis-ci.org/gaborcsardi/disposables.svg?branch=master)](https://travis-ci.org/gaborcsardi/disposables)
[![Windows Build status](https://ci.appveyor.com/api/projects/status/github/gaborcsardi/disposables?svg=true)](https://ci.appveyor.com/project/gaborcsardi/disposables)
[![](http://www.r-pkg.org/badges/version/disposables)](http://www.r-pkg.org/pkg/disposables)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/disposables)](http://www.r-pkg.org/pkg/disposables)
[![Coverage Status](https://img.shields.io/codecov/c/github/gaborcsardi/disposables/master.svg)](https://codecov.io/github/gaborcsardi/disposables?branch=master)

## Features

The disposable packages are installed in R's temporary directory,
so they are cleaned up at the end of the R session.

`disposables` cleans up after itself, if an error happens during the
installation or loading of the disposable packages. If `make_packages()`
fails because of an error, it leaves to temporary garbage behind. In
particular,
* it cleans up the library path and restores `.libPaths()`,
* removes the temporary source package directories,
* removes the installes packages from `lib_dir`, and
* unloads the packages that it loaded before the error.

## Installation

You can install this R package from Github:

```{r eval = FALSE}
devtools::install_github("gaborcsardi/disposables")
```

## Usage

`make_packages()` creates, installs and loads R packages, it takes named
expressions, the names will be used as package names.

```{r}
library(disposables)
pkgs <- make_packages(
  foo1 = { f <- function() print("hello!") ; d <- 1:10 },
  foo2 = { f <- function() print("hello again!") ; d <- 11:20 }
)
```

The `foo1` and `foo2` packages are now loaded.

```{r}
"package:foo1" %in% search()
"package:foo2" %in% search()
```

You can dispose them with `dispose_packages()`. This unloads the packages
and deletes them from the library directory.

```{r}
dispose_packages(pkgs)
"package:foo1" %in% search()
"package:foo2" %in% search()
file.exists(pkgs$lib_dir)
```

Here is a real example that tests cross-package inheritence of
[R6 classes](https://github.com/wch/R6).

```{r}
library(disposables)
library(testthat)
test_that("inheritance works across packages", {

  pkgs <- make_packages(
    imports = "R6",

    ## Code to put in package 'R6testA'
    R6testA = {
      AC <- R6Class(
        public = list(
          x = 1
        )
      )
    },

    ## Code to put in package 'R6testB'
    R6testB = {
      BC <- R6Class(
        inherit = R6testA::AC,
        public = list(
          y = 2
        )
      )
    }

  )

  ## In case of an error below
  on.exit(try(dispose_packages(pkgs), silent = TRUE), add = TRUE)

  ## Now ready for the tests
  B <- BC$new()
  expect_equal(B$x, 1)
  expect_equal(B$y, 2)

})
```

## License

MIT @ Gábor Csárdi

Versions across snapshots

VersionRepositoryFileSize
1.0.3 2026-04-09 windows/windows R-4.5 disposables_1.0.3.zip 25.4 KiB

Dependencies (latest)

Depends

Imports

Suggests