r-lib/cli

Pluralisation fails for infinite values

eliocamp opened this issue · 1 comments

If the number used for pluralisation is Inf, message creation fails.

errormsg <- "{n_out} file{?s} expected"

n_out <- 1
cli::cli_text(errormsg)
#> 1 file expected

n_out <- 2
cli::cli_text(errormsg)
#> 2 files expected

n_out <- Inf
cli::cli_text(errormsg)
#> Warning in make_quantity(values$qty): NAs introduced by coercion to integer
#> range
#> Warning in make_quantity(values$qty): NAs introduced by coercion to integer
#> range
#> Error in if (qty != 1) parts[1] else "": missing value where TRUE/FALSE needed

The issue I think starts here, where the number is coerced to an integer. as.integer(Inf) is NA. Then here process_plural() runs if (length(parts) == 1), which is NA.

I'm not sure there's a standard way of pluralising infinite value, so the solution might be to catch the issue early and throw a better error instead of implementing plurals for Inf.

Closed by #716.