Improve binapi generator
[govpp.git] / binapigen / generator_test.go
1 //  Copyright (c) 2020 Cisco and/or its affiliates.
2 //
3 //  Licensed under the Apache License, Version 2.0 (the "License");
4 //  you may not use this file except in compliance with the License.
5 //  You may obtain a copy of the License at:
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 //  Unless required by applicable law or agreed to in writing, software
10 //  distributed under the License is distributed on an "AS IS" BASIS,
11 //  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 //  See the License for the specific language governing permissions and
13 //  limitations under the License.
14
15 package binapigen
16
17 import (
18         "testing"
19 )
20
21 func TestGoModule(t *testing.T) {
22         const expected = "git.fd.io/govpp.git/binapi"
23
24         impPath := resolveImportPath("../binapi")
25         if impPath != expected {
26                 t.Fatalf("expected: %q, got: %q", expected, impPath)
27         }
28 }
29
30 func TestBinapiTypeSizes(t *testing.T) {
31         tests := []struct {
32                 name    string
33                 input   string
34                 expsize int
35         }{
36                 {name: "basic1", input: "u8", expsize: 1},
37                 {name: "basic2", input: "i8", expsize: 1},
38                 {name: "basic3", input: "u16", expsize: 2},
39                 {name: "basic4", input: "i32", expsize: 4},
40                 {name: "string", input: "string", expsize: 1},
41                 {name: "invalid1", input: "x", expsize: 0},
42         }
43         for _, test := range tests {
44                 t.Run(test.name, func(t *testing.T) {
45                         size := getSizeOfBinapiTypeLength(test.input, 1)
46                         if size != test.expsize {
47                                 t.Errorf("expected %d, got %d", test.expsize, size)
48                         }
49                 })
50         }
51 }