// // Copyright 2019 AT&T Intellectual Property // Copyright 2019 Nokia // // 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. // This source code is part of the near-RT RIC (RAN Intelligent Controller) // platform project (RICP). package reader import ( "testing" "github.com/stretchr/testify/assert" ) func initSdlInstanceMockTest() (sdlInstanceMockTest *MockSdlInstance) { sdlInstanceMockTest = new(MockSdlInstance) return } func TestRemoveAll(t *testing.T){ sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("RemoveAll").Return(nil) err := sdlInstanceMockTest.RemoveAll() assert.Nil(t, err) } func TestRemove(t *testing.T){ var data []string sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("Remove", []string(data)).Return(nil) err := sdlInstanceMockTest.Remove(data) assert.Nil(t, err) } func TestRemoveIf(t *testing.T){ var data map[string]interface{} key := "key" sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("RemoveIf", key, data).Return(true,nil) res, err := sdlInstanceMockTest.RemoveIf(key, data) assert.Nil(t, err) assert.NotNil(t, res) } func TestRemoveGroup(t *testing.T){ group := "group" sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("RemoveGroup", group).Return(nil) err := sdlInstanceMockTest.RemoveGroup(group) assert.Nil(t, err) } func TestRemoveIfAndPublish(t *testing.T){ var data map[string]interface{} var channelsAndEvents []string key := "key" sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("RemoveIfAndPublish", channelsAndEvents, key, data).Return(true,nil) res, err := sdlInstanceMockTest.RemoveIfAndPublish(channelsAndEvents, key, data) assert.Nil(t, err) assert.NotNil(t, res) } func TestRemoveAndPublish(t *testing.T){ var channelsAndEvents []string var keys []string sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("RemoveAndPublish", []string(channelsAndEvents), []string(keys)).Return(nil) err := sdlInstanceMockTest.RemoveAndPublish(channelsAndEvents, keys) assert.Nil(t, err) } func TestRemoveAllAndPublish(t *testing.T){ var channelsAndEvents []string sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("RemoveAllAndPublish", []string(channelsAndEvents)).Return(nil) err := sdlInstanceMockTest.RemoveAllAndPublish(channelsAndEvents) assert.Nil(t, err) } func TestIsMember(t *testing.T){ var ret map[string]interface{} sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("IsMember", "group", ret).Return(true,nil) res, err := sdlInstanceMockTest.IsMember("group", ret) assert.Nil(t, err) assert.NotNil(t, res) } func TestClose(t *testing.T){ sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("Close").Return(nil) err := sdlInstanceMockTest.Close() assert.Nil(t, err) } func TestSetIfNotExists(t *testing.T){ var data map[string]interface{} key := "key" sdlInstanceMockTest := initSdlInstanceMockTest() sdlInstanceMockTest.On("SetIfNotExists", key, data).Return(true,nil) res, err := sdlInstanceMockTest.SetIfNotExists(key, data) assert.Nil(t, err) assert.NotNil(t, res) }