tests/testthat/test-per-node-retention.r

suppressPackageStartupMessages({library(igraph)})

network <- graph_from_adjacency_matrix(matrix(
  c(0, 1, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 1, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 1, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 1, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0 ,0,
    0, 0, 0, 0, 0, 0, 0, 1, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 1,
    0, 0, 0, 0, 0, 0, 0, 0, 0), nrow=9, byrow=TRUE))
retention <- c(0, 0, 0, 0, 0.5, 0, 0, 1, 0)
V(network)$name <- 1:9
start_run <- data.frame(node=as.factor(c(1, 4, 7)), activation=100, time=0)

test_that("error if length of retention numeric vector is wrong", {
  expect_snapshot_error(
    spreadr(network, start_run, time=5, retention=c(0.5, 0.7), include_t0=TRUE))
})

test_that("per-node retention works well", {
  layout <- layout_on_grid(network)
  results <- spreadr(
    network, start_run, time=5, retention=retention, include_t0=TRUE)
  results <- suppressMessages(dplyr::left_join(
    results, data.frame(node=as.factor(1:9), x=layout[,1], y=layout[,2])))
  expect_snapshot(results)
})

test_that("per-node retention works well with animated GIF", {
  skip_if_not_installed("ggraph")
  skip_if_not_installed("gganimate")
  skip_if_not_installed("gifski")  # gif renderer, requires cargo (as in rust)
  skip_if(
    Sys.getenv("TEST_ANIMATED_GIF") == "",
    paste0(c(
      "The snapshot tests for animated GIFs may fail if you are on a different ",
      "development environment than the one which had generated and committed the ",
      "current GIF snapshots. To continue with this test, set the environment variable",
      "TEST_ANIMATED_GIF to any non-empty string. Then, feel free to overwrite and",
      "commit the current snapshot with the ones you have generated."),
      collapse="\n"))
  suppressPackageStartupMessages({
    library(ggraph)
    library(gganimate)})

  layout <- layout_on_grid(network)
  results <- spreadr(
    network, start_run, time=5, retention=retention, include_t0=TRUE)
  results <- suppressMessages(dplyr::left_join(
    results, data.frame(node=as.factor(1:9), x=layout[,1], y=layout[,2])))

  g <- ggraph(network, layout) +
    # Draw edges with arrows, end_cap is padding between arrow tip and node.
    geom_edge_link(arrow=arrow(), end_cap=circle(5, "mm")) +
    # Draw nodes, including information about activation for transition_manual
    geom_node_point(
      data=results, size=10, mapping=aes(x=x, y=y, colour=activation)) +
    # Label nodes, nudging a bit to the right for aesthetics
    geom_node_label(aes(label=name), nudge_x=.13) +
    # State the parameters of the simulation. Nodes 1, 2, 3 are at the bottom.
    # 7, 8, 9 at the top.
    annotate("text", x=0.1, y=2.1, hjust=0, label="retentions: c(0, 1, 0)") +
    annotate("text", x=0.1, y=1.1, hjust=0, label="retentions: c(0, 0.5, 0)") +
    annotate("text", x=0.1, y=0.1, hjust=0, label="retentions: c(0, 0, 0)") +
    # State time point in the title of the plot
    labs(title="t = {current_frame}") +
    transition_manual(time)

  # Silence side-effect prints and messages
  capture.output(
    suppressMessages(
      anim_save("per-node-retention.gif", g, renderer=gifski_renderer())))

  expect_snapshot_file("per-node-retention.gif")
})
csqsiew/spreadr documentation built on April 8, 2023, 12:42 a.m.