Files
flagger/pkg/loadtester/server_test.go
Cédric Connes 6085753d84 Only allow namespaces matching -namespace-regexp
This allows to forbid access from canaries in non-whitelisted
namespaces.
In a multi-tenant context, this can be combined with network policies to
maintain isolation between namespaces.

Signed-off-by: Cédric Connes <cedric.connes@gmail.com>
2022-02-24 18:24:03 +01:00

92 lines
2.6 KiB
Go

/*
Copyright 2020 The Flux authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package loadtester
import (
"bytes"
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
flaggerv1 "github.com/fluxcd/flagger/pkg/apis/flagger/v1beta1"
"github.com/stretchr/testify/assert"
)
func TestServer_HandleHealthz(t *testing.T) {
req, _ := http.NewRequest("GET", "/heathz", nil)
resp := httptest.NewRecorder()
HandleHealthz(resp, req)
assert.Equal(t, http.StatusOK, resp.Code)
assert.Equal(t, "OK", resp.Body.String())
}
func TestServer_HandleNewBashTaskCmdExitZero(t *testing.T) {
mocks := newServerFixture()
resp := mocks.resp
req := newJsonRequest("POST", "/", &flaggerv1.CanaryWebhookPayload{
Metadata: map[string]string{
"type": TaskTypeBash,
"cmd": "echo some-output-not-to-be-returned",
},
})
HandleNewTask(mocks.logger, mocks.taskRunner, NewAuthorizer(nil))(resp, req)
assert.Equal(t, http.StatusOK, resp.Code)
assert.Empty(t, resp.Body.String())
}
func TestServer_HandleNewBashTaskCmdExitZeroReturnCmdOutput(t *testing.T) {
mocks := newServerFixture()
resp := mocks.resp
req := newJsonRequest("POST", "/", &flaggerv1.CanaryWebhookPayload{
Metadata: map[string]string{
"type": TaskTypeBash,
"cmd": "echo some-output-to-be-returned",
"returnCmdOutput": "true",
},
})
HandleNewTask(mocks.logger, mocks.taskRunner, NewAuthorizer(nil))(resp, req)
assert.Equal(t, http.StatusOK, resp.Code)
assert.Equal(t, "some-output-to-be-returned\n", resp.Body.String())
}
func TestServer_HandleNewBashTaskCmdExitNonZero(t *testing.T) {
mocks := newServerFixture()
resp := mocks.resp
req := newJsonRequest("POST", "/", &flaggerv1.CanaryWebhookPayload{
Metadata: map[string]string{
"type": TaskTypeBash,
"cmd": "false",
},
})
HandleNewTask(mocks.logger, mocks.taskRunner, NewAuthorizer(nil))(resp, req)
assert.Equal(t, http.StatusInternalServerError, resp.Code)
assert.Equal(t, "command false failed: : exit status 1", resp.Body.String())
}
func newJsonRequest(method string, url string, v interface{}) *http.Request {
payload, _ := json.Marshal(v)
req, _ := http.NewRequest(method, url, bytes.NewReader(payload))
return req
}