command/intention/match

This commit is contained in:
Mitchell Hashimoto 2018-05-16 08:47:32 -07:00
parent 8ffca97596
commit 6a82e78cb4
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
2 changed files with 165 additions and 4 deletions

View File

@ -51,24 +51,34 @@ func (c *cmd) Run(args []string) int {
args = c.flags.Args()
if len(args) != 1 {
c.UI.Error(fmt.Sprintf("Error: command requires exactly one argument: src or dst"))
return 2
return 1
}
if c.flagSource && c.flagDestination {
c.UI.Error(fmt.Sprintf("Error: only one of -source or -destination may be specified"))
return 1
}
by := api.IntentionMatchDestination
if c.flagSource {
by = api.IntentionMatchSource
}
// Create and test the HTTP client
client, err := c.http.APIClient()
if err != nil {
c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
return 2
return 1
}
// Match the intention
matches, _, err := client.Connect().IntentionMatch(&api.IntentionMatch{
By: api.IntentionMatchDestination,
By: by,
Names: []string{args[0]},
}, nil)
if err != nil {
c.UI.Error(fmt.Sprintf("Error matching the connection: %s", err))
return 2
return 1
}
for _, ixn := range matches[args[0]] {

View File

@ -0,0 +1,151 @@
package match
import (
"strings"
"testing"
"github.com/hashicorp/consul/agent"
"github.com/hashicorp/consul/api"
"github.com/mitchellh/cli"
"github.com/stretchr/testify/require"
)
func TestCommand_noTabs(t *testing.T) {
t.Parallel()
if strings.ContainsRune(New(nil).Help(), '\t') {
t.Fatal("help has tabs")
}
}
func TestCommand_Validation(t *testing.T) {
t.Parallel()
ui := cli.NewMockUi()
c := New(ui)
cases := map[string]struct {
args []string
output string
}{
"0 args": {
[]string{},
"requires exactly one",
},
"3 args": {
[]string{"a", "b", "c"},
"requires exactly one",
},
"both source and dest": {
[]string{"-source", "-destination", "foo"},
"only one of -source",
},
}
for name, tc := range cases {
t.Run(name, func(t *testing.T) {
require := require.New(t)
c.init()
// Ensure our buffer is always clear
if ui.ErrorWriter != nil {
ui.ErrorWriter.Reset()
}
if ui.OutputWriter != nil {
ui.OutputWriter.Reset()
}
require.Equal(1, c.Run(tc.args))
output := ui.ErrorWriter.String()
require.Contains(output, tc.output)
})
}
}
func TestCommand_matchDst(t *testing.T) {
t.Parallel()
require := require.New(t)
a := agent.NewTestAgent(t.Name(), ``)
defer a.Shutdown()
client := a.Client()
// Create some intentions
{
insert := [][]string{
{"foo", "db"},
{"web", "db"},
{"*", "db"},
}
for _, v := range insert {
id, _, err := client.Connect().IntentionCreate(&api.Intention{
SourceName: v[0],
DestinationName: v[1],
Action: api.IntentionActionDeny,
}, nil)
require.NoError(err)
require.NotEmpty(id)
}
}
// Match it
{
ui := cli.NewMockUi()
c := New(ui)
args := []string{
"-http-addr=" + a.HTTPAddr(),
"db",
}
require.Equal(0, c.Run(args), ui.ErrorWriter.String())
require.Contains(ui.OutputWriter.String(), "web")
require.Contains(ui.OutputWriter.String(), "db")
require.Contains(ui.OutputWriter.String(), "*")
}
}
func TestCommand_matchSource(t *testing.T) {
t.Parallel()
require := require.New(t)
a := agent.NewTestAgent(t.Name(), ``)
defer a.Shutdown()
client := a.Client()
// Create some intentions
{
insert := [][]string{
{"foo", "db"},
{"web", "db"},
{"*", "db"},
}
for _, v := range insert {
id, _, err := client.Connect().IntentionCreate(&api.Intention{
SourceName: v[0],
DestinationName: v[1],
Action: api.IntentionActionDeny,
}, nil)
require.NoError(err)
require.NotEmpty(id)
}
}
// Match it
{
ui := cli.NewMockUi()
c := New(ui)
args := []string{
"-http-addr=" + a.HTTPAddr(),
"-source",
"foo",
}
require.Equal(0, c.Run(args), ui.ErrorWriter.String())
require.Contains(ui.OutputWriter.String(), "db")
require.NotContains(ui.OutputWriter.String(), "web")
}
}