blob: 212593cc6da1bf44909e8b9827fa2af7b81af42f [file] [log] [blame]
package v5
/*
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.
*/
import (
"net/http"
"testing"
"time"
"github.com/apache/trafficcontrol/lib/go-rfc"
"github.com/apache/trafficcontrol/lib/go-tc"
"github.com/apache/trafficcontrol/lib/go-util/assert"
"github.com/apache/trafficcontrol/traffic_ops/testing/api/utils"
"github.com/apache/trafficcontrol/traffic_ops/toclientlib"
client "github.com/apache/trafficcontrol/traffic_ops/v5-client"
)
func TestServersIDDeliveryServices(t *testing.T) {
WithObjs(t, []TCObj{CDNs, Types, Parameters, Profiles, Statuses, Divisions, Regions, PhysLocations, CacheGroups, Servers, Tenants, Topologies, ServiceCategories, DeliveryServices, DeliveryServiceServerAssignments}, func() {
currentTime := time.Now().UTC().Add(-15 * time.Second)
tomorrow := currentTime.AddDate(0, 0, 1).Format(time.RFC1123)
methodTests := utils.V5TestCase{
"GET": {
"NOT MODIFIED when NO CHANGES made": {
EndpointID: GetServerID(t, "atlanta-edge-14"),
ClientSession: TOSession,
RequestOpts: client.RequestOptions{Header: http.Header{rfc.IfModifiedSince: {tomorrow}}},
Expectations: utils.CkRequest(utils.NoError(), utils.HasStatus(http.StatusNotModified)),
},
"OK when VALID request": {
EndpointID: GetServerID(t, "atlanta-edge-14"),
ClientSession: TOSession,
Expectations: utils.CkRequest(utils.NoError(), utils.HasStatus(http.StatusOK)),
},
},
"POST": {
"OK when VALID request": {
EndpointID: GetServerID(t, "atlanta-edge-01"),
ClientSession: TOSession,
RequestBody: map[string]interface{}{
"dsIds": []int{GetDeliveryServiceId(t, "ds1")()},
"replace": true,
},
Expectations: utils.CkRequest(utils.NoError(), utils.HasStatus(http.StatusOK),
validateServersDeliveryServicesPost(GetServerID(t, "atlanta-edge-01")(), GetDeliveryServiceId(t, "ds1")())),
},
"OK when ASSIGNING EDGE to TOPOLOGY BASED DELIVERY SERVICE": {
EndpointID: GetServerID(t, "atlanta-edge-03"),
ClientSession: TOSession,
RequestBody: map[string]interface{}{
"dsIds": []int{GetDeliveryServiceId(t, "top-ds-in-cdn1")()},
"replace": true,
},
Expectations: utils.CkRequest(utils.NoError(), utils.HasStatus(http.StatusOK),
validateServersDeliveryServicesPost(GetServerID(t, "atlanta-edge-03")(), GetDeliveryServiceId(t, "top-ds-in-cdn1")())),
},
"OK when ASSIGNING ORIGIN to TOPOLOGY BASED DELIVERY SERVICE": {
EndpointID: GetServerID(t, "denver-mso-org-01"),
ClientSession: TOSession,
RequestBody: map[string]interface{}{
"dsIds": []int{GetDeliveryServiceId(t, "ds-top")()},
"replace": true,
},
Expectations: utils.CkRequest(utils.NoError(), utils.HasStatus(http.StatusOK),
validateServersDeliveryServicesPost(GetServerID(t, "denver-mso-org-01")(), GetDeliveryServiceId(t, "ds-top")())),
},
"CONFLICT when SERVER NOT IN SAME CDN as DELIVERY SERVICE": {
EndpointID: GetServerID(t, "cdn2-test-edge"),
ClientSession: TOSession,
RequestBody: map[string]interface{}{
"dsIds": []int{GetDeliveryServiceId(t, "ds1")()},
"replace": true,
},
Expectations: utils.CkRequest(utils.HasError(), utils.HasStatus(http.StatusConflict)),
},
"BAD REQUEST when ORIGIN'S CACHEGROUP IS NOT A PART OF TOPOLOGY BASED DELIVERY SERVICE": {
EndpointID: GetServerID(t, "denver-mso-org-01"),
ClientSession: TOSession,
RequestBody: map[string]interface{}{
"dsIds": []int{GetDeliveryServiceId(t, "ds-top-req-cap")()},
"replace": true,
},
Expectations: utils.CkRequest(utils.HasError(), utils.HasStatus(http.StatusBadRequest)),
},
"CONFLICT when REMOVING ONLY EDGE SERVER ASSIGNMENT": {
EndpointID: GetServerID(t, "test-ds-server-assignments"),
ClientSession: TOSession,
RequestBody: map[string]interface{}{
"dsIds": []int{},
"replace": true,
},
Expectations: utils.CkRequest(utils.HasError(), utils.HasStatus(http.StatusConflict)),
},
"CONFLICT when REMOVING ONLY ORIGIN SERVER ASSIGNMENT": {
EndpointID: GetServerID(t, "test-mso-org-01"),
ClientSession: TOSession,
RequestBody: map[string]interface{}{
"dsIds": []int{},
"replace": true,
},
Expectations: utils.CkRequest(utils.HasError(), utils.HasStatus(http.StatusConflict)),
},
},
}
for method, testCases := range methodTests {
t.Run(method, func(t *testing.T) {
for name, testCase := range testCases {
var dsIds []int
var replace bool
if testCase.RequestBody != nil {
if val, ok := testCase.RequestBody["dsIds"]; ok {
dsIds = val.([]int)
}
if val, ok := testCase.RequestBody["replace"]; ok {
replace = val.(bool)
}
}
switch method {
case "GET":
t.Run(name, func(t *testing.T) {
resp, reqInf, err := testCase.ClientSession.GetServerIDDeliveryServices(testCase.EndpointID(), testCase.RequestOpts)
for _, check := range testCase.Expectations {
check(t, reqInf, resp.Response, resp.Alerts, err)
}
})
case "POST":
t.Run(name, func(t *testing.T) {
alerts, reqInf, err := testCase.ClientSession.AssignDeliveryServiceIDsToServerID(testCase.EndpointID(), dsIds, replace, testCase.RequestOpts)
for _, check := range testCase.Expectations {
check(t, reqInf, nil, alerts, err)
}
})
}
}
})
}
})
}
func validateServersDeliveryServices(expectedDSID int) utils.CkReqFunc {
return func(t *testing.T, _ toclientlib.ReqInf, resp interface{}, _ tc.Alerts, _ error) {
assert.RequireNotNil(t, resp, "Expected Server Delivery Service response to not be nil.")
var found bool
deliveryServices := resp.([]tc.DeliveryServiceV5)
for _, ds := range deliveryServices {
if ds.ID != nil && *ds.ID == expectedDSID {
found = true
break
}
}
assert.Equal(t, true, found, "Expected to find Delivery Service ID: %d in response.")
}
}
func validateServersDeliveryServicesPost(serverID int, expectedDSID int) utils.CkReqFunc {
return func(t *testing.T, _ toclientlib.ReqInf, resp interface{}, _ tc.Alerts, _ error) {
serverDeliveryServices, _, err := TOSession.GetServerIDDeliveryServices(serverID, client.RequestOptions{})
assert.RequireNoError(t, err, "Error getting Server Delivery Services: %v - alerts: %+v", err, serverDeliveryServices.Alerts)
assert.RequireEqual(t, 1, len(serverDeliveryServices.Response), "Expected one Delivery Service returned Got: %d", len(serverDeliveryServices.Response))
validateServersDeliveryServices(expectedDSID)(t, toclientlib.ReqInf{}, serverDeliveryServices.Response, tc.Alerts{}, nil)
}
}