Use go module as dependency tool instead of glide
[src/xds/xds-server.git] / test / config_test.go
1 /*
2  * Copyright (C) 2017-2018 "IoT.bzh"
3  * Author Clément Bénier <clement.benier@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 package xdsservertest
18
19 import (
20         "net"
21         "regexp"
22         "strings"
23         "testing"
24
25         "gerrit.automotivelinux.org/gerrit/src/xds/xds-server.git/lib/xsapiv1"
26         "github.com/stretchr/testify/require"
27 )
28
29 func CheckIP(ipconfig string) bool {
30         ifaces, _ := net.Interfaces()
31         for _, i := range ifaces {
32                 addrs, _ := i.Addrs()
33                 for _, addr := range addrs {
34                         if strings.HasPrefix(addr.String(), ipconfig) {
35                                 return true
36                         }
37                 }
38         }
39         return false
40 }
41
42 func TestConfig(t *testing.T) {
43         var cfg xsapiv1.APIConfig
44         require.Nil(t, HTTPCli.Get("/config", &cfg))
45         Debugf(t, "Config is %v", cfg)
46
47         re := regexp.MustCompile("^[0-9a-z]+-[0-9a-z]+-[0-9a-z]+-[0-9a-z]+-[0-9a-z]+$")
48         require.True(t, re.MatchString(cfg.ServerUID)) //ID
49         pathMap, present := cfg.SupportedSharing["PathMap"]
50         require.True(t, present)
51         require.True(t, pathMap)
52         require.True(t, CheckIP(cfg.Builder.IP))
53 }