consul/agent/watch_handler_test.go

181 lines
4.6 KiB
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
[COMPLIANCE] License changes (#18443) * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2023-08-11 13:12:13 +00:00
// SPDX-License-Identifier: BUSL-1.1
2014-08-21 21:28:16 +00:00
package agent
import (
"io"
"net/http"
"net/http/httptest"
2014-08-21 21:28:16 +00:00
"os"
"testing"
"time"
2017-10-22 03:08:11 +00:00
"github.com/hashicorp/consul/api/watch"
"github.com/hashicorp/consul/sdk/testutil"
"github.com/hashicorp/go-hclog"
"github.com/stretchr/testify/require"
2014-08-21 21:28:16 +00:00
)
func TestMakeWatchHandler(t *testing.T) {
defer os.Remove("handler_out")
defer os.Remove("handler_index_out")
2018-02-22 14:06:06 +00:00
script := "bash -c 'echo $CONSUL_INDEX >> handler_index_out && cat >> handler_out'"
handler := makeWatchHandler(testutil.Logger(t), script)
2014-08-21 21:28:16 +00:00
handler(100, []string{"foo", "bar", "baz"})
raw, err := os.ReadFile("handler_out")
2014-08-21 21:28:16 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if string(raw) != "[\"foo\",\"bar\",\"baz\"]\n" {
t.Fatalf("bad: %s", raw)
}
raw, err = os.ReadFile("handler_index_out")
2014-08-21 21:28:16 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if string(raw) != "100\n" {
t.Fatalf("bad: %s", raw)
}
}
func TestMakeHTTPWatchHandler(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
idx := r.Header.Get("X-Consul-Index")
if idx != "100" {
t.Fatalf("bad: %s", idx)
}
// Get the first one
customHeader := r.Header.Get("X-Custom")
if customHeader != "abc" {
t.Fatalf("bad: %s", idx)
}
body, err := io.ReadAll(r.Body)
if err != nil {
t.Fatalf("err: %v", err)
}
if string(body) != "[\"foo\",\"bar\",\"baz\"]\n" {
t.Fatalf("bad: %s", body)
}
w.Write([]byte("Ok, i see"))
}))
defer server.Close()
config := watch.HttpHandlerConfig{
Path: server.URL,
Header: map[string][]string{"X-Custom": {"abc", "def"}},
Timeout: time.Minute,
}
handler := makeHTTPWatchHandler(testutil.Logger(t), &config)
handler(100, []string{"foo", "bar", "baz"})
}
type raw map[string]interface{}
func TestMakeWatchPlan(t *testing.T) {
type testCase struct {
name string
params map[string]interface{}
expected func(t *testing.T, plan *watch.Plan)
expectedErr string
}
fn := func(t *testing.T, tc testCase) {
plan, err := makeWatchPlan(hclog.New(nil), tc.params)
if tc.expectedErr != "" {
require.Error(t, err)
require.Contains(t, err.Error(), tc.expectedErr)
return
}
require.NoError(t, err)
tc.expected(t, plan)
}
var testCases = []testCase{
{
name: "handler_type script, with deprecated handler field",
params: raw{
"type": "key",
"key": "foo",
"handler_type": "script",
"handler": "./script.sh",
},
expected: func(t *testing.T, plan *watch.Plan) {
require.Equal(t, plan.HandlerType, "script")
require.Equal(t, plan.Exempt["handler"], "./script.sh")
},
},
{
name: "handler_type script, with single arg",
params: raw{
"type": "key",
"key": "foo",
"handler_type": "script",
"args": "./script.sh",
},
expected: func(t *testing.T, plan *watch.Plan) {
require.Equal(t, plan.HandlerType, "script")
require.Equal(t, plan.Exempt["args"], []string{"./script.sh"})
},
},
{
name: "handler_type script, with multiple args from slice of interface",
params: raw{
"type": "key",
"key": "foo",
"handler_type": "script",
"args": []interface{}{"./script.sh", "arg1"},
},
expected: func(t *testing.T, plan *watch.Plan) {
require.Equal(t, plan.HandlerType, "script")
require.Equal(t, plan.Exempt["args"], []string{"./script.sh", "arg1"})
},
},
{
name: "handler_type script, with multiple args from slice of strings",
params: raw{
"type": "key",
"key": "foo",
"handler_type": "script",
"args": []string{"./script.sh", "arg1"},
},
expected: func(t *testing.T, plan *watch.Plan) {
require.Equal(t, plan.HandlerType, "script")
require.Equal(t, plan.Exempt["args"], []string{"./script.sh", "arg1"})
},
},
{
name: "handler_type script, with not string args",
params: raw{
"type": "key",
"key": "foo",
"handler_type": "script",
"args": []interface{}{"./script.sh", true},
},
expectedErr: "Watch args must be a list of strings",
},
{
name: "conflicting handler",
params: raw{
"type": "key",
"key": "foo",
"handler_type": "script",
"handler": "./script.sh",
"args": []interface{}{"arg1"},
},
expectedErr: "Only one watch handler allowed",
},
{
name: "no handler_type",
params: raw{
"type": "key",
"key": "foo",
},
expectedErr: "Must define a watch handler",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
fn(t, tc)
})
}
}