blob: 2da77e388d7956f5b3e26a2794a251320833a0ac [file] [log] [blame]
gerardo.laurenzidc3ddb42019-10-04 14:33:58 +00001/*
2 * Copyright 2018-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package afrouter
18
19import (
20 "github.com/opencord/voltha-go/common/log"
21 "github.com/stretchr/testify/assert"
22 "testing"
23)
24
25func init() {
26 log.SetDefaultLogger(log.JSON, log.DebugLevel, nil)
27 log.AddPackage(log.JSON, log.WarnLevel, nil)
28}
29
30func TestRouter(t *testing.T) {
31 routeConfig, routerConfig := MakeRoundRobinTestConfig(1, 1)
32 router, err := newRouter(routerConfig)
33 assert.NotNil(t, router)
34 assert.NotNil(t, routeConfig)
35 assert.Nil(t, err)
36}
37
38func TestSubRouter(t *testing.T) {
39 routeConfig, routerConfig := MakeRoundRobinTestConfig(1, 1)
40 router, err := newSubRouter(routerConfig, routeConfig)
41 assert.NotNil(t, router)
42 assert.Nil(t, err)
43}
44
45func TestRouterNoProtoService(t *testing.T) {
46 routeConfig, routerConfig := MakeRoundRobinTestConfig(1, 1)
47 routerConfig.ProtoService = ""
48
49 _, err := newRouter(routerConfig)
50 assert.NotNil(t, routeConfig)
51 assert.NotNil(t, err)
52}