236 lines
6.9 KiB
Go
236 lines
6.9 KiB
Go
package endpoints
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/datastore"
|
|
"github.com/portainer/portainer/api/http/security"
|
|
"github.com/portainer/portainer/api/internal/snapshot"
|
|
"github.com/portainer/portainer/api/internal/testhelpers"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type endpointListTest struct {
|
|
title string
|
|
expected []portainer.EndpointID
|
|
}
|
|
|
|
func Test_EndpointList_AgentVersion(t *testing.T) {
|
|
version1Endpoint := portainer.Endpoint{
|
|
ID: 1,
|
|
GroupID: 1,
|
|
Type: portainer.AgentOnDockerEnvironment,
|
|
Agent: struct {
|
|
Version string "example:\"1.0.0\""
|
|
}{
|
|
Version: "1.0.0",
|
|
},
|
|
}
|
|
version2Endpoint := portainer.Endpoint{ID: 2, GroupID: 1, Type: portainer.AgentOnDockerEnvironment, Agent: struct {
|
|
Version string "example:\"1.0.0\""
|
|
}{Version: "2.0.0"}}
|
|
noVersionEndpoint := portainer.Endpoint{ID: 3, Type: portainer.AgentOnDockerEnvironment, GroupID: 1}
|
|
notAgentEnvironments := portainer.Endpoint{ID: 4, Type: portainer.DockerEnvironment, GroupID: 1}
|
|
|
|
handler := setupEndpointListHandler(t, []portainer.Endpoint{
|
|
notAgentEnvironments,
|
|
version1Endpoint,
|
|
version2Endpoint,
|
|
noVersionEndpoint,
|
|
})
|
|
|
|
type endpointListAgentVersionTest struct {
|
|
endpointListTest
|
|
filter []string
|
|
}
|
|
|
|
tests := []endpointListAgentVersionTest{
|
|
{
|
|
endpointListTest{
|
|
"should show version 1 agent endpoints and non-agent endpoints",
|
|
[]portainer.EndpointID{version1Endpoint.ID, notAgentEnvironments.ID},
|
|
},
|
|
[]string{version1Endpoint.Agent.Version},
|
|
},
|
|
{
|
|
endpointListTest{
|
|
"should show version 2 endpoints and non-agent endpoints",
|
|
[]portainer.EndpointID{version2Endpoint.ID, notAgentEnvironments.ID},
|
|
},
|
|
[]string{version2Endpoint.Agent.Version},
|
|
},
|
|
{
|
|
endpointListTest{
|
|
"should show version 1 and 2 endpoints and non-agent endpoints",
|
|
[]portainer.EndpointID{version2Endpoint.ID, notAgentEnvironments.ID, version1Endpoint.ID},
|
|
},
|
|
[]string{version2Endpoint.Agent.Version, version1Endpoint.Agent.Version},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.title, func(t *testing.T) {
|
|
is := assert.New(t)
|
|
query := ""
|
|
for _, filter := range test.filter {
|
|
query += fmt.Sprintf("agentVersions[]=%s&", filter)
|
|
}
|
|
|
|
req := buildEndpointListRequest(query)
|
|
|
|
resp, err := doEndpointListRequest(req, handler, is)
|
|
is.NoError(err)
|
|
|
|
is.Equal(len(test.expected), len(resp))
|
|
|
|
respIds := []portainer.EndpointID{}
|
|
|
|
for _, endpoint := range resp {
|
|
respIds = append(respIds, endpoint.ID)
|
|
}
|
|
|
|
is.ElementsMatch(test.expected, respIds)
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_endpointList_edgeFilter(t *testing.T) {
|
|
|
|
trustedEdgeAsync := portainer.Endpoint{ID: 1, UserTrusted: true, Edge: portainer.EnvironmentEdgeSettings{AsyncMode: true}, GroupID: 1, Type: portainer.EdgeAgentOnDockerEnvironment}
|
|
untrustedEdgeAsync := portainer.Endpoint{ID: 2, UserTrusted: false, Edge: portainer.EnvironmentEdgeSettings{AsyncMode: true}, GroupID: 1, Type: portainer.EdgeAgentOnDockerEnvironment}
|
|
regularUntrustedEdgeStandard := portainer.Endpoint{ID: 3, UserTrusted: false, Edge: portainer.EnvironmentEdgeSettings{AsyncMode: false}, GroupID: 1, Type: portainer.EdgeAgentOnDockerEnvironment}
|
|
regularTrustedEdgeStandard := portainer.Endpoint{ID: 4, UserTrusted: true, Edge: portainer.EnvironmentEdgeSettings{AsyncMode: false}, GroupID: 1, Type: portainer.EdgeAgentOnDockerEnvironment}
|
|
regularEndpoint := portainer.Endpoint{ID: 5, GroupID: 1, Type: portainer.DockerEnvironment}
|
|
|
|
handler := setupEndpointListHandler(t, []portainer.Endpoint{
|
|
trustedEdgeAsync,
|
|
untrustedEdgeAsync,
|
|
regularUntrustedEdgeStandard,
|
|
regularTrustedEdgeStandard,
|
|
regularEndpoint,
|
|
})
|
|
|
|
type endpointListEdgeTest struct {
|
|
endpointListTest
|
|
edgeAsync *bool
|
|
edgeDeviceUntrusted bool
|
|
}
|
|
|
|
tests := []endpointListEdgeTest{
|
|
{
|
|
endpointListTest: endpointListTest{
|
|
"should show all endpoints expect of the untrusted devices",
|
|
[]portainer.EndpointID{trustedEdgeAsync.ID, regularTrustedEdgeStandard.ID, regularEndpoint.ID},
|
|
},
|
|
},
|
|
{
|
|
endpointListTest: endpointListTest{
|
|
"should show only trusted edge async agents and regular endpoints",
|
|
[]portainer.EndpointID{trustedEdgeAsync.ID, regularEndpoint.ID},
|
|
},
|
|
edgeAsync: BoolAddr(true),
|
|
},
|
|
{
|
|
endpointListTest: endpointListTest{
|
|
"should show only untrusted edge devices and regular endpoints",
|
|
[]portainer.EndpointID{untrustedEdgeAsync.ID, regularEndpoint.ID},
|
|
},
|
|
edgeAsync: BoolAddr(true),
|
|
edgeDeviceUntrusted: true,
|
|
},
|
|
{
|
|
endpointListTest: endpointListTest{
|
|
"should show no edge devices",
|
|
[]portainer.EndpointID{regularEndpoint.ID, regularTrustedEdgeStandard.ID},
|
|
},
|
|
edgeAsync: BoolAddr(false),
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.title, func(t *testing.T) {
|
|
is := assert.New(t)
|
|
|
|
query := fmt.Sprintf("edgeDeviceUntrusted=%v&", test.edgeDeviceUntrusted)
|
|
if test.edgeAsync != nil {
|
|
query += fmt.Sprintf("edgeAsync=%v&", *test.edgeAsync)
|
|
}
|
|
|
|
req := buildEndpointListRequest(query)
|
|
resp, err := doEndpointListRequest(req, handler, is)
|
|
is.NoError(err)
|
|
|
|
is.Equal(len(test.expected), len(resp))
|
|
|
|
respIds := []portainer.EndpointID{}
|
|
|
|
for _, endpoint := range resp {
|
|
respIds = append(respIds, endpoint.ID)
|
|
}
|
|
|
|
is.ElementsMatch(test.expected, respIds)
|
|
})
|
|
}
|
|
}
|
|
|
|
func setupEndpointListHandler(t *testing.T, endpoints []portainer.Endpoint) *Handler {
|
|
is := assert.New(t)
|
|
_, store := datastore.MustNewTestStore(t, true, true)
|
|
|
|
for _, endpoint := range endpoints {
|
|
err := store.Endpoint().Create(&endpoint)
|
|
is.NoError(err, "error creating environment")
|
|
}
|
|
|
|
err := store.User().Create(&portainer.User{Username: "admin", Role: portainer.AdministratorRole})
|
|
is.NoError(err, "error creating a user")
|
|
|
|
bouncer := testhelpers.NewTestRequestBouncer()
|
|
|
|
handler := NewHandler(bouncer, nil)
|
|
handler.DataStore = store
|
|
handler.ComposeStackManager = testhelpers.NewComposeStackManager()
|
|
handler.SnapshotService, _ = snapshot.NewService("1s", store, nil, nil, nil)
|
|
|
|
return handler
|
|
}
|
|
|
|
func buildEndpointListRequest(query string) *http.Request {
|
|
req := httptest.NewRequest(http.MethodGet, fmt.Sprintf("/endpoints?%s", query), nil)
|
|
|
|
ctx := security.StoreTokenData(req, &portainer.TokenData{ID: 1, Username: "admin", Role: 1})
|
|
req = req.WithContext(ctx)
|
|
|
|
restrictedCtx := security.StoreRestrictedRequestContext(req, &security.RestrictedRequestContext{UserID: 1, IsAdmin: true})
|
|
req = req.WithContext(restrictedCtx)
|
|
|
|
req.Header.Add("Authorization", "Bearer dummytoken")
|
|
|
|
return req
|
|
}
|
|
|
|
func doEndpointListRequest(req *http.Request, h *Handler, is *assert.Assertions) ([]portainer.Endpoint, error) {
|
|
rr := httptest.NewRecorder()
|
|
h.ServeHTTP(rr, req)
|
|
|
|
is.Equal(http.StatusOK, rr.Code, "Status should be 200")
|
|
body, err := io.ReadAll(rr.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
resp := []portainer.Endpoint{}
|
|
err = json.Unmarshal(body, &resp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return resp, nil
|
|
}
|