1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
context("Layer")
# Parameters --------------------------------------------------------------
test_that("aesthetics go in aes_params", {
l <- geom_point(size = "red")
expect_equal(l$aes_params, list(size = "red"))
})
test_that("unknown params create warning", {
expect_warning(geom_point(blah = "red"), "unknown parameters")
})
test_that("unknown aesthietcs create warning", {
expect_warning(geom_point(aes(blah = "red")), "unknown aesthetics")
})
test_that("unknown NULL asthetic doesn't create warning (#1909)", {
expect_warning(geom_point(aes(blah = NULL)), NA)
})
test_that("column vectors are allowed (#2609)", {
df <- data_frame(x = 1:10)
df$y <- scale(1:10) # Returns a column vector
p <- ggplot(df, aes(x, y))
expect_is(layer_data(p), "data.frame")
})
test_that("missing aesthetics trigger informative error", {
df <- data_frame(x = 1:10)
expect_error(
ggplot_build(ggplot(df) + geom_line()),
"requires the following missing aesthetics:"
)
expect_error(
ggplot_build(ggplot(df) + geom_col()),
"requires the following missing aesthetics:"
)
})
test_that("function aesthetics are wrapped with stat()", {
df <- data_frame(x = 1:10)
expect_error(
ggplot_build(ggplot(df, aes(colour = density, fill = density)) + geom_point()),
"Aesthetics must be valid data columns. Problematic aesthetic(s): colour = density, fill = density",
fixed = TRUE
)
})
test_that("computed stats are in appropriate layer", {
df <- data_frame(x = 1:10)
expect_error(
ggplot_build(ggplot(df, aes(colour = stat(density), fill = stat(density))) + geom_point()),
"Aesthetics must be valid computed stats. Problematic aesthetic(s): colour = stat(density), fill = stat(density)",
fixed = TRUE
)
})
test_that("if an aes is mapped to a function that returns NULL, it is removed", {
df <- data_frame(x = 1:10)
null <- function(...) NULL
p <- cdata(ggplot(df, aes(x, null())))
expect_identical(names(p[[1]]), c("x", "PANEL", "group"))
})
# Data extraction ---------------------------------------------------------
test_that("layer_data returns a data.frame", {
l <- geom_point()
expect_equal(l$layer_data(mtcars), mtcars)
l <- geom_point(data = head(mtcars))
expect_equal(l$layer_data(mtcars), head(mtcars))
l <- geom_point(data = head)
expect_equal(l$layer_data(mtcars), head(mtcars))
l <- geom_point(data = ~ head(., 10))
expect_equal(l$layer_data(mtcars), head(mtcars, 10))
l <- geom_point(data = nrow)
expect_error(l$layer_data(mtcars), "Data function must return a data.frame")
})
|