chore(tests): include test for custom user agent

This commit is contained in:
Erica Marigold 2024-04-20 19:22:07 +05:30
parent 358fe3a8e4
commit d07168d60b
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -0,0 +1,9 @@
local net = require("@lune/net")
local runtime, version = table.unpack(_VERSION:split(" "))
local expectedUserAgent = runtime:lower() .. "/" .. version
local userAgent: string =
net.jsonDecode(net.request("https://www.whatsmyua.info/api/v1/ua").body)[1].ua.rawUa
assert(userAgent == expectedUserAgent, "Expected user agent to be " .. expectedUserAgent)