This file is indexed.

/usr/lib/R/site-library/Biobase/unitTests/test_subListExtract.R is in r-bioc-biobase 2.34.0-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
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
library("Biobase")

## simple test list
innerL <- list(i=4L,
               d=1.23,
               l=FALSE,
               n=NULL,
               na=NA,
               s="foo",
               c=3+4i,
               r=charToRaw("g"))
len <- 20L
L <- rep(list(innerL), len)
names(L) <- paste("X", 1:len, sep="")

## unit tests for basic API
test_extract_all_types <- function() {
    for (w in names(innerL)) {
        if (is.null(innerL[[w]]))
          want <- vector(mode="list", length=len)
        else
          want <- as.list(rep(innerL[[w]], len))
        names(want) <- names(L)
        checkEquals(want, subListExtract(L, w))
    }
}

test_simplify_extract_all_types <- function() {
    for (w in names(innerL)) {
        if (is.null(innerL[[w]]))
          next
        else
          want <- rep(innerL[[w]], len)
        names(want) <- names(L)
        checkEquals(want, subListExtract(L, w, simplify=TRUE),
                    msg=paste("extracting", w))
    }
}

test_basic_extract <- function() {
    want <- as.list(rep(4L, len))
    names(want) <- names(L)

    checkEquals(want, subListExtract(L, "i"))
    checkEquals(names(L), names(subListExtract(L, "i")))
    checkEquals(NULL, names(subListExtract(L, "i", keep.names=FALSE)))
}

test_simplify_extract <- function() {
    want <- rep(4L, len)
    names(want) <- names(L)

    checkEquals(want, subListExtract(L, "i", simplify=TRUE))
}

test_simplify_fails_extract <- function() {
    L[[1]] <- list(d=matrix(1:10, ncol=2))

    checkException(subListExtract(L, "i", simplify=TRUE),
                   silent=TRUE)
}

test_extract_bad_inner <- function() {
    L[[3]] <- list(foo=1)

    checkException(subListExtract(L, "i"), silent=TRUE)
}

test_extract_from_empty <- function() {
    checkEquals(list(), subListExtract(list(), "foo"))

    ## but you can't simplify
    checkException(subListExtract(list(), "foo", simplify=TRUE))
}