package main import ( "testing" "github.com/shirou/gopsutil/v3/cpu" "github.com/stretchr/testify/assert" ) func TestSysInfo(t *testing.T) { cases := []struct { Case string ExpectedString string ExpectDisabled bool SysInfo sysinfo Precision int Template string }{ {Case: "physical mem", ExpectedString: "50", SysInfo: sysinfo{PhysicalPercentUsed: 50}}, {Case: "physical mem 2 digits", ExpectedString: "60.51", SysInfo: sysinfo{Precision: 2, PhysicalPercentUsed: 60.51}}, {Case: "physical meme rounded", ExpectedString: "61", SysInfo: sysinfo{Precision: 0, PhysicalPercentUsed: 61}}, { Case: "load", ExpectedString: "0.22 0.12 0", Template: "{{ round .Load1 .Precision }} {{round .Load5 .Precision }} {{round .Load15 .Precision }}", SysInfo: sysinfo{Precision: 2, Load1: 0.22, Load5: 0.12, Load15: 0}}, {Case: "not enabled", ExpectDisabled: true, SysInfo: sysinfo{PhysicalPercentUsed: 0, SwapPercentUsed: 0}}, { Case: "2 physical cpus", ExpectedString: "1200 1200 ", Template: "{{range $cpu := .CPU}}{{round $cpu.Mhz 2 }} {{end}}", SysInfo: sysinfo{CPU: []cpu.InfoStat{{Mhz: 1200}, {Mhz: 1200}}}, }, } for _, tc := range cases { tc.SysInfo.env = new(MockedEnvironment) tc.SysInfo.props = map[Property]interface{}{ Precision: tc.Precision, } if tc.Template != "" { tc.SysInfo.props[SegmentTemplate] = tc.Template } if tc.ExpectDisabled { assert.Equal(t, false, tc.SysInfo.enabled(), tc.Case) } else { assert.Equal(t, tc.ExpectedString, tc.SysInfo.string(), tc.Case) } } }