// 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. // +build !integration package system import ( "io/ioutil" "os" "testing" "github.com/stretchr/testify/assert" "github.com/elastic/beats/libbeat/common" ) const testFile = "../_meta/test/stats_summary.json" func TestEventMapping(t *testing.T) { f, err := os.Open(testFile) assert.NoError(t, err, "cannot open test file "+testFile) body, err := ioutil.ReadAll(f) assert.NoError(t, err, "cannot read test file "+testFile) events, err := eventMapping(body) assert.NoError(t, err, "error mapping "+testFile) assert.Len(t, events, 1, "got wrong number of events") testCases := map[string]interface{}{ "container": "kubelet", "memory.usage.bytes": 36683776, "memory.rss.bytes": 35512320, "memory.workingset.bytes": 36495360, "memory.pagefaults": 100835242, "memory.majorpagefaults": 0, "cpu.usage.core.ns": 2357800908948, "cpu.usage.nanocores": 11263994, } for k, v := range testCases { testValue(t, events[0], k, v) } } func testValue(t *testing.T, event common.MapStr, field string, value interface{}) { data, err := event.GetValue(field) assert.NoError(t, err, "Could not read field "+field) assert.EqualValues(t, data, value, "Wrong value for field "+field) }