test_that("bad inputs give informative warnings", { topics <- tibble::tribble( ~name, ~alias, ~internal, ~concepts, "x", c("x", "x1"), FALSE, character(), ) expect_snapshot(error = TRUE, { t <- select_topics("x + ", topics) t <- select_topics("y", topics) t <- select_topics("paste(1)", topics) t <- select_topics("starts_with", topics) t <- select_topics("1", topics) t <- select_topics("starts_with('y')", topics, check = TRUE) }) }) test_that("empty input returns empty vector", { topics <- tibble::tribble( ~name, ~alias, ~internal, ~concepts, "x", c("x", "x1"), FALSE, character(), ) expect_equal(select_topics(character(), topics), integer()) }) test_that("can select by name or alias", { topics <- tibble::tribble( ~name, ~alias, "x", c("a1", "a2"), "a", c("a3"), "a-b", "b-a", "c::d", "d", ) expect_equal(select_topics("x", topics), 1) expect_equal(select_topics("'x'", topics), 1) expect_equal(select_topics("a1", topics), 1) expect_equal(select_topics("a2", topics), 1) expect_equal(select_topics("c::d", topics), 4) # Even if name is non-syntactic expect_equal(select_topics("a-b", topics), 3) expect_equal(select_topics("b-a", topics), 3) # Or missing expect_snapshot(error = TRUE, { select_topics("a4", topics) select_topics("c::a", topics) }) }) test_that("selection preserves original order", { topics <- tibble::tribble( ~name, ~alias, "x", c("a1", "a2"), "a", c("a3"), "b", "b1" ) expect_equal(select_topics(c("a", "b1", "x"), topics), c(2, 3, 1)) }) test_that("can select by name", { topics <- tibble::tribble( ~name, ~alias, ~internal, "a", "a", FALSE, "b1", "b1", FALSE, "b2", "b2", FALSE, "b3", "b3", TRUE, ) topics$alias <- as.list(topics$alias) expect_equal(select_topics("starts_with('a')", topics), 1) expect_equal(select_topics("ends_with('a')", topics), 1) expect_equal(select_topics("contains('a')", topics), 1) expect_equal(select_topics("matches('[a]')", topics), 1) # Match internal when requested expect_equal(select_topics("starts_with('b')", topics), c(2, 3)) expect_equal(select_topics("starts_with('b', internal = TRUE)", topics), 2:4) }) test_that("can select by presense or absence of concept", { topics <- tibble::tribble( ~name, ~alias, ~internal, ~concepts, "b1", "b1", FALSE, "a", "b2", "b2", FALSE, c("a", "b"), "b3", "b3", FALSE, character() ) topics$alias <- as.list(topics$alias) expect_equal(select_topics("has_concept('a')", topics), c(1, 2)) expect_equal(select_topics("lacks_concept('b')", topics), c(1, 3)) expect_equal(select_topics("lacks_concepts(c('a', 'b'))", topics), 3) }) test_that("can select by keyword", { topics <- tibble::tribble( ~name, ~alias, ~internal, ~keywords, "b1", "b1", FALSE, "a", "b2", "b2", FALSE, c("a", "b"), ) topics$alias <- as.list(topics$alias) expect_equal(select_topics("has_keyword('a')", topics), c(1, 2)) expect_equal(select_topics("has_keyword('b')", topics), c(2)) expect_equal(select_topics("has_keyword('c')", topics), integer()) }) test_that("can combine positive and negative selections", { topics <- tibble::tribble( ~name, ~alias, ~internal, "x", c("a1", "a2"), FALSE, "a", c("a3"), FALSE, "b", "b1", FALSE, "d", "d", TRUE, ) expect_equal(select_topics("-x", topics), c(2, 3)) expect_equal(select_topics(c("-x", "-a"), topics), 3) expect_equal(select_topics(c("-x", "x"), topics), c(2, 3, 1)) expect_equal(select_topics(c("a", "x", "-a"), topics), 1) expect_error(select_topics("c(a, -x)", topics), "all negative or all positive") }) test_that("an unmatched selection generates a warning", { topics <- tibble::tribble( ~name, ~alias, ~internal, "x", c("a1", "a2"), FALSE, "a", c("a3"), FALSE, "b", "b1", FALSE, "d", "d", TRUE, ) expect_snapshot(error = TRUE, select_topics(c("a", "starts_with('unmatched')"), topics, check = TRUE), ) }) test_that("uses funs or aliases", { topics <- tibble::tribble( ~name, ~funs, ~alias, ~file_out, ~title, "x", character(), c("x1", "x2"), "x.html", "X", "y", c("y1", "y2"), "y3", "y.html", "Y" ) out <- section_topics(c("x", "y"), topics, ".") expect_equal(out$aliases, list(c("x1", "x2"), c("y1", "y2"))) }) test_that("full topic selection process works", { pkg <- local_pkgdown_site(test_path("assets/reference")) # can mix local and remote out <- section_topics(c("a", "base::mean"), pkg$topics, pkg$src_path) expect_equal(unname(out$name), c("a", "base::mean")) # concepts and keywords work out <- section_topics( c("has_concept('graphics')", "has_keyword('foo')"), pkg$topics, pkg$src_path ) expect_equal(unname(out$name), c("b", "a")) }) test_that("an unmatched selection with a matched selection does not select everything", { topics <- tibble::tribble( ~name, ~alias, ~internal, "x", c("a1", "a2"), FALSE, "a", c("a3"), FALSE, "b", "b1", FALSE, "d", "d", TRUE, ) expect_equal( select_topics(c("a", "starts_with('unmatched')"), topics, check = FALSE), 2 ) expect_equal( select_topics(c("starts_with('unmatched')", "a"), topics, check = FALSE), 2 ) })