youtubebeat/vendor/github.com/elastic/beats/libbeat/conditions/range_test.go

119 lines
3.1 KiB
Go
Raw Normal View History

2018-11-18 11:08:38 +01:00
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. 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 conditions
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
)
func TestRangeCreateNumeric(t *testing.T) {
config := Config{
Range: &Fields{fields: map[string]interface{}{
"gtr": 0.3,
}},
}
_, err := NewCondition(&config)
assert.NotNil(t, err)
}
func TestRangeCreateLexicographic(t *testing.T) {
config := Config{
Range: &Fields{fields: map[string]interface{}{
"gt": "fdfdd",
}},
}
_, err := NewCondition(&config)
assert.NotNil(t, err)
}
func TestRangeSingleFieldNegativeMatch(t *testing.T) {
testConfig(t, false, secdTestEvent, &Config{
Range: &Fields{fields: map[string]interface{}{
"proc.cpu.total_p.gt": 0.5,
}},
})
}
func TestClosedRangeConditionPositiveMatch(t *testing.T) {
testConfig(t, true, httpResponseTestEvent, &Config{
Range: &Fields{fields: map[string]interface{}{
"http.code.gte": 200,
"http.code.lt": 300,
}},
})
}
func TestOpenRangeConditionPositiveMatch(t *testing.T) {
testConfig(t, true, httpResponseTestEvent, &Config{
Range: &Fields{fields: map[string]interface{}{
"bytes_out.gte": 2800,
}},
})
}
func TestMultipleOpenRangeConditionNegativeMatch(t *testing.T) {
testConfig(t, false, httpResponseTestEvent, &Config{
Range: &Fields{fields: map[string]interface{}{
"bytes_out.gte": 2800,
"responsetime.gt": 30,
}},
})
}
var procCPURangeConfig = &Config{
Range: &Fields{fields: map[string]interface{}{
"proc.cpu.total_p.gte": 0.5,
}},
}
func TestOpenGteRangeConditionPositiveMatch(t *testing.T) {
mdWorkerTestEvent := &beat.Event{
Timestamp: time.Now(),
Fields: common.MapStr{
"proc": common.MapStr{
"cmdline": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single",
"cpu": common.MapStr{
"start_time": "09:19",
"system": 22,
"total": 66,
"total_p": 0.6,
"user": 44,
},
"name": "mdworker",
"pid": 44978,
"ppid": 1,
"state": "running",
"username": "test",
},
"type": "process",
},
}
testConfig(t, true, mdWorkerTestEvent, procCPURangeConfig)
}
func TestOpenGteRangeConditionNegativeMatch(t *testing.T) {
testConfig(t, false, httpResponseTestEvent, procCPURangeConfig)
}