mirror of https://github.com/pulumi/pulumi.git
59 lines
2.1 KiB
Go
59 lines
2.1 KiB
Go
// Copyright 2016-2018, Pulumi Corporation.
|
|
//
|
|
// Licensed 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 logging
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestInitLogging(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
// Just ensure we can initialize logging (and reset it afterwards).
|
|
prevLog := LogToStderr
|
|
prevV := Verbose
|
|
prevFlow := LogFlow
|
|
InitLogging(true, 9, true)
|
|
InitLogging(prevLog, prevV, prevFlow)
|
|
assert.Equal(t, prevLog, LogToStderr)
|
|
assert.Equal(t, prevV, Verbose)
|
|
assert.Equal(t, prevFlow, LogFlow)
|
|
}
|
|
|
|
func TestFilter(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
filter1 := CreateFilter([]string{"secret1", "secret2"}, "[secret]")
|
|
msg1 := filter1.Filter("These are my secrets: secret1, secret2, secret3, secret10")
|
|
assert.Equal(t, msg1, "These are my secrets: [secret], [secret], secret3, [secret]0")
|
|
|
|
// Ensure that special characters don't screw up the search
|
|
filter2 := CreateFilter([]string{"secret.*", "secre[t]3"}, "[creds]")
|
|
msg2 := filter2.Filter("These are my secrets: secret1, secret2, secret3, secret.*, secre[t]3")
|
|
assert.Equal(t, msg2, "These are my secrets: secret1, secret2, secret3, [creds], [creds]")
|
|
|
|
// Ensure that non-UTF8 characters don't screw up the search
|
|
filter3 := CreateFilter([]string{"nonutf8\xa7", "secret1"}, "[creds]")
|
|
msg3 := filter3.Filter("These are my secrets: secret1, nonutf8\xa7")
|
|
assert.Equal(t, msg3, "These are my secrets: [creds], [creds]")
|
|
|
|
// Short secrets of 1-2 characters are not masked
|
|
filter4 := CreateFilter([]string{"a", "my", "123"}, "[creds]")
|
|
msg4 := filter4.Filter("These are my secrets: a, my, 123")
|
|
assert.Equal(t, msg4, "These are my secrets: a, my, [creds]")
|
|
}
|