mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 09:53:43 +01:00
39156930f5
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
98 lines
1.9 KiB
Plaintext
98 lines
1.9 KiB
Plaintext
use std *
|
|
|
|
def run [
|
|
system_level,
|
|
message_level
|
|
--short
|
|
] {
|
|
if $short {
|
|
^$nu.current-exe --no-config-file --commands $'use std; NU_LOG_LEVEL=($system_level) std log ($message_level) --short "test message"'
|
|
} else {
|
|
^$nu.current-exe --no-config-file --commands $'use std; NU_LOG_LEVEL=($system_level) std log ($message_level) "test message"'
|
|
}
|
|
| complete | get --ignore-errors stderr
|
|
}
|
|
|
|
def "assert no message" [
|
|
system_level,
|
|
message_level
|
|
] {
|
|
let output = (run $system_level $message_level)
|
|
assert equal "" $output
|
|
}
|
|
|
|
def "assert message" [
|
|
system_level,
|
|
message_level,
|
|
message_level_str
|
|
] {
|
|
let output = (run $system_level $message_level)
|
|
assert str contains $output $message_level_str
|
|
assert str contains $output "test message"
|
|
}
|
|
|
|
def "assert message short" [
|
|
system_level,
|
|
message_level,
|
|
message_level_str
|
|
] {
|
|
let output = (run --short $system_level $message_level)
|
|
assert str contains $output $message_level_str
|
|
assert str contains $output "test message"
|
|
}
|
|
|
|
#[test]
|
|
def critical [] {
|
|
assert no message 99 critical
|
|
assert message CRITICAL critical CRT
|
|
}
|
|
|
|
#[test]
|
|
def critical_short [] {
|
|
assert message short CRITICAL critical C
|
|
}
|
|
|
|
#[test]
|
|
def error [] {
|
|
assert no message CRITICAL error
|
|
assert message ERROR error ERR
|
|
}
|
|
|
|
#[test]
|
|
def error_short [] {
|
|
assert message short ERROR error E
|
|
}
|
|
|
|
#[test]
|
|
def warning [] {
|
|
assert no message ERROR warning
|
|
assert message WARNING warning WRN
|
|
}
|
|
|
|
#[test]
|
|
def warning_short [] {
|
|
assert message short WARNING warning W
|
|
}
|
|
|
|
#[test]
|
|
def info [] {
|
|
assert no message WARNING info
|
|
assert message INFO info "INF" # INF has to be quoted, otherwise it is the `inf` float
|
|
}
|
|
|
|
#[test]
|
|
def info_short [] {
|
|
assert message short INFO info I
|
|
}
|
|
|
|
#[test]
|
|
def debug [] {
|
|
assert no message INFO debug
|
|
assert message DEBUG debug DBG
|
|
}
|
|
|
|
#[test]
|
|
def debug_short [] {
|
|
assert message short DEBUG debug D
|
|
}
|