| /* |
| ================================================================================== |
| Copyright (c) 2019 AT&T Intellectual Property. |
| Copyright (c) 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). |
| |
| ================================================================================== |
| */ |
| /* |
| Mnemonic: nbi_test.go |
| Abstract: NBI unit tests |
| Date: 21 May 2019 |
| */ |
| |
| package nbi |
| |
| import ( |
| "errors" |
| "net" |
| "net/http" |
| "net/http/httptest" |
| "reflect" |
| "routing-manager/pkg/appmgr_model" |
| "testing" |
| |
| "github.com/go-openapi/swag" |
| ) |
| |
| func TestGetNbi(t *testing.T) { |
| var errtype = errors.New("") |
| var nbitype = new(HttpGetter) |
| var invalids = []string{"httpgetter", ""} |
| |
| nbii, err := GetNbi("httpGetter") |
| if err != nil { |
| t.Errorf("GetNbi(HttpGetter) was incorrect, got: %v, want: %v.", reflect.TypeOf(err), nil) |
| } |
| if reflect.TypeOf(nbii) != reflect.TypeOf(nbitype) { |
| t.Errorf("GetNbi(HttpGetter) was incorrect, got: %v, want: %v.", reflect.TypeOf(nbii), reflect.TypeOf(nbitype)) |
| } |
| |
| for _, arg := range invalids { |
| _, err := GetNbi(arg) |
| if err == nil { |
| t.Errorf("GetNbi("+arg+") was incorrect, got: %v, want: %v.", reflect.TypeOf(err), reflect.TypeOf(errtype)) |
| } |
| } |
| } |
| func TestCreateSubReq(t *testing.T) { |
| var subData = appmgr_model.SubscriptionData{ |
| TargetURL: swag.String("localhost:8000/ric/v1/handles/xapp-handle/"), |
| EventType: appmgr_model.EventTypeAll, |
| MaxRetries: swag.Int64(5), |
| RetryTimer: swag.Int64(10), |
| } |
| subReq := appmgr_model.SubscriptionRequest{ |
| Data: &subData, |
| } |
| subReq2 := CreateSubReq("localhost", "8000") |
| if reflect.TypeOf(subReq) != reflect.TypeOf(*subReq2) { |
| t.Errorf("Invalid type, got: %v, want: %v.", reflect.TypeOf(subReq), reflect.TypeOf(*subReq2)) |
| } |
| if *(subReq.Data.TargetURL) != *(subReq2.Data.TargetURL) { |
| t.Errorf("Invalid TargetURL generated, got %v, want %v", *subReq.Data.TargetURL, *subReq2.Data.TargetURL) |
| } |
| |
| if (subReq.Data.EventType) != (subReq2.Data.EventType) { |
| t.Errorf("Invalid EventType generated, got %v, want %v", subReq.Data.EventType, subReq2.Data.EventType) |
| } |
| |
| if *(subReq.Data.MaxRetries) != *(subReq2.Data.MaxRetries) { |
| t.Errorf("Invalid MaxRetries generated, got %v, want %v", *subReq.Data.MaxRetries, *subReq2.Data.MaxRetries) |
| } |
| if *(subReq.Data.RetryTimer) != *(subReq2.Data.RetryTimer) { |
| t.Errorf("Invalid RetryTimer generated, got %v, want %v", *subReq.Data.RetryTimer, *subReq2.Data.RetryTimer) |
| } |
| |
| } |
| |
| func TestPostSubReq(t *testing.T) { |
| b := []byte(`{"ID":"deadbeef1234567890", "Version":0, "EventType":"all"}`) |
| l, err := net.Listen("tcp", "127.0.0.1:3000") |
| if err != nil { |
| t.Error("Failed to create listener: " + err.Error()) |
| } |
| ts := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |
| t.Log(r.Method) |
| t.Log(r.URL) |
| if r.Method == "POST" && r.URL.String() == "/ric/v1/subscriptions" { |
| t.Log("Sending reply") |
| w.Header().Add("Content-Type", "application/json") |
| w.WriteHeader(http.StatusCreated) |
| w.Write(b) |
| } |
| })) |
| ts.Listener.Close() |
| ts.Listener = l |
| |
| ts.Start() |
| defer ts.Close() |
| err = PostSubReq("http://127.0.0.1:3000/ric/v1/subscription", "localhost:8888") |
| if err != nil { |
| t.Error("Error occured: " + err.Error()) |
| } |
| } |
| |
| func TestPostSubReqWithInvalidUrls(t *testing.T) { |
| // invalid Xapp Manager URL |
| err := PostSubReq("http://127.0", "http://localhost:8888") |
| if err == nil { |
| t.Error("Error occured: " + err.Error()) |
| } |
| // invalid rest api url |
| err = PostSubReq("http://127.0.0.1:3000/", "localhost:8888") |
| if err == nil { |
| t.Error("Error occured: " + err.Error()) |
| } |
| } |