X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=capifcore%2Finternal%2Fpublishservice%2Fpublishservice_test.go;h=6882bc9b5ba12a7099d98fc308074f7466dd2f98;hb=c4121cc21b3b088df1ee22a9bf7645e5dddb1f6a;hp=3c19204ac496c7d2bad8a5ca0d74840ede98c9af;hpb=c3cc44190afd4793d76f3cc5814b8b5e79267fb3;p=nonrtric%2Fplt%2Fsme.git diff --git a/capifcore/internal/publishservice/publishservice_test.go b/capifcore/internal/publishservice/publishservice_test.go index 3c19204..6882bc9 100644 --- a/capifcore/internal/publishservice/publishservice_test.go +++ b/capifcore/internal/publishservice/publishservice_test.go @@ -2,7 +2,8 @@ // ========================LICENSE_START================================= // O-RAN-SC // %% -// Copyright (C) 2022: Nordix Foundation +// Copyright (C) 2022-2023: Nordix Foundation +// Copyright (C) 2024: OpenInfra Foundation Europe // %% // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -46,20 +47,50 @@ import ( "github.com/stretchr/testify/mock" ) +func TestUnregisteredService(t *testing.T) { + apfId := "apfId" + serviceRegisterMock := serviceMocks.ServiceRegister{} + serviceRegisterMock.On("IsPublishingFunctionRegistered", apfId).Return(false) + + helmManagerMock := helmMocks.HelmManager{} + helmManagerMock.On("InstallHelmChart", mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return(nil) + _, _, requestHandler := getEcho(&serviceRegisterMock, &helmManagerMock) + + // Check no services published + result := testutil.NewRequest().Get("/"+apfId+"/service-apis").Go(t, requestHandler) + assert.Equal(t, http.StatusNotFound, result.Code()) + + var resultError common29122.ProblemDetails + err := result.UnmarshalJsonToObject(&resultError) + assert.NoError(t, err, "error unmarshaling response") + + assert.Contains(t, *resultError.Cause, "api is only available for publishers") + assert.Equal(t, http.StatusNotFound, *resultError.Status) +} + + func TestPublishUnpublishService(t *testing.T) { apfId := "apfId" aefId := "aefId" serviceRegisterMock := serviceMocks.ServiceRegister{} serviceRegisterMock.On("GetAefsForPublisher", apfId).Return([]string{aefId, "otherAefId"}) + serviceRegisterMock.On("IsPublishingFunctionRegistered", apfId).Return(true) helmManagerMock := helmMocks.HelmManager{} helmManagerMock.On("InstallHelmChart", mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return(nil) serviceUnderTest, eventChannel, requestHandler := getEcho(&serviceRegisterMock, &helmManagerMock) - // Check no services published for provider + // Check no services published + var resultServices []publishapi.ServiceAPIDescription result := testutil.NewRequest().Get("/"+apfId+"/service-apis").Go(t, requestHandler) + assert.Equal(t, http.StatusOK, result.Code()) - assert.Equal(t, http.StatusNotFound, result.Code()) + // Parse JSON from the response body + err := result.UnmarshalJsonToObject(&resultServices) + assert.NoError(t, err, "error unmarshaling response") + + // Check if the parsed array is empty + assert.Zero(t, len(resultServices)) apiName := "app-management" namespace := "namespace" @@ -71,17 +102,16 @@ func TestPublishUnpublishService(t *testing.T) { // Publish a service for provider result = testutil.NewRequest().Post("/"+apfId+"/service-apis").WithJsonBody(newServiceDescription).Go(t, requestHandler) - assert.Equal(t, http.StatusCreated, result.Code()) + var resultService publishapi.ServiceAPIDescription - err := result.UnmarshalBodyToObject(&resultService) + + err = result.UnmarshalJsonToObject(&resultService) assert.NoError(t, err, "error unmarshaling response") newApiId := "api_id_" + apiName assert.Equal(t, newApiId, *resultService.ApiId) assert.Equal(t, "http://example.com/"+apfId+"/service-apis/"+*resultService.ApiId, result.Recorder.Header().Get(echo.HeaderLocation)) newServiceDescription.ApiId = &newApiId - wantedAPILIst := []publishapi.ServiceAPIDescription{newServiceDescription} - assert.True(t, serviceUnderTest.AreAPIsPublished(&wantedAPILIst)) assert.True(t, serviceUnderTest.IsAPIPublished(aefId, apiName)) serviceRegisterMock.AssertCalled(t, "GetAefsForPublisher", apfId) helmManagerMock.AssertCalled(t, "InstallHelmChart", namespace, repoName, chartName, releaseName) @@ -97,7 +127,7 @@ func TestPublishUnpublishService(t *testing.T) { result = testutil.NewRequest().Get("/"+apfId+"/service-apis/"+newApiId).Go(t, requestHandler) assert.Equal(t, http.StatusOK, result.Code()) - err = result.UnmarshalBodyToObject(&resultService) + err = result.UnmarshalJsonToObject(&resultService) assert.NoError(t, err, "error unmarshaling response") assert.Equal(t, *resultService.ApiId, newApiId) @@ -106,7 +136,7 @@ func TestPublishUnpublishService(t *testing.T) { assert.Equal(t, http.StatusForbidden, result.Code()) var resultError common29122.ProblemDetails - err = result.UnmarshalBodyToObject(&resultError) + err = result.UnmarshalJsonToObject(&resultError) assert.NoError(t, err, "error unmarshaling response") assert.Contains(t, *resultError.Cause, "already published") assert.Equal(t, http.StatusForbidden, *resultError.Status) @@ -120,7 +150,7 @@ func TestPublishUnpublishService(t *testing.T) { helmManagerMock.AssertCalled(t, "UninstallHelmChart", namespace, chartName) assert.Empty(t, serviceUnderTest.getAllAefIds()) - // Check no services published + // Check no services published for a provider result = testutil.NewRequest().Get("/"+apfId+"/service-apis/"+newApiId).Go(t, requestHandler) if publishEvent, ok := waitForEvent(eventChannel, 1*time.Second); ok { @@ -131,6 +161,18 @@ func TestPublishUnpublishService(t *testing.T) { } assert.Equal(t, http.StatusNotFound, result.Code()) + + // Check no services published + result = testutil.NewRequest().Get("/"+apfId+"/service-apis").Go(t, requestHandler) + assert.Equal(t, http.StatusOK, result.Code()) + + // Parse JSON from the response body + var responseArray []publishapi.ServiceAPIDescription + err = result.UnmarshalJsonToObject(&responseArray) + assert.NoError(t, err, "error unmarshaling response") + + // Check if the parsed array is empty + assert.Zero(t, len(responseArray)) } func TestPostUnpublishedServiceWithUnregisteredFunction(t *testing.T) { @@ -138,6 +180,7 @@ func TestPostUnpublishedServiceWithUnregisteredFunction(t *testing.T) { aefId := "aefId" serviceRegisterMock := serviceMocks.ServiceRegister{} serviceRegisterMock.On("GetAefsForPublisher", apfId).Return([]string{"otherAefId"}) + serviceRegisterMock.On("IsPublishingFunctionRegistered", apfId).Return(true) _, _, requestHandler := getEcho(&serviceRegisterMock, nil) newServiceDescription := getServiceAPIDescription(aefId, "apiName", "description") @@ -147,7 +190,7 @@ func TestPostUnpublishedServiceWithUnregisteredFunction(t *testing.T) { assert.Equal(t, http.StatusNotFound, result.Code()) var resultError common29122.ProblemDetails - err := result.UnmarshalBodyToObject(&resultError) + err := result.UnmarshalJsonToObject(&resultError) assert.NoError(t, err, "error unmarshaling response") assert.Contains(t, *resultError.Cause, aefId) assert.Contains(t, *resultError.Cause, "not registered") @@ -159,12 +202,21 @@ func TestGetServices(t *testing.T) { aefId := "aefId" serviceRegisterMock := serviceMocks.ServiceRegister{} serviceRegisterMock.On("GetAefsForPublisher", apfId).Return([]string{aefId}) + serviceRegisterMock.On("IsPublishingFunctionRegistered", apfId).Return(true) _, _, requestHandler := getEcho(&serviceRegisterMock, nil) - // Check no services published for provider + // Check no services published + var resultServices []publishapi.ServiceAPIDescription + result := testutil.NewRequest().Get("/"+apfId+"/service-apis").Go(t, requestHandler) + assert.Equal(t, http.StatusOK, result.Code()) - assert.Equal(t, http.StatusNotFound, result.Code()) + // Parse JSON from the response body + err := result.UnmarshalJsonToObject(&resultServices) + assert.NoError(t, err, "error unmarshaling response") + + // Check if the parsed array is empty + assert.Zero(t, len(resultServices)) serviceDescription1 := getServiceAPIDescription(aefId, "api1", "Description") serviceDescription2 := getServiceAPIDescription(aefId, "api2", "Description") @@ -176,14 +228,16 @@ func TestGetServices(t *testing.T) { // Get all services for provider result = testutil.NewRequest().Get("/"+apfId+"/service-apis").Go(t, requestHandler) assert.Equal(t, http.StatusOK, result.Code()) - var resultServices []publishapi.ServiceAPIDescription - err := result.UnmarshalBodyToObject(&resultServices) + + err = result.UnmarshalJsonToObject(&resultServices) assert.NoError(t, err, "error unmarshaling response") + assert.Len(t, resultServices, 2) apiId1 := "api_id_api1" serviceDescription1.ApiId = &apiId1 apiId2 := "api_id_api2" serviceDescription2.ApiId = &apiId2 + assert.Contains(t, resultServices, serviceDescription1) assert.Contains(t, resultServices, serviceDescription2) } @@ -214,6 +268,7 @@ func TestUpdateDescription(t *testing.T) { serviceRegisterMock := serviceMocks.ServiceRegister{} serviceRegisterMock.On("GetAefsForPublisher", apfId).Return([]string{aefId, "otherAefId", "aefIdNew"}) + serviceRegisterMock.On("IsPublishingFunctionRegistered", apfId).Return(true) helmManagerMock := helmMocks.HelmManager{} helmManagerMock.On("InstallHelmChart", mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return(nil) serviceUnderTest, eventChannel, requestHandler := getEcho(&serviceRegisterMock, &helmManagerMock) @@ -233,10 +288,8 @@ func TestUpdateDescription(t *testing.T) { newProfileDomain := "new profile Domain name" var protocol publishapi.Protocol = "HTTP_1_1" - test := make([]publishapi.AefProfile, 1) - test = *updatedServiceDescription.AefProfiles - test = append(test, publishapi.AefProfile{ + test := append(*updatedServiceDescription.AefProfiles, publishapi.AefProfile{ AefId: "aefIdNew", DomainName: &newProfileDomain, Protocol: &protocol, @@ -264,7 +317,7 @@ func TestUpdateDescription(t *testing.T) { var resultService publishapi.ServiceAPIDescription assert.Equal(t, http.StatusOK, result.Code()) - err := result.UnmarshalBodyToObject(&resultService) + err := result.UnmarshalJsonToObject(&resultService) assert.NoError(t, err, "error unmarshaling response") assert.Equal(t, newDescription, *resultService.Description) assert.Equal(t, newDomainName, *(*resultService.AefProfiles)[0].DomainName) @@ -287,6 +340,7 @@ func TestUpdateValidServiceWithDeletedFunction(t *testing.T) { description := "description" serviceRegisterMock := serviceMocks.ServiceRegister{} + serviceRegisterMock.On("IsPublishingFunctionRegistered", apfId).Return(true) serviceRegisterMock.On("GetAefsForPublisher", apfId).Return([]string{aefId, "otherAefId", "aefIdNew"}) helmManagerMock := helmMocks.HelmManager{} helmManagerMock.On("InstallHelmChart", mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return(nil) @@ -361,7 +415,7 @@ func TestUpdateValidServiceWithDeletedFunction(t *testing.T) { result := testutil.NewRequest().Put("/"+apfId+"/service-apis/"+serviceApiId).WithJsonBody(updatedServiceDescription).Go(t, requestHandler) var resultService publishapi.ServiceAPIDescription assert.Equal(t, http.StatusOK, result.Code()) - err := result.UnmarshalBodyToObject(&resultService) + err := result.UnmarshalJsonToObject(&resultService) assert.NoError(t, err, "error unmarshaling response") assert.Len(t, (*resultService.AefProfiles), 1) assert.False(t, serviceUnderTest.IsAPIPublished("aefId", "path")) @@ -369,7 +423,11 @@ func TestUpdateValidServiceWithDeletedFunction(t *testing.T) { } func TestPublishInvalidService(t *testing.T) { - _, _, requestHandler := getEcho(nil, nil) + apfId := "apfId" + serviceRegisterMock := serviceMocks.ServiceRegister{} + serviceRegisterMock.On("IsPublishingFunctionRegistered", apfId).Return(true) + + _, _, requestHandler := getEcho(&serviceRegisterMock, nil) newServiceDescription := getServiceAPIDescription("aefId", " ", "description") // Publish a service @@ -377,7 +435,7 @@ func TestPublishInvalidService(t *testing.T) { assert.Equal(t, http.StatusBadRequest, result.Code()) var resultError common29122.ProblemDetails - err := result.UnmarshalBodyToObject(&resultError) + err := result.UnmarshalJsonToObject(&resultError) assert.NoError(t, err, "error unmarshaling response") assert.Contains(t, *resultError.Cause, "missing") assert.Contains(t, *resultError.Cause, "apiName")