Skip to content

Commit

Permalink
chore(e2e): backport TestNoErrorLogsDuringNormalOperations test
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gosteli <[email protected]>
  • Loading branch information
ghouscht committed Oct 29, 2024
1 parent 23f887a commit 1dfe1ff
Showing 1 changed file with 85 additions and 0 deletions.
85 changes: 85 additions & 0 deletions tests/e2e/logging_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
// Copyright 2024 The etcd Authors
//
// 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 e2e

import (
"encoding/json"
"testing"
"time"

"github.com/stretchr/testify/require"

"go.etcd.io/etcd/tests/v3/framework/e2e"
)

func TestNoErrorLogsDuringNormalOperations(t *testing.T) {
tests := []struct {
name string
clusterSize int
allowedErrors map[string]bool
}{
{
name: "single node cluster",
clusterSize: 1,
allowedErrors: map[string]bool{},
},
{
name: "three node cluster",
clusterSize: 3,
allowedErrors: map[string]bool{},
},
}

for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
e2e.BeforeTest(t)

epc, err := e2e.NewEtcdProcessCluster(t,
&e2e.EtcdProcessClusterConfig{
LogLevel: "debug",
ClusterSize: tc.clusterSize,
},
)
require.NoError(t, err)
defer epc.Close()

require.Lenf(t, epc.Procs, tc.clusterSize, "embedded etcd cluster process count is not as expected")

var lines []string
for i := range tc.clusterSize {
lines = append(lines, epc.Procs[i].Logs().Lines()...)
}
require.NotEmptyf(t, lines, "expected at least one log line")

time.Sleep(time.Second)

err = epc.Close()
require.NoErrorf(t, err, "closing etcd processes")

var entry logEntry

for _, line := range lines {
err := json.Unmarshal([]byte(line), &entry)
require.NoErrorf(t, err, "parse log line as json, line: %s", line)

if tc.allowedErrors[entry.Message] {
continue
}

require.NotEqualf(t, "error", entry.Level, "error level log message found: %s", line)
}
})
}
}

0 comments on commit 1dfe1ff

Please sign in to comment.