Files
mq-container/vendor/github.com/ibm-messaging/mq-golang/mqmetric/mqmetric_test.go
Rob Parker 531f2710c7 Add Docker FV tests for metric gathering (#90)
* initial metric tests

* Add FV tests for metrics

* correct comment in test
2018-05-25 13:09:48 +01:00

201 lines
6.5 KiB
Go

/*
© Copyright IBM Corporation 2018
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 mqmetric
import (
"io/ioutil"
"os"
"testing"
"github.com/ibm-messaging/mq-golang/ibmmq"
)
func TestNormalise(t *testing.T) {
var expected float64
test := MonElement{}
value := int64(1000000)
test.Datatype = ibmmq.MQIAMO_MONITOR_PERCENT
expected = 10000
returned := Normalise(&test, "", value)
if returned != expected {
t.Logf("Gave %s, %d. Expected: %f, Got: %f", "ibmmq.MQIAMO_MONITOR_PERCENT", value, expected, returned)
t.Fail()
}
test.Datatype = ibmmq.MQIAMO_MONITOR_HUNDREDTHS
expected = 10000
returned = Normalise(&test, "", value)
if returned != expected {
t.Logf("Gave %s, %d. Expected: %f, Got: %f", "ibmmq.MQIAMO_MONITOR_HUNDREDTHS", value, expected, returned)
t.Fail()
}
test.Datatype = ibmmq.MQIAMO_MONITOR_MB
expected = 1048576000000
returned = Normalise(&test, "", value)
if returned != expected {
t.Logf("Gave %s, %d. Expected: %f, Got: %f", "ibmmq.MQIAMO_MONITOR_MB", value, expected, returned)
t.Fail()
}
test.Datatype = ibmmq.MQIAMO_MONITOR_GB
expected = 1073741824000000
returned = Normalise(&test, "", value)
if returned != expected {
t.Logf("Gave %s, %d. Expected: %f, Got: %f", "ibmmq.MQIAMO_MONITOR_GB", value, expected, returned)
t.Fail()
}
test.Datatype = ibmmq.MQIAMO_MONITOR_MICROSEC
expected = 1
returned = Normalise(&test, "", value)
if returned != expected {
t.Logf("Gave %s, %d. Expected: %f, Got: %f", "ibmmq.MQIAMO_MONITOR_GB", value, expected, returned)
t.Fail()
}
}
func TestReadPatterns(t *testing.T) {
const filename = "testFile"
//Create dummy test file
testData := []byte("test1=yes\ntest2=no\n")
err := ioutil.WriteFile(filename, testData, 0644)
if err != nil {
t.Fatalf("Could not create test file - %v", err)
}
defer os.Remove(filename)
expected := "test1=yes,test2=no"
back, err := ReadPatterns(filename)
if err != nil {
t.Logf("Got error while running ReadPatterns - %v", err)
t.Fail()
} else if back != expected {
t.Logf("File was not parsed correctly. Expected: %s. Got: %s", expected, back)
t.Fail()
}
}
func TestFormatDescription(t *testing.T) {
give := [...]string{"hello", "no space", "no/slash", "no-dash", "single___underscore", "single__underscore__multiplace", "ALLLOWER", "this_bytes_written_switch", "this_byte_max_switch", "this_seconds_in_use_switch", "this messages_expired_switch", "this_seconds_max_switch", "this_count_max_switch", "this_percentage_max_switch"}
expected := [...]string{"hello_count", "no_space_count", "no_slash_count", "no_dash_count", "single_underscore_count", "single_underscore_multiplace_count", "alllower_count", "this_written_switch_count", "this_max_switch_count", "this_in_use_switch_count", "this_expired_messages_switch_count", "this_max_switch_count", "this_max_switch_count", "this_max_switch_count"}
for i, e := range give {
elem := MonElement{
Description: e,
}
back := formatDescription(&elem)
if back != expected[i] {
t.Logf("Gave %s. Expected: %s, Got: %s", e, expected[i], back)
t.Fail()
}
}
}
func TestSuffixes(t *testing.T) {
baseDescription := "test_suffix"
types := [...]int32{ibmmq.MQIAMO_MONITOR_MB, ibmmq.MQIAMO_MONITOR_GB, ibmmq.MQIAMO_MONITOR_MICROSEC, ibmmq.MQIAMO_MONITOR_PERCENT, ibmmq.MQIAMO_MONITOR_HUNDREDTHS, 0}
expected := [...]string{baseDescription + "_bytes", baseDescription + "_bytes", baseDescription + "_seconds", baseDescription + "_percentage", baseDescription + "_percentage", baseDescription + "_count"}
for i, ty := range types {
elem := MonElement{
Description: baseDescription,
Datatype: ty,
}
back := formatDescription(&elem)
if back != expected[i] {
t.Logf("Gave %s/%d Expected: %s, Got: %s", baseDescription, ty, expected[i], back)
t.Fail()
}
}
// special case log_bytes
elem := MonElement{
Description: "log_test_suffix",
Datatype: 0,
}
back := formatDescription(&elem)
if back != "log_test_suffix_bytes" {
t.Logf("Gave log_test_suffix/0 Expected: %s, Got: %s", "log_test_suffix_bytes", back)
t.Fail()
}
// special case log_total
elem = MonElement{
Description: "log_total_suffix",
Datatype: 0,
}
back = formatDescription(&elem)
if back != "log_suffix_total" {
t.Logf("Gave log_total_suffix/0 Expected: %s, Got: %s", "log_suffix_total", back)
t.Fail()
}
}
func TestParsePCFResponse(t *testing.T) {
cfh := ibmmq.NewMQCFH()
cfh.Type = ibmmq.MQCFT_RESPONSE
headerbytes := cfh.Bytes()
params, last := parsePCFResponse(headerbytes)
if len(params) != 0 && !last {
t.Logf("Gave just a header. Expected: 0, false , Got: %d, %t", len(params), last)
t.Fail()
}
cfh.ParameterCount = 1
parm := ibmmq.PCFParameter{
Type: ibmmq.MQCFT_STRING, // String
Parameter: ibmmq.MQCACF_APPL_NAME,
String: []string{"HELLOTEST"},
ParameterCount: 1,
}
headerbytes = cfh.Bytes()
parmbytes := parm.Bytes()
messagebytes := append(headerbytes, parmbytes...)
params, last = parsePCFResponse(messagebytes)
if len(params) != 1 && !last {
t.Logf("Gave header and parameter. Expected: 1, false , Got: %d, %t", len(params), last)
t.Fail()
} else {
elem := params[0]
if elem.Type != parm.Type {
t.Logf("Returned parameter 'Type' did not match. Expected: %d, Got: %d", parm.Type, elem.Type)
t.Fail()
}
if elem.Parameter != parm.Parameter {
t.Logf("Returned parameter 'Parameter' did not match. Expected: %d, Got: %d", parm.Parameter, elem.Parameter)
t.Fail()
}
if len(elem.String) != len(parm.String) {
t.Logf("Length of Returned parameter 'String' did not match. Expected: %d, Got: %d", len(parm.String), len(elem.String))
t.Fail()
} else if elem.String[0] != parm.String[0] {
t.Logf("Returned parameter 'String' did not match. Expected: %s, Got: %s", parm.String[0], elem.String[0])
t.Fail()
}
if len(elem.Int64Value) != 0 {
t.Logf("Returned parameter 'Int64Value' was not empty, length=%d", len(elem.Int64Value))
t.Fail()
}
if len(elem.GroupList) != 0 {
t.Logf("Returned parameter 'GroupList' was not empty, length=%d", len(elem.GroupList))
t.Fail()
}
}
}