mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
942 B
31 lines
942 B
2 years ago
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package log
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/json"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestFlags(t *testing.T) {
|
||
|
assert.EqualValues(t, Ldefault, Flags{}.Bits())
|
||
|
assert.EqualValues(t, 0, FlagsFromString("").Bits())
|
||
|
assert.EqualValues(t, Lgopid, FlagsFromString("", Lgopid).Bits())
|
||
|
assert.EqualValues(t, 0, FlagsFromString("none", Lgopid).Bits())
|
||
|
assert.EqualValues(t, Ldate|Ltime, FlagsFromString("date,time", Lgopid).Bits())
|
||
|
|
||
|
assert.EqualValues(t, "stdflags", FlagsFromString("stdflags").String())
|
||
|
assert.EqualValues(t, "medfile", FlagsFromString("medfile").String())
|
||
|
|
||
|
bs, err := json.Marshal(FlagsFromString("utc,level"))
|
||
|
assert.NoError(t, err)
|
||
|
assert.EqualValues(t, `"level,utc"`, string(bs))
|
||
|
var flags Flags
|
||
|
assert.NoError(t, json.Unmarshal(bs, &flags))
|
||
|
assert.EqualValues(t, LUTC|Llevel, flags.Bits())
|
||
|
}
|