opnsense-src/libexec/nuageinit/tests/adduser_passwd.lua
Baptiste Daroussin 3e2a7a2cbe nuageinit: add test about encrypted passwords
While here fix fc34a2463c where the
adduser_passwd.lua file was not added
2024-11-20 11:02:55 +01:00

20 lines
455 B
Lua

#!/usr/libexec/flua
local n = require("nuage")
local pw = {}
pw.name = "foo"
pw.plain_text_passwd = "bar"
local res = n.adduser(pw)
if not res then
n.err("valid user should return a path")
end
local pw2 = {}
pw2.name = "foocrypted"
-- barcrypted
pw2.passwd = "$6$ZY8faYcEfyoEZnNX$FuAZA2SKhIfYLebhEtbmjptQNrenr6mJhji35Ru.zqdaa6G/gkKiHoQuh0vYZTKrjaykyohR8W4Q5ZF56yt8u1"
res = n.adduser(pw2)
if not res then
n.err("valid user should return a path")
end