// // 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 clients import ( "e2mgr/configuration" "e2mgr/logger" "e2mgr/mocks" "testing" ) const E2TAddress = "10.0.2.15:38000" // TODO: add response Body and dont check for nil in prod code. itll always be populated func initRoutingManagerClientTest(t *testing.T) (*RoutingManagerClient, *mocks.HttpClientMock, *configuration.Configuration) { logger := initLog(t) config := &configuration.Configuration{ RoutingManagerBaseUrl: "http://iltlv740.intl.att.com:8080/ric/v1/handles/v1/", } httpClientMock := &mocks.HttpClientMock{} rmClient := NewRoutingManagerClient(logger, config, httpClientMock) return rmClient, httpClientMock, config } //func TestAddE2TInstanceSuccess(t *testing.T) { // rmClient, httpClientMock, config := initRoutingManagerClientTest(t) // // data := models.NewRoutingManagerE2TData(E2TAddress) // marshaled, _ := json.Marshal(data) // body := bytes.NewBuffer(marshaled) // url := config.RoutingManagerBaseUrl + "e2t" // httpClientMock.On("Post", url, "application/json", body).Return(&http.Response{StatusCode: 200}, nil) // err := rmClient.AddE2TInstance(E2TAddress) // assert.Nil(t, err) //} // //func TestAddE2TInstanceFailure(t *testing.T) { // rmClient, httpClientMock, config := initRoutingManagerClientTest(t) // // data := models.NewRoutingManagerE2TData(E2TAddress) // marshaled, _ := json.Marshal(data) // body := bytes.NewBuffer(marshaled) // url := config.RoutingManagerBaseUrl + "e2t" // httpClientMock.On("Post", url, "application/json", body).Return(&http.Response{StatusCode: 400}, nil) // err := rmClient.AddE2TInstance(E2TAddress) // assert.NotNil(t, err) //} // TODO: extract to test_utils func initLog(t *testing.T) *logger.Logger { log, err := logger.InitLogger(logger.InfoLevel) if err != nil { t.Errorf("#delete_all_request_handler_test.TestHandleSuccessFlow - failed to initialize logger, error: %s", err) } return log } //func TestAddE2TInstanceInteg(t *testing.T) { // logger := initLog(t) // config := configuration.ParseConfiguration() // httpClient := &http.Client{} // rmClient := NewRoutingManagerClient(logger, config, httpClient) // err := rmClient.AddE2TInstance(E2TAddress) // assert.Nil(t, err) //}