open-nomad/api/resources_test.go

58 lines
1.0 KiB
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package api
import (
"testing"
"github.com/hashicorp/nomad/api/internal/testutil"
"github.com/shoenig/test/must"
)
func TestResources_Canonicalize(t *testing.T) {
testutil.Parallel(t)
testCases := []struct {
name string
input *Resources
expected *Resources
}{
{
name: "empty",
input: &Resources{},
expected: DefaultResources(),
},
{
name: "cores",
input: &Resources{
Cores: pointerOf(2),
MemoryMB: pointerOf(1024),
},
expected: &Resources{
CPU: pointerOf(0),
Cores: pointerOf(2),
MemoryMB: pointerOf(1024),
},
},
{
name: "cpu",
input: &Resources{
CPU: pointerOf(500),
MemoryMB: pointerOf(1024),
},
expected: &Resources{
CPU: pointerOf(500),
Cores: pointerOf(0),
MemoryMB: pointerOf(1024),
},
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
tc.input.Canonicalize()
must.Eq(t, tc.expected, tc.input)
})
}
}