a34f8c751e
This way we can avoid unnecessary panics which cause other tests not to run. This doesn't remove all the possibilities for panics causing other tests not to run, it just fixes the TestAgent
50 lines
965 B
Go
50 lines
965 B
Go
package finder
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/consul/agent"
|
|
"github.com/hashicorp/consul/api"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestFinder(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
require := require.New(t)
|
|
a := agent.NewTestAgent(t, t.Name(), ``)
|
|
defer a.Shutdown()
|
|
client := a.Client()
|
|
|
|
// Create a set of intentions
|
|
var ids []string
|
|
{
|
|
insert := [][]string{
|
|
[]string{"a", "b", "c", "d"},
|
|
}
|
|
|
|
for _, v := range insert {
|
|
ixn := &api.Intention{
|
|
SourceNS: v[0],
|
|
SourceName: v[1],
|
|
DestinationNS: v[2],
|
|
DestinationName: v[3],
|
|
Action: api.IntentionActionAllow,
|
|
}
|
|
|
|
id, _, err := client.Connect().IntentionCreate(ixn, nil)
|
|
require.NoError(err)
|
|
ids = append(ids, id)
|
|
}
|
|
}
|
|
|
|
finder := &Finder{Client: client}
|
|
ixn, err := finder.Find("a/b", "c/d")
|
|
require.NoError(err)
|
|
require.Equal(ids[0], ixn.ID)
|
|
|
|
ixn, err = finder.Find("a/c", "c/d")
|
|
require.NoError(err)
|
|
require.Nil(ixn)
|
|
}
|