68 lines
2.2 KiB
Go
68 lines
2.2 KiB
Go
package handlers_test
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"otaupdate/handlers"
|
|
"otaupdate/services"
|
|
|
|
"github.com/fiskerinc/cloud-services/pkg/common"
|
|
"github.com/fiskerinc/cloud-services/pkg/db/queries/mocks"
|
|
th "github.com/fiskerinc/cloud-services/pkg/testhelper"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func TestSubscriptionConfigDelete(t *testing.T) {
|
|
results := mocks.MockORMResults{
|
|
ReturnedRows: 1,
|
|
AffectedRows: 1,
|
|
}
|
|
mock := mocks.MockSubscriptionConfigurations{
|
|
DBMockHelper: mocks.DBMockHelper{
|
|
ORMResponse: &results,
|
|
},
|
|
}
|
|
services.GetDB().SetSubConfigurations(&mock)
|
|
testFeatureID := uuid.MustParse("0557bd1d-76d3-41e5-a44e-13c479e55ab0")
|
|
|
|
tests := []mocks.DBHttpTest{
|
|
{
|
|
Name: "No id",
|
|
Request: th.MakeTestRequest(http.MethodDelete, "http://example.com/subscriptionconfig", nil),
|
|
ExpectedStatus: http.StatusBadRequest,
|
|
ExpectedResponse: `{"message":"primary key required","error":"Bad Request"}`,
|
|
},
|
|
{
|
|
Name: "Invalid data",
|
|
Request: th.MakeTestRequest(http.MethodDelete, "http://example.com/subscriptionconfig?feature_id=0557bd1d-76d3-41e5-a44e-13c479e55ab0", nil),
|
|
ExpectedStatus: http.StatusBadRequest,
|
|
ExpectedResponse: `{"message":"primary key required","error":"Bad Request"}`,
|
|
},
|
|
{
|
|
Name: "Good id",
|
|
Request: th.MakeTestRequest(http.MethodDelete, "http://example.com/subscriptionconfig?feature_id=0557bd1d-76d3-41e5-a44e-13c479e55ab0&ecu=ADAS", nil),
|
|
ExpectedStatus: http.StatusOK,
|
|
ExpectedResponse: `{"message":"Deleted"}`,
|
|
DBTestCase: mocks.DBTestCase{
|
|
ExpectedFilter: &common.SubscriptionConfiguration{
|
|
SubscriptionFeatureID: testFeatureID,
|
|
ECU: "ADAS",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "DB error",
|
|
Request: th.MakeTestRequest(http.MethodDelete, "http://example.com/subscriptionconfig?feature_id=0557bd1d-76d3-41e5-a44e-13c479e55ab0&ecu=ADAS", nil),
|
|
ExpectedStatus: http.StatusServiceUnavailable,
|
|
ExpectedResponse: `{"message":"something went wrong","error":"Service Unavailable"}`,
|
|
DBTestCase: mocks.DBTestCase{
|
|
MockError: fmt.Errorf("something went wrong"),
|
|
},
|
|
},
|
|
}
|
|
|
|
mocks.RunDBTests(t, tests, handlers.HandleSubscriptionConfigDelete, &mock)
|
|
}
|