forked from extern/nushell
5518ffd248
To make it work with a light theme, as well. The dark theme is not affected, since the default color is white there. ## Before ![image](https://user-images.githubusercontent.com/282320/230329663-6fae7b7d-7062-459c-ad80-8da3a243d606.png) ## After ![image](https://user-images.githubusercontent.com/282320/230329784-c40bf93e-0740-4b87-ae19-84fd7983898a.png) Also, I added back the example command to the test script which is very useful in these cases... Co-authored-by: Mate Farkas <Mate.Farkas@oneidentity.com>
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
use std.nu *
|
|
|
|
def run [system_level, message_level] {
|
|
cd $env.FILE_PWD
|
|
do {
|
|
nu -c $'use std.nu; NU_LOG_LEVEL=($system_level) std log ($message_level) "test message"'
|
|
} | complete | get -i 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"
|
|
}
|
|
|
|
export def test_critical [] {
|
|
assert no message 99 critical
|
|
assert message CRITICAL critical CRT
|
|
}
|
|
export def test_error [] {
|
|
assert no message CRITICAL error
|
|
assert message ERROR error ERR
|
|
}
|
|
export def test_warning [] {
|
|
assert no message ERROR warning
|
|
assert message WARNING warning WRN
|
|
}
|
|
export def test_info [] {
|
|
assert no message WARNING info
|
|
assert message INFO info "INF" #INF has to be quoted, otherwise it is the `inf` float
|
|
}
|
|
export def test_debug [] {
|
|
assert no message INFO debug
|
|
assert message DEBUG debug DBG
|
|
}
|
|
export def example [] {
|
|
log debug "Debug message"
|
|
log info "Info message"
|
|
log warning "Warning message"
|
|
log error "Error message"
|
|
log critical "Critical message"
|
|
} |