forked from ligato/vpp-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
import_test.go
85 lines (74 loc) · 2.33 KB
/
import_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright (c) 2019 Cisco and/or its affiliates.
//
// 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.
package vpp_test
import (
"bytes"
"fmt"
"log"
"os"
"reflect"
"sort"
"testing"
"text/tabwriter"
"go.fd.io/govpp/api"
"go.ligato.io/vpp-agent/v3/plugins/vpp"
// force import of all vpp plugins
_ "go.ligato.io/vpp-agent/v3/cmd/vpp-agent/app"
)
func TestVppHandlers(t *testing.T) {
handlers := vpp.GetHandlers()
log.Printf("%d handlers:", len(handlers))
for h, handler := range handlers {
log.Printf("- handler: %-10s (%v)", h, handler.Versions())
}
}
func TestBinapiMessage(t *testing.T) {
msgTypes := api.GetRegisteredMessageTypes()
log.Printf("%d binapi messages:", len(msgTypes))
type item struct {
message string
crc string
pkgPath string
}
items := []item{}
for _, path := range msgTypes {
for msgType := range path {
typ := msgType.Elem()
msg := reflect.New(typ).Interface().(api.Message)
t := item{msg.GetMessageName(), msg.GetCrcString(), typ.PkgPath()}
items = append(items, t)
}
}
sort.Slice(items, func(i, j int) bool {
if items[i].pkgPath == items[j].pkgPath {
return items[i].message < items[j].message
}
return items[i].pkgPath < items[j].pkgPath
})
b := new(bytes.Buffer)
w := tabwriter.NewWriter(b, 0, 0, 1, ' ', 0)
fmt.Fprintf(w, "MESSAGE\tCRC\tPKG PATH\t\n")
for _, item := range items {
// typ := msgType.Elem()
// msg := reflect.New(typ).Interface().(api.Message)
// id := fmt.Sprintf("%s_%s", msg.GetMessageName(), msg.GetCrcString())
// log.Printf("- msg: %s - %s (%v)", typ.String(), typ.PkgPath(), id)
// fmt.Fprintf(w, "%s\t%s\t%s\t\n", msg.GetMessageName(), msg.GetCrcString(), typ.PkgPath())
fmt.Fprintf(w, "%s\t%s\t%s\t\n", item.message, item.crc, item.pkgPath)
}
if err := w.Flush(); err != nil {
return
}
fmt.Fprintf(os.Stdout, "%s", b)
}