2023-09-05 16:17:19 +00:00
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package read
import (
2023-09-13 18:48:40 +00:00
"errors"
2023-09-05 16:17:19 +00:00
"testing"
"github.com/mitchellh/cli"
"github.com/stretchr/testify/require"
2023-09-13 18:48:40 +00:00
"github.com/hashicorp/consul/agent"
"github.com/hashicorp/consul/command/resource/apply"
"github.com/hashicorp/consul/testrpc"
2023-09-05 16:17:19 +00:00
)
func TestResourceReadInvalidArgs ( t * testing . T ) {
t . Parallel ( )
type tc struct {
2023-09-13 18:48:40 +00:00
args [ ] string
expectedCode int
expectedErr error
2023-09-05 16:17:19 +00:00
}
cases := map [ string ] tc {
"nil args" : {
2023-09-13 18:48:40 +00:00
args : nil ,
expectedCode : 1 ,
2023-09-18 13:09:31 +00:00
expectedErr : errors . New ( "Incorrect argument format: Must specify two arguments: resource type and resource name" ) ,
2023-09-05 16:17:19 +00:00
} ,
"empty args" : {
2023-09-13 18:48:40 +00:00
args : [ ] string { } ,
expectedCode : 1 ,
2023-09-18 13:09:31 +00:00
expectedErr : errors . New ( "Incorrect argument format: Must specify two arguments: resource type and resource name" ) ,
2023-09-05 16:17:19 +00:00
} ,
"missing file path" : {
2023-09-13 18:48:40 +00:00
args : [ ] string { "-f" } ,
expectedCode : 1 ,
expectedErr : errors . New ( "Failed to parse args: flag needs an argument: -f" ) ,
} ,
"file not found" : {
args : [ ] string { "-f=../testdata/test.hcl" } ,
expectedCode : 1 ,
expectedErr : errors . New ( "Failed to load data: Failed to read file: open ../testdata/test.hcl: no such file or directory" ) ,
2023-09-05 16:17:19 +00:00
} ,
"provide type and name" : {
2023-09-13 18:48:40 +00:00
args : [ ] string { "a.b.c" } ,
expectedCode : 1 ,
2023-09-18 13:09:31 +00:00
expectedErr : errors . New ( "Incorrect argument format: Must specify two arguments: resource type and resource name" ) ,
2023-09-05 16:17:19 +00:00
} ,
"provide type and name with -f" : {
2023-09-13 18:48:40 +00:00
args : [ ] string { "a.b.c" , "name" , "-f" , "test.hcl" } ,
expectedCode : 1 ,
2023-09-18 13:09:31 +00:00
expectedErr : errors . New ( "Incorrect argument format: File argument is not needed when resource information is provided with the command" ) ,
2023-09-05 16:17:19 +00:00
} ,
"provide type and name with -f and other flags" : {
2023-09-13 18:48:40 +00:00
args : [ ] string { "a.b.c" , "name" , "-f" , "test.hcl" , "-namespace" , "default" } ,
expectedCode : 1 ,
2023-09-18 13:09:31 +00:00
expectedErr : errors . New ( "Incorrect argument format: File argument is not needed when resource information is provided with the command" ) ,
2023-09-05 16:17:19 +00:00
} ,
"does not provide resource name after type" : {
2023-09-13 18:48:40 +00:00
args : [ ] string { "a.b.c" , "-namespace" , "default" } ,
expectedCode : 1 ,
2023-09-18 13:09:31 +00:00
expectedErr : errors . New ( "Incorrect argument format: Must provide resource name right after type" ) ,
2023-09-13 18:48:40 +00:00
} ,
"invalid resource type format" : {
args : [ ] string { "a." , "name" , "-namespace" , "default" } ,
expectedCode : 1 ,
2023-10-24 15:53:51 +00:00
expectedErr : errors . New ( "Incorrect argument format: Must provide resource type argument with either in group.verion.kind format or its shorthand name" ) ,
2023-09-05 16:17:19 +00:00
} ,
}
for desc , tc := range cases {
t . Run ( desc , func ( t * testing . T ) {
ui := cli . NewMockUi ( )
c := New ( ui )
2023-09-13 18:48:40 +00:00
code := c . Run ( tc . args )
require . Equal ( t , tc . expectedCode , code )
require . Contains ( t , ui . ErrorWriter . String ( ) , tc . expectedErr . Error ( ) )
2023-09-05 16:17:19 +00:00
} )
}
}
2023-09-13 18:48:40 +00:00
func createResource ( t * testing . T , a * agent . TestAgent ) {
applyUi := cli . NewMockUi ( )
applyCmd := apply . New ( applyUi )
args := [ ] string {
"-http-addr=" + a . HTTPAddr ( ) ,
"-token=root" ,
}
args = append ( args , [ ] string { "-f=../testdata/demo.hcl" } ... )
code := applyCmd . Run ( args )
require . Equal ( t , 0 , code )
require . Empty ( t , applyUi . ErrorWriter . String ( ) )
}
2023-09-05 16:17:19 +00:00
func TestResourceRead ( t * testing . T ) {
2023-09-13 18:48:40 +00:00
if testing . Short ( ) {
t . Skip ( "too slow for testing.Short" )
}
t . Parallel ( )
a := agent . NewTestAgent ( t , ` ` )
defer a . Shutdown ( )
testrpc . WaitForTestAgent ( t , a . RPC , "dc1" )
defaultCmdArgs := [ ] string {
"-http-addr=" + a . HTTPAddr ( ) ,
"-token=root" ,
}
createResource ( t , a )
cases := [ ] struct {
name string
args [ ] string
expectedCode int
errMsg string
} {
{
name : "read resource in hcl format" ,
args : [ ] string { "-f=../testdata/demo.hcl" } ,
expectedCode : 0 ,
errMsg : "" ,
} ,
{
name : "read resource in command line format" ,
args : [ ] string { "demo.v2.Artist" , "korn" , "-partition=default" , "-namespace=default" , "-peer=local" } ,
expectedCode : 0 ,
errMsg : "" ,
} ,
{
name : "read resource that doesn't exist" ,
args : [ ] string { "demo.v2.Artist" , "fake-korn" , "-partition=default" , "-namespace=default" , "-peer=local" } ,
expectedCode : 1 ,
2023-11-22 17:04:54 +00:00
errMsg : "Error reading resource demo.v2.Artist/fake-korn: Unexpected response code: 404 (rpc error: code = NotFound desc = resource not found)\n" ,
2023-09-13 18:48:40 +00:00
} ,
}
for _ , tc := range cases {
t . Run ( tc . name , func ( t * testing . T ) {
ui := cli . NewMockUi ( )
c := New ( ui )
cliArgs := append ( tc . args , defaultCmdArgs ... )
code := c . Run ( cliArgs )
2023-11-22 17:04:54 +00:00
require . Equal ( t , tc . errMsg , ui . ErrorWriter . String ( ) )
2023-09-13 18:48:40 +00:00
require . Equal ( t , tc . expectedCode , code )
} )
}
2023-09-05 16:17:19 +00:00
}