You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
830 B
Go
33 lines
830 B
Go
package nlog
|
|
|
|
import (
|
|
"git.noahlan.cn/noahlan/ntool/ntest/assert"
|
|
"github.com/gookit/color"
|
|
"sync/atomic"
|
|
"testing"
|
|
)
|
|
|
|
func TestWithColor(t *testing.T) {
|
|
old := atomic.SwapUint32(&encoding, plainEncodingType)
|
|
defer atomic.StoreUint32(&encoding, old)
|
|
|
|
output := WithColor("hello", color.BgBlue)
|
|
assert.Equal(t, "hello", output)
|
|
|
|
atomic.StoreUint32(&encoding, jsonEncodingType)
|
|
output = WithColor("hello", color.BgBlue)
|
|
assert.Equal(t, "hello", output)
|
|
}
|
|
|
|
func TestWithColorPadding(t *testing.T) {
|
|
old := atomic.SwapUint32(&encoding, plainEncodingType)
|
|
defer atomic.StoreUint32(&encoding, old)
|
|
|
|
output := WithColorPadding("hello", color.BgBlue)
|
|
assert.Equal(t, " hello ", output)
|
|
|
|
atomic.StoreUint32(&encoding, jsonEncodingType)
|
|
output = WithColorPadding("hello", color.BgBlue)
|
|
assert.Equal(t, "hello", output)
|
|
}
|