blob: 202d73aed5cfd3c97384e1629cff2d86e7ba6187 [file] [log] [blame]
// Copyright Istio 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 processlog
import (
"path/filepath"
"testing"
"time"
)
import (
"github.com/apache/dubbo-go-pixiu/pilot/test/util"
"github.com/apache/dubbo-go-pixiu/pkg/test/env"
)
func TestTimeRangeFilter(t *testing.T) {
testDataDir := filepath.Join(env.IstioSrc, "tools/bug-report/pkg/testdata/")
b := util.ReadFile(t, filepath.Join(testDataDir, "input/ingress.log"))
inLog := string(b)
tests := []struct {
name string
start string
end string
wantEmpty bool
}{
{
name: "wantEmpty",
start: "2020-05-29T23:37:27.285018Z",
end: "2020-06-10T23:37:27.285018Z",
wantEmpty: true,
},
{
name: "range_equals",
start: "2020-06-29T23:37:27.285053Z",
end: "2020-06-29T23:37:27.285885Z",
},
{
name: "range_not_equals",
start: "2020-06-29T23:37:27.285052Z",
end: "2020-06-29T23:37:27.285886Z",
},
{
name: "multi_line_entries",
start: "2020-06-29T23:37:27.287895Z",
end: "2020-06-29T23:37:27.287996Z",
},
{
name: "reverse",
start: "2020-06-29T23:37:27.287996Z",
end: "2020-06-29T23:37:27.287895Z",
wantEmpty: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
var b []byte
if !tt.wantEmpty {
b = util.ReadFile(t, filepath.Join(testDataDir, "output", tt.name+".log"))
}
want := string(b)
start, err := time.Parse(time.RFC3339Nano, tt.start)
if err != nil {
t.Fatal(err)
}
end, err := time.Parse(time.RFC3339Nano, tt.end)
if err != nil {
t.Fatal(err)
}
got := getTimeRange(inLog, start, end)
if got != want {
t.Errorf("%s: got:\n%s\n\nwant:\n%s\n", tt.name, got, want)
}
})
}
}