open-nomad/client/consul/identities_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.0 KiB
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package consul
import (
"errors"
"testing"
"github.com/hashicorp/nomad/ci"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/stretchr/testify/require"
)
func TestSI_DeriveTokens(t *testing.T) {
ci.Parallel(t)
logger := testlog.HCLogger(t)
dFunc := func(alloc *structs.Allocation, taskNames []string) (map[string]string, error) {
return map[string]string{"a": "b"}, nil
}
tc := NewIdentitiesClient(logger, dFunc)
tokens, err := tc.DeriveSITokens(nil, nil)
require.NoError(t, err)
require.Equal(t, map[string]string{"a": "b"}, tokens)
}
func TestSI_DeriveTokens_error(t *testing.T) {
ci.Parallel(t)
logger := testlog.HCLogger(t)
dFunc := func(alloc *structs.Allocation, taskNames []string) (map[string]string, error) {
return nil, errors.New("some failure")
}
tc := NewIdentitiesClient(logger, dFunc)
_, err := tc.DeriveSITokens(&structs.Allocation{ID: "a1"}, nil)
require.Error(t, err)
}