X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=capifcore%2Finternal%2Fpublishserviceapi%2Ftypevalidation_test.go;h=d7b59d5a3b8bfac81d05267a28925f227c372d47;hb=bf6fd321b8147d60a902275e11b41414c35b8514;hp=fa5ccff70902bcf97a3ca8caed460cd9c33b04ec;hpb=30931ba398fc7a3b9269af7120dce7bad027c79e;p=nonrtric%2Fplt%2Fsme.git diff --git a/capifcore/internal/publishserviceapi/typevalidation_test.go b/capifcore/internal/publishserviceapi/typevalidation_test.go index fa5ccff..d7b59d5 100644 --- a/capifcore/internal/publishserviceapi/typevalidation_test.go +++ b/capifcore/internal/publishserviceapi/typevalidation_test.go @@ -1,3 +1,22 @@ +// - +// +// ========================LICENSE_START================================= +// O-RAN-SC +// %% +// Copyright (C) 2023: Nordix Foundation +// %% +// 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. +// ========================LICENSE_END=================================== package publishserviceapi import ( @@ -19,3 +38,18 @@ func TestValidate(t *testing.T) { assert.Nil(t, err) } + +func TestValidateAlreadyPublished(t *testing.T) { + apiName := "apiName" + serviceUnderTest := ServiceAPIDescription{ + ApiName: apiName, + } + + otherService := ServiceAPIDescription{ + ApiName: "otherApiName", + } + assert.Nil(t, serviceUnderTest.ValidateAlreadyPublished(otherService)) + + otherService.ApiName = apiName + assert.NotNil(t, serviceUnderTest.ValidateAlreadyPublished(otherService)) +}