This commit is contained in:
redanthrax 2022-06-21 09:58:08 -07:00
parent 4e656c6556
commit 91c9de6e34
5 changed files with 155 additions and 42 deletions

View file

@ -1,31 +1,40 @@
package utils
package utils_test
import (
"testing"
"github.com/amidaware/rmmagent/agent/utils"
)
func TestByteCountSI(t *testing.T) {
var bytes uint64 = 1048576
mb := ByteCountSI(bytes)
if mb != "1.0 MB" {
t.Errorf("Expected 1.0 MB, got %s", mb)
}
}
func TestRemoveWinNewLines(t *testing.T) {
result := RemoveWinNewLines("test\r\n")
if result != "test\n" {
t.Fatalf("Expected testing\\n, got %s", result)
testTable := []struct {
name string
expected string
bytes uint64
}{
{
name: "Bytes to Kilobytes",
expected: "1.0 kB",
bytes: 1024,
},
{
name: "Bytes to Megabytes",
expected: "1.0 MB",
bytes: 1048576,
},
{
name: "Bytes to Gigabytes",
expected: "1.0 GB",
bytes: 1073741824,
},
}
t.Logf("Result: %s", result)
}
func TestStripAll(t *testing.T) {
result := StripAll(" test\r\n ")
if result != "test" {
t.Fatalf("Expecte test, got %s", result)
for _, tt := range testTable {
t.Run(tt.name, func(t *testing.T) {
result := utils.ByteCountSI(tt.bytes)
if result != tt.expected {
t.Errorf("expected %s, got %s", tt.expected, result)
}
})
}
t.Log("Test result expected")
}