blob: a96a90cc65396ac08e9237e7b721d6fa8f4c2306 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package config
import (
"testing"
)
import (
"github.com/dubbogo/gost/log/logger"
"github.com/stretchr/testify/assert"
)
func TestLoggerInit(t *testing.T) {
t.Run("empty use default", func(t *testing.T) {
err := Load(WithPath("./testdata/config/logger/empty_log.yaml"))
assert.Nil(t, err)
assert.NotNil(t, rootConfig)
loggerConfig := rootConfig.Logger
assert.NotNil(t, loggerConfig)
})
t.Run("use config", func(t *testing.T) {
err := Load(WithPath("./testdata/config/logger/log.yaml"))
assert.Nil(t, err)
loggerConfig := rootConfig.Logger
assert.NotNil(t, loggerConfig)
// default
logger.Info("hello")
})
t.Run("use config with file", func(t *testing.T) {
err := Load(WithPath("./testdata/config/logger/file_log.yaml"))
assert.Nil(t, err)
loggerConfig := rootConfig.Logger
assert.NotNil(t, loggerConfig)
logger.Debug("debug")
logger.Info("info")
logger.Warn("warn")
logger.Error("error")
logger.Debugf("%s", "debug")
logger.Infof("%s", "info")
logger.Warnf("%s", "warn")
logger.Errorf("%s", "error")
})
}
func TestNewLoggerConfigBuilder(t *testing.T) {
config := NewLoggerConfigBuilder().
SetDriver("zap").
SetLevel("info").
SetFileName("dubbo.log").
SetFileMaxAge(10).
Build()
assert.NotNil(t, config)
assert.Equal(t, config.File.Name, "dubbo.log")
assert.Equal(t, config.Driver, "zap")
assert.Equal(t, config.Level, "info")
assert.Equal(t, config.File.MaxAge, 10)
// default value
assert.Equal(t, config.Appender, "console")
assert.Equal(t, config.Format, "text")
assert.Equal(t, config.File.MaxSize, 100)
assert.Equal(t, *config.File.Compress, true)
assert.Equal(t, config.File.MaxBackups, 5)
}