forked from clearcontainers/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger_test.go
244 lines (198 loc) · 5.31 KB
/
logger_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// Copyright (c) 2017 Intel 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 main
import (
"errors"
"fmt"
"io/ioutil"
"os"
"path"
"regexp"
"testing"
"time"
"github.com/Sirupsen/logrus"
"github.com/stretchr/testify/assert"
)
type testData struct {
path string
expectFailure bool
}
func init() {
// Ensure all log levels are logged
ccLog.Level = logrus.DebugLevel
// Discard "normal" log output: this test only cares about the
// (additional) global log output
ccLog.Out = ioutil.Discard
}
func grep(pattern, file string) error {
if file == "" {
return errors.New("need file")
}
bytes, err := ioutil.ReadFile(file)
if err != nil {
return err
}
re := regexp.MustCompile(pattern)
matches := re.FindAllStringSubmatch(string(bytes), -1)
if matches == nil {
return fmt.Errorf("pattern %q not found in file %q", pattern, file)
}
return nil
}
func TestNewGlobalLogHook(t *testing.T) {
tmpdir, err := ioutil.TempDir("", "")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tmpdir)
tmpfile := path.Join(tmpdir, "global.log")
data := []testData{
{"", true},
{tmpfile, false},
}
for _, d := range data {
hook, err := newGlobalLogHook(d.path)
if d.expectFailure {
if err == nil {
t.Fatal(fmt.Sprintf("unexpected succes from newGlobalLogHook(path=%v)", d.path))
}
} else {
if err != nil {
t.Fatal(fmt.Sprintf("unexpected failure from newGlobalLogHook(path=%q): %v", d.path, err))
}
if hook.path != d.path {
t.Fatal(fmt.Sprintf("expected hook to contain path %q, found %q", d.path, hook.path))
}
}
}
}
func TestHandleGlobalLog(t *testing.T) {
tmpdir, err := ioutil.TempDir("", "")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tmpdir)
subDir := path.Join(tmpdir, "a/b/global.log")
err = os.MkdirAll(subDir, testDirMode)
assert.NoError(t, err)
existingFile := path.Join(tmpdir, "c")
err = createEmptyFile(existingFile)
assert.NoError(t, err)
tmpfile := path.Join(tmpdir, "global.log")
data := []testData{
{"", false},
// path must be absolute, so these should fail
{"foo/bar/global.log", true},
{"../foo/bar/global.log", true},
{"./foo/bar/global.log", true},
{subDir, true},
{path.Join(existingFile, "global.log"), true},
{tmpfile, false},
}
for _, d := range data {
err := handleGlobalLog(d.path)
if d.expectFailure {
if err == nil {
t.Fatal(fmt.Sprintf("unexpected success from handleGlobalLog(path=%q)", d.path))
}
continue
}
if err != nil {
t.Fatal(fmt.Sprintf("unexpected failure from handleGlobalLog(path=%q): %v", d.path, err))
}
// It's valid to pass a blank path to handleGlobalLog(),
// but no point in checking for log entries in that
// case!
if d.path == "" {
continue
}
// Add a log entry
str := "hello. foo bar baz!"
ccLog.Debug(str)
// Check that the string was logged
err = grep(fmt.Sprintf("debug:.*%s", str), d.path)
if err != nil {
t.Fatal(err)
}
// Check expected perms
st, err := os.Stat(d.path)
if err != nil {
t.Fatal(err)
}
expectedPerms := "-rw-r-----"
actualPerms := st.Mode().String()
if expectedPerms != actualPerms {
t.Fatal(fmt.Sprintf("logfile %v should have perms %v, but found %v",
d.path, expectedPerms, actualPerms))
}
}
}
func TestHandleGlobalLogEnvVar(t *testing.T) {
envvar := "CC_RUNTIME_GLOBAL_LOG"
tmpdir, err := ioutil.TempDir("", "")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tmpdir)
tmpfile := path.Join(tmpdir, "global.log")
tmpfile2 := path.Join(tmpdir, "global-envvar.log")
os.Setenv(envvar, tmpfile2)
defer os.Unsetenv(envvar)
err = handleGlobalLog(tmpfile)
if err != nil {
t.Fatal(err)
}
str := "foo or moo?"
ccLog.Debug(str)
tmpfileExists := fileExists(tmpfile)
tmpfile2Exists := fileExists(tmpfile2)
if tmpfileExists == true {
t.Fatal(fmt.Sprintf("tmpfile %q exists unexpectedly", tmpfile))
}
if tmpfile2Exists == false {
t.Fatal(fmt.Sprintf("tmpfile2 %q does not exist unexpectedly", tmpfile2))
}
// Check that the string was logged
err = grep(fmt.Sprintf("debug:.*%s", str), tmpfile2)
if err != nil {
t.Fatal(err)
}
}
func TestLoggerFire(t *testing.T) {
tmpdir, err := ioutil.TempDir("", "")
if err != nil {
t.Fatal(err)
}
ccLog = logrus.New()
logFile := path.Join(tmpdir, "a/b/global.log")
err = handleGlobalLog(logFile)
assert.NoError(t, err)
entry := &logrus.Entry{
Logger: ccLog,
Time: time.Now().UTC(),
Level: logrus.DebugLevel,
Message: "foo",
}
err = ccLog.Hooks.Fire(logrus.DebugLevel, entry)
assert.NoError(t, err)
assert.Equal(t, len(ccLog.Hooks[logrus.DebugLevel]), 1)
hook, ok := ccLog.Hooks[logrus.DebugLevel][0].(*GlobalLogHook)
assert.True(t, ok)
err = hook.file.Close()
assert.NoError(t, err)
err = os.RemoveAll(tmpdir)
assert.NoError(t, err)
err = ccLog.Hooks.Fire(logrus.DebugLevel, entry)
assert.Error(t, err)
}