forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-annotate.r
51 lines (44 loc) · 1.61 KB
/
test-annotate.r
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
context("annotate")
test_that("dates in segment annotation work", {
dt <- structure(list(month = structure(c(1364774400, 1377993600),
class = c("POSIXct", "POSIXt"), tzone = "UTC"), total = c(-10.3,
11.7)), .Names = c("month", "total"), row.names = c(NA, -2L), class =
"data.frame")
p <- ggplot(dt, aes(month, total)) +
geom_point() +
annotate("segment",
x = as.POSIXct("2013-04-01"),
xend = as.POSIXct("2013-07-01"),
y = -10,
yend = 10
)
expect_true(all(c("xend", "yend") %in% names(layer_data(p, 2))))
})
test_that("segment annotations transform with scales", {
# Line should match data points
df <- data_frame(x = c(1, 10), y = c(10, 1))
plot <- ggplot(df, aes(x, y)) +
geom_point() +
annotate("segment", x = 1, y = 10, xend = 10, yend = 1, colour = "red") +
scale_y_reverse(NULL, breaks = NULL) +
scale_x_continuous(NULL, breaks = NULL)
expect_doppelganger("line matches points", plot)
})
test_that("annotation_* has dummy data assigned and don't inherit aes", {
custom <- annotation_custom(zeroGrob())
logtick <- annotation_logticks()
library(maps)
usamap <- map_data("state")
map <- annotation_map(usamap)
rainbow <- matrix(hcl(seq(0, 360, length.out = 50 * 50), 80, 70), nrow = 50)
raster <- annotation_raster(rainbow, 15, 20, 3, 4)
dummy <- dummy_data()
expect_equal(custom$data, dummy)
expect_equal(logtick$data, dummy)
expect_equal(map$data, dummy)
expect_equal(raster$data, dummy)
expect_false(custom$inherit.aes)
expect_false(logtick$inherit.aes)
expect_false(map$inherit.aes)
expect_false(raster$inherit.aes)
})