This file is indexed.

/usr/share/doc/r-cran-igraph/tests/testthat/test_canonical.permutation.R is in r-cran-igraph 1.1.2-2ubuntu3.

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
context("canonical_permutation")

test_that("canonical_permutation works", {
  library(igraph)

  g1 <- sample_gnm(10, 20)
  cp1 <- canonical_permutation(g1)
  cf1 <- permute(g1, cp1$labeling)
     
  ## Do the same with a random permutation of it
  g2 <- permute(g1, sample(vcount(g1)))
  cp2 <- canonical_permutation(g2)
  cf2 <- permute(g2, cp2$labeling)
     
  ## Check that they are the same
  el1 <- as_edgelist(cf1)
  el2 <- as_edgelist(cf2)
  el1 <- el1[ order(el1[,1], el1[,2]), ]
  el2 <- el2[ order(el2[,1], el2[,2]), ]

  expect_that(el1, equals(el2))
})