This file is indexed.

/usr/lib/R/site-library/igraph/tests/test_as.directed.R is in r-cran-igraph 0.7.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
context("as.directed")

test_that("as.directed works", {
  library(igraph)
  
  g <- erdos.renyi.game(100, 2/100)
  g2 <- as.directed(g, mode="mutual")
  g3 <- as.directed(g, mode="arbitrary")

  expect_that(degree(g), equals(degree(g3)))
  expect_that(degree(g), equals(degree(g2) / 2))  

  expect_that(graph.isomorphic(g, as.undirected(g2)), is_true())
  expect_that(graph.isomorphic(g, as.undirected(g3)), is_true())
})

test_that("as.directed keeps attributes", {
  library(igraph)
  g <- graph.formula( A-B-C, D-A, E )
  g$name <- "Small graph"
  g2 <- as.directed(g, mode="mutual")
  g3 <- as.directed(g, mode="arbitrary")
  expect_that(g2$name, equals(g$name))
  expect_that(V(g2)$name, equals(V(g)$name))
  expect_that(g3$name, equals(g$name))
  expect_that(V(g3)$name, equals(V(g)$name))

  E(g)$weight <- seq_len(ecount(g))
  g4 <- as.directed(g, "mutual") ; df4 <- get.data.frame(g4)  
  g5 <- as.directed(g, "arbitrary") ; df5 <- get.data.frame(g5)
  expect_that(df4[order(df4[,1], df4[,2]),]$weight, equals(c(1,2,1,3,3,2)))
  expect_that(df5[order(df5[,1], df5[,2]),]$weight, equals(1:3))
})