File: test-source.R

package info (click to toggle)
r-cran-testthat 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,048 kB
  • sloc: cpp: 9,269; sh: 14; ansic: 14; makefile: 5
file content (235 lines) | stat: -rw-r--r-- 4,707 bytes parent folder | download
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
test_that("source_file always uses UTF-8 encoding", {
  has_locale <- function(l) {
    has <- TRUE
    tryCatch(
      withr::with_locale(c(LC_CTYPE = l), "foobar"),
      warning = function(w) has <<- FALSE,
      error = function(e) has <<- FALSE
    )
    has
  }

  ## Some text in UTF-8
  tmp <- tempfile()
  withr::defer(unlink(tmp))
  utf8 <- as.raw(c(
    0xc3,
    0xa1,
    0x72,
    0x76,
    0xc3,
    0xad,
    0x7a,
    0x74,
    0xc5,
    0xb1,
    0x72,
    0xc5,
    0x91,
    0x20,
    0x74,
    0xc3,
    0xbc,
    0x6b,
    0xc3,
    0xb6,
    0x72,
    0x66,
    0xc3,
    0xba,
    0x72,
    0xc3,
    0xb3,
    0x67,
    0xc3,
    0xa9,
    0x70
  ))
  writeBin(c(charToRaw("x <- \""), utf8, charToRaw("\"\n")), tmp)

  run_test <- function(locale) {
    if (has_locale(locale)) {
      env <- new.env()
      withr::with_locale(
        c(LC_CTYPE = locale),
        source_file(tmp, env = env, wrap = FALSE)
      )
      expect_equal(Encoding(env$x), "UTF-8")
      expect_equal(charToRaw(env$x), utf8)
    }
  }

  ## Try to read it in latin1 and UTF-8 locales
  ## They have different names on Unix and Windows
  run_test("en_US.ISO8859-1")
  run_test("en_US.UTF-8")
  run_test("English_United States.1252")
  run_test("German_Germany.1252")
  run_test(Sys.getlocale("LC_CTYPE"))
})

test_that("source_file wraps error", {
  expect_snapshot(error = TRUE, {
    source_file(test_path("reporters/error-setup.R"), wrap = FALSE)
  })
})

test_that("checks its inputs", {
  expect_snapshot(error = TRUE, {
    source_file(1)
    source_file("x")
    source_file(".", "x")
  })
})

# filter_desc -------------------------------------------------------------

test_that("works with all subtest types", {
  code <- exprs(
    test_that("foo", {}),
    describe("bar", {}),
    it("baz", {})
  )
  expect_equal(filter_desc(code, "foo"), code[1])
  expect_equal(filter_desc(code, "bar"), code[2])
  expect_equal(filter_desc(code, "baz"), code[3])
})

test_that("only returns non-subtest code before subtest", {
  code <- exprs(
    f(),
    test_that("bar", {}),
    describe("foo", {}),
    g(),
    h()
  )
  expect_equal(filter_desc(code, "foo"), code[c(1, 3)])
})

test_that("can select recursively", {
  code <- exprs(
    x <- 1,
    describe("a", {
      y <- 1
      describe("b", {
        z <- 1
      })
      y <- 2
    }),
    x <- 2
  )

  expect_equal(
    filter_desc(code, c("a", "b")),
    exprs(
      x <- 1,
      describe("a", {
        y <- 1
        describe("b", {
          z <- 1
        })
      })
    )
  )
})

test_that("works on code like the describe() example", {
  code <- exprs(
    describe("math library", {
      x1 <- 1
      x2 <- 1
      describe("addition()", {
        it("can add two numbers", {
          expect_equal(x1 + x2, addition(x1, x2))
        })
      })
      describe("division()", {
        x1 <- 10
        x2 <- 2
        it("can divide two numbers", {
          expect_equal(x1 / x2, division(x1, x2))
        })
        it("can handle division by 0") #not yet implemented
      })
    })
  )

  expect_equal(
    filter_desc(
      code,
      c("math library", "division()", "can divide two numbers")
    ),
    exprs(
      describe("math library", {
        x1 <- 1
        x2 <- 1
        describe("division()", {
          x1 <- 10
          x2 <- 2
          it("can divide two numbers", {
            expect_equal(x1 / x2, division(x1, x2))
          })
        })
      })
    )
  )

  # what happens for an unimplemented specification?
  expect_snapshot(
    error = TRUE,
    filter_desc(
      code,
      c("math library", "division()", "can handle division by 0")
    )
  )
})

test_that("preserve srcrefs", {
  code <- parse(
    keep.source = TRUE,
    text = '
    test_that("foo", {
      # this is a comment
    })
  '
  )
  expect_snapshot(filter_desc(code, "foo"))
})

test_that("errors if zero or duplicate labels", {
  code <- exprs(
    f(),
    test_that("baz", {}),
    test_that("baz", {}),
    g()
  )

  expect_snapshot(error = TRUE, {
    filter_desc(code, "baz")
    filter_desc(code, "missing")
  })
})

test_that("source_dir()", {
  res <- source_dir("test_dir", pattern = "hello", chdir = TRUE, wrap = FALSE)
  expect_equal(res[[1]](), "Hello World")

  res <- source_dir(
    normalizePath("test_dir"),
    pattern = "hello",
    chdir = TRUE,
    wrap = FALSE
  )
  expect_equal(res[[1]](), "Hello World")

  res <- source_dir("test_dir", pattern = "hello", chdir = FALSE, wrap = FALSE)
  expect_equal(res[[1]](), "Hello World")

  res <- source_dir(
    normalizePath("test_dir"),
    pattern = "hello",
    chdir = FALSE,
    wrap = FALSE
  )
  expect_equal(res[[1]](), "Hello World")
})