mirror of
https://github.com/nushell/nushell
synced 2025-01-06 18:29:02 +00:00
d735607ac8
# Description This is an attempt to isolate the unit tests from whatever might be in the user's config. If the user's config is broken in some way or incompatible with this version (for example, especially if there are plugins that aren't built for this version), tests can spuriously fail. This makes tests more reliably pass the same way they would on CI even if the user has config, and should also make them run faster. I think this is _good enough_, but I still think we should have a specific config dir env variable for nushell specifically (rather than having to use `XDG_CONFIG_HOME`, which would mess with other things) and then we can just have `nu-test-support` set that to a temporary dir containing the shipped default config files. # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib`
97 lines
1.9 KiB
Text
97 lines
1.9 KiB
Text
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
|
|
}
|