Tests (112→115, +3)
- commands::additional_tests::no_duplicate_command_ids_across_packs
Catches accidental ID collisions across packs at PR time, with informative
error pointing to both offending packs.
- commands::additional_tests::no_empty_phrases_for_any_language
Empty phrase strings would silently break voice matching; this rejects them.
- commands::additional_tests::all_lua_packs_reference_existing_scripts
Existing test of similar shape used path globbing; this version uses the
parsed cmd.script field for a more precise error message.
Plus: runtime_config tests no longer race on shared env vars. Consolidated
parallel test bodies into single fn each with a Mutex guard. 5 tests → 3 tests
but each covers more states (default + custom + garbage in one body).
New packs
resources/commands/self_check/ (2 cmds)
- selfcheck.ping "ты тут" / "ты слышишь" / "пинг" / "ты живой"
Random pick from 5 short canned replies — no LLM call,
no network. Pure mic-chain + TTS smoke test.
- selfcheck.smoke "проверь себя" / "самопроверка"
Reads jarvis.health() + tries one HTTP request,
speaks list of "X работает, Y работает...".
resources/commands/ssl_check/ (1 cmd)
- ssl.check "проверь сертификат example.com"
PowerShell TCP+SslStream→X509Certificate2. Reports days
until expiry, expiry date, issuer CN. Adds urgency prefix
("СКОРО!" if <7 days, "Скоро." if <30, "просрочен!" if past).
Pack count: 70 → 72. Tests: 115/115 + 1 ignored Ollama smoke.
Build: cargo build --release -p jarvis-app green.
79 lines
2.6 KiB
Lua
79 lines
2.6 KiB
Lua
-- "Проверь сертификат example.com" → PowerShell TCP connect + parse expiry.
|
||
local phrase = (jarvis.context.phrase or ""):lower()
|
||
local domain = jarvis.text.strip_trigger(phrase, {
|
||
"когда истекает сертификат",
|
||
"проверь сертификат",
|
||
"сертификат сайта",
|
||
"проверь tls",
|
||
"проверь ssl",
|
||
"check ssl",
|
||
"check tls",
|
||
"check certificate",
|
||
"перевір сертифікат",
|
||
})
|
||
domain = domain:gsub("^[%s,:%.]+", ""):gsub("%s+$", "")
|
||
-- Preserve original casing
|
||
if domain ~= "" then
|
||
local start = phrase:find(domain, 1, true)
|
||
if start then domain = phrase:sub(start, start + #domain - 1) end
|
||
end
|
||
|
||
if domain == "" then
|
||
return jarvis.cmd.error("Какой домен проверить?")
|
||
end
|
||
|
||
-- Strip "https://" if user said it
|
||
domain = domain:gsub("^https?://", ""):gsub("/$", ""):gsub("/.*", "")
|
||
|
||
local ps = string.format([[
|
||
$ErrorActionPreference = 'Stop'
|
||
try {
|
||
$tcp = New-Object Net.Sockets.TcpClient('%s', 443)
|
||
$ssl = New-Object Net.Security.SslStream($tcp.GetStream(), $false, { $true })
|
||
$ssl.AuthenticateAsClient('%s')
|
||
$cert = $ssl.RemoteCertificate
|
||
$cert2 = New-Object Security.Cryptography.X509Certificates.X509Certificate2($cert)
|
||
$expiry = $cert2.NotAfter
|
||
$days = ($expiry - (Get-Date)).Days
|
||
Write-Output ('{0}|{1}|{2}' -f $days, $expiry.ToString('yyyy-MM-dd'), $cert2.Issuer)
|
||
$ssl.Close()
|
||
$tcp.Close()
|
||
} catch {
|
||
Write-Output ('ERR|' + $_.Exception.Message)
|
||
}
|
||
]], domain, domain)
|
||
|
||
local res = jarvis.system.exec(string.format(
|
||
'powershell -NoProfile -Command "%s"', ps:gsub('"', '\\"'):gsub("\r?\n", "; ")
|
||
))
|
||
|
||
if not res.success then
|
||
return jarvis.cmd.error("Не получилось проверить.")
|
||
end
|
||
|
||
local out = (res.stdout or ""):gsub("^%s+", ""):gsub("%s+$", "")
|
||
if out:match("^ERR|") then
|
||
local msg = out:sub(5):sub(1, 100)
|
||
return jarvis.cmd.error("Не получилось: " .. msg)
|
||
end
|
||
|
||
local days, date, issuer = out:match("(%-?%d+)|([%d%-]+)|(.+)")
|
||
if not days then
|
||
return jarvis.cmd.error("Не распарсил ответ.")
|
||
end
|
||
|
||
local issuer_short = issuer:match("CN=([^,]+)") or issuer:sub(1, 30)
|
||
local days_n = tonumber(days)
|
||
local urgency = ""
|
||
if days_n < 0 then
|
||
urgency = "Сертификат уже просрочен!"
|
||
elseif days_n < 7 then
|
||
urgency = "СКОРО! "
|
||
elseif days_n < 30 then
|
||
urgency = "Скоро. "
|
||
end
|
||
|
||
return jarvis.cmd.ok(string.format(
|
||
"%sСертификат %s истекает через %s дней (%s). Выдан: %s.",
|
||
urgency, domain, days, date, issuer_short
|
||
))
|