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 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
test_that("geom_text() checks input", {
expect_snapshot_error(geom_text(position = "jitter", nudge_x = 0.5))
})
# compute_just ------------------------------------------------------------
test_that("vertical and horizontal positions are equivalent", {
horiz <- compute_just(c("left", "middle", "right"), c(0, 0, 0))
vert <- compute_just(c("bottom", "center", "top"), c(0, 0, 0))
expect_equal(horiz, vert)
})
test_that("inward moves text towards center", {
expect_equal(
compute_just(c("inward", "inward", "inward"), c(0, 0.5, 1)),
c(0, 0.5, 1.0)
)
})
test_that("outward moves text away from center", {
expect_equal(
compute_just(c("outward", "outward", "outward"), c(0, 0.5, 1)),
c(1.0, 0.5, 0)
)
})
test_that("inward points close to center are centered", {
expect_equal(
compute_just(c("inward", "inward", "inward"), c(0.5 - 1e-3, 0.5, 0.5 + 1e-3)),
c(0.5, 0.5, 0.5)
)
})
test_that("inward moves text towards center at 90 degrees", {
expect_equal(
compute_just(c("inward", "inward", "inward"),
c(0, 0.5, 1),
c(0, 0.5, 1),
c(90, 90, 90)),
c(0, 0.5, 1.0)
)
})
test_that("outward moves text away from center at 90 degrees", {
expect_equal(
compute_just(c("outward", "outward", "outward"),
c(0, 0, 0),
c(0, 0.5, 1),
c(90, 90, 90)),
c(1.0, 0.5, 0)
)
})
test_that("only inward and outward respond to angle", {
expect_equal(
compute_just(c("inward", "left", "outward"),
c(0, 0, 0),
c(0, 0.5, 1),
c(90, 90, 90)),
c(0.0, 0.0, 0.0)
)
})
test_that("inward moves text towards center at 150 degrees", {
expect_equal(
compute_just(c("inward", "inward", "inward"),
c(0, 0.5, 1),
c(0, 0.5, 1),
c(150, 150, 150)),
c(1.0, 0.5, 0.0)
)
})
test_that("inward moves text towards center at -90 degrees", {
expect_equal(
compute_just(c("inward", "inward", "inward"),
c(0, 0.5, 1),
c(0, 0.5, 1),
c(-90, -90, -90)),
c(1.0, 0.5, 0.0)
)
})
test_that("outward moves text away from center at 450 degrees", {
expect_equal(
compute_just(c("inward", "inward", "inward"),
c(0, 0, 0),
c(0, 0.5, 1),
c(450, 450, 450)),
c(0.0, 0.5, 1.0)
)
})
|