Nothing
# Test format cookies
# import functions
cpp_format_cookies = RestRserve:::cpp_format_cookies
# Empty object
expect_equal(cpp_format_cookies(NULL), "")
expect_equal(cpp_format_cookies(list()), "")
expect_error(cpp_format_cookies(NA))
expect_error(cpp_format_cookies(list(name = "value")), "cookie object must contain")
# Test list of cookies
cookies = list(
list(name = "var1", value = "val1"),
list(name = "var2", value = "val2", path = "/", domain = "example.com"),
list(name = "var3", value = "val3", secure = TRUE),
list(name = "var4", value = "val4", secure = TRUE, http_only = TRUE),
list(name = "var5", value = "val5", path = "/", domain = "example.com", http_only = TRUE)
)
v = paste(
"Set-Cookie: var1=val1",
"Set-Cookie: var2=val2; Path=/; Domain=example.com",
"Set-Cookie: var3=val3; Secure",
"Set-Cookie: var4=val4; Secure; HttpOnly",
"Set-Cookie: var5=val5; Path=/; Domain=example.com; HttpOnly",
sep = "\r\n"
)
r = cpp_format_cookies(cookies)
expect_equal(r, v)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.