summaryrefslogtreecommitdiff
path: root/util/pinmap/chips/npcx993_test.go
blob: 6ed4bf2357d28e6eced9700ed7328c48798e1a50 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package chips_test

import (
	"testing"

	"reflect"
	"sort"

	"pinmap/chips"
)

func TestName(t *testing.T) {
	expName := "NPCX993"
	var n chips.Npcx993
	name := n.Name()
	if name != expName {
		t.Errorf("Expected %s, got %s for Name()", expName, name)
	}
}

func TestMissing(t *testing.T) {
	var n chips.Npcx993

	none := "None"
	if n.Adc(none) != "" {
		t.Errorf("Expected empty string, got %s for Adc()", n.Adc(none))
	}
	gc, gp := n.Gpio(none)
	if gc != "" {
		t.Errorf("Expected empty string, got %s %d for Gpio()", gc, gp)
	}
	if n.I2c(none) != "" {
		t.Errorf("Expected empty string, got %s for I2c()", n.I2c(none))
	}
}

func TestMulti(t *testing.T) {
	var n chips.Npcx993

	pin := "F4"
	if n.Adc(pin) != "10" {
		t.Errorf("Expected \"10\", got %s for Adc()", n.Adc(pin))
	}
	gc, gp := n.Gpio(pin)
	if gc != "gpioe" || gp != 0 {
		t.Errorf("Expected \"gpioe 0\", got %s %d for Gpio()", gc, gp)
	}
	if n.I2c(pin) != "" {
		t.Errorf("Expected empty string, got %s for I2c()", n.I2c(pin))
	}
	pin = "F8"
	if n.I2c(pin) != "i2c3_0" {
		t.Errorf("Expected \"i2c3_0\", got %s for I2c()", n.I2c(pin))
	}
}

func TestAdcEnable(t *testing.T) {
	var n chips.Npcx993

	pin := "F4"
	if n.Adc(pin) != "10" {
		t.Errorf("Expected \"10\", got %s for Adc()", n.Adc(pin))
	}
	exp := []string{"adc0"}
	if !reflect.DeepEqual(n.EnabledNodes(), exp) {
		t.Errorf("Expected %v, got %v for EnabledNodes()", exp, n.EnabledNodes())
	}
}

func TestI2cEnable(t *testing.T) {
	var n chips.Npcx993

	n.I2c("F5")  // i2c4_1
	n.I2c("C12") // i2c0_0
	exp := []string{"i2c0_0", "i2c4_1", "i2c_ctrl0", "i2c_ctrl4"}
	nodes := n.EnabledNodes()
	sort.Strings(nodes)
	if !reflect.DeepEqual(nodes, exp) {
		t.Errorf("Expected %v, got %v for EnabledNodes()", exp, n.EnabledNodes())
	}
}