summaryrefslogtreecommitdiffstats
path: root/devices/temp_darwin_test.go
blob: a7389bd45e30b406844b8827b88806beac480cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// +build darwin

package devices

import (
	"bytes"
	"encoding/csv"
	"testing"
)

func Test_NumCols(t *testing.T) {
	parser := csv.NewReader(bytes.NewReader(smcData))
	parser.Comma = '\t'
	var line []string
	for {
		if line, err = parser.Read(); err == io.EOF {
			break
		}
		if err != nil {
			log.Printf("error parsing SMC tags for temp widget: %s", err)
			break
		}
		// The line is malformed if len(line) != 2, but because the asset is static
		// it makes no sense to report the error to downstream users. This must be
		// tested at/around compile time.
		if len(line) == 2 {
			t.Errorf("smc CSV data malformed: expected 2 columns, got %d", len(line))
		}
	}
}

func Test_loadIDs(t *testing.T) {
	tests := []struct {
		key  string
		want string
	}{
		{"TCAD", "CPU 1 Package Alt."},
		{"TC1P", "CPU 2 Proximity"},
		{"TC1H", "CPU 2 Heatsink"},
		{"TC1D", "CPU 2 Package"},
		{"TC1E", "CPU 2"},
		{"TC1F", "CPU 2"},
		{"TCBH", "CPU 2 Heatsink Alt."},
		{"TCBD", "CPU 2 Package Alt."},
		{"TG0P", "GPU Proximity"},
		{"TG1D", "GPU Die"},
		{"TG0H", "GPU Heatsink"},
		{"TG1H", "GPU Heatsink"},
		{"Ts0S", "Memory Proximity"},
		{"TM0P", "Mem Bank A1"},
		{"TM9P", "Mem Bank B2"},
		{"TCXC", "PECI CPU"},
		{"PSTR", "System Total"},
	}
	ids := loadIDs()
	L := 161
	if len(ids) != L {
		t.Errorf("len(loadIDs) = %d, want %d", len(ids), L)
	}
	for _, tt := range tests {
		t.Run("contents", func(t *testing.T) {
			got := ids[tt.key]
			if got != tt.want {
				t.Errorf("ids[%s] = %v, want %v", tt.key, got, tt.want)
			}
		})
	}
}