nushell/crates/nu-std/tests/logger_tests/test_logger_env.nu
Antoine Stevan 39156930f5
fix std log (#12470)
related to
- https://github.com/nushell/nushell/pull/12196

# Description
while i'm 100% okey with the original intent behind
https://github.com/nushell/nushell/pull/12196, i think the PR did
introduce two unintended things:
- extra parentheses that make the `log.nu` module look like Lisp lol
- a renaming of the `NU_LOG_LEVEL` environment variable to
`NU_log-level`. this breaks previous usage of `std log` and, as it's not
mentionned at all in the PR, i thought it was not intentional 😋

# User-Facing Changes
users can now control `std log` with `$env.NU_LOG_LEVEL`

# Tests + Formatting
the "log" tests have been fixed as well.

# After Submitting
2024-04-10 17:30:58 -04:00

44 lines
1.2 KiB
Plaintext

use std *
use std log *
#[test]
def env_log-ansi [] {
assert equal (log-ansi).CRITICAL (ansi red_bold)
assert equal (log-ansi).ERROR (ansi red)
assert equal (log-ansi).WARNING (ansi yellow)
assert equal (log-ansi).INFO (ansi default)
assert equal (log-ansi).DEBUG (ansi default_dimmed)
}
#[test]
def env_log-level [] {
assert equal (log-level).CRITICAL 50
assert equal (log-level).ERROR 40
assert equal (log-level).WARNING 30
assert equal (log-level).INFO 20
assert equal (log-level).DEBUG 10
}
#[test]
def env_log-prefix [] {
assert equal (log-prefix).CRITICAL "CRT"
assert equal (log-prefix).ERROR "ERR"
assert equal (log-prefix).WARNING "WRN"
assert equal (log-prefix).INFO "INF"
assert equal (log-prefix).DEBUG "DBG"
}
#[test]
def env_log-short-prefix [] {
assert equal (log-short-prefix).CRITICAL "C"
assert equal (log-short-prefix).ERROR "E"
assert equal (log-short-prefix).WARNING "W"
assert equal (log-short-prefix).INFO "I"
assert equal (log-short-prefix).DEBUG "D"
}
#[test]
def env_log_format [] {
assert equal $env.NU_LOG_FORMAT $"%ANSI_START%%DATE%|%LEVEL%|%MSG%%ANSI_STOP%"
}