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
|
test_that("can add and remove headers", {
req <- request("http://example.com")
req <- req %>% req_headers(x = 1)
expect_equal(req$headers, new_headers(list(x = 1)))
req <- req %>% req_headers(x = NULL)
expect_equal(req$headers, new_headers(list()))
})
test_that("can add header called req", {
req <- request("http://example.com")
req <- req %>% req_headers(req = 1)
expect_equal(req$headers, new_headers(list(req = 1)))
})
test_that("can add repeated headers", {
resp <- request_test() %>%
req_headers(a = c("a", "b")) %>%
req_dry_run(quiet = TRUE)
# https://datatracker.ietf.org/doc/html/rfc7230#section-3.2.2
expect_equal(resp$headers$a, c("a,b"))
})
test_that("replacing headers is case-insensitive", {
req <- request("http://example.com")
req <- req %>% req_headers(A = 1)
req <- req %>% req_headers(a = 2)
expect_equal(req$headers, new_headers(list(a = 2)))
})
# redaction ---------------------------------------------------------------
test_that("can control which headers to redact", {
req <- request("http://example.com")
expect_redacted(req_headers(req, a = 1L, b = 2L), character())
expect_redacted(req_headers(req, a = 1L, b = 2L, .redact = "a"), "a")
expect_redacted(req_headers(req, a = 1L, b = 2L, .redact = c("a", "b")), c("a", "b"))
})
test_that("only redacts supplied headers", {
req <- request("http://example.com")
expect_redacted(req_headers(req, a = 1L, b = 2L, .redact = "d"), character())
})
test_that("redaction preserved across calls", {
req <- request("http://example.com")
req <- req_headers(req, a = 1L, .redact = "a")
req <- req_headers(req, a = 2)
expect_redacted(req, "a")
})
test_that("req_headers_redacted redacts all headers", {
req <- request("http://example.com")
expect_redacted(req_headers_redacted(req, a = 1L, b = 2L), c("a", "b"))
})
test_that("is case insensitive", {
req <- request("http://example.com")
req <- req_headers(req, a = 1L, .redact = "A")
expect_redacted(req, "A")
expect_snapshot(req)
# Test the other direction too, just to be safe
req <- request("http://example.com")
req <- req_headers(req, A = 1L, .redact = "a")
expect_redacted(req, "a")
})
test_that("authorization is always redacted", {
req <- request("http://example.com")
expect_redacted(req_headers(req, Authorization = "X"), "Authorization")
})
test_that("checks input types", {
req <- request("http://example.com")
expect_snapshot(error = TRUE, {
req_headers(req, a = 1L, b = 2L, .redact = 1L)
})
})
|