Skip to content

Commit aa46cf1

Browse files
committed
bgp inspect and test case fixes
godep update
1 parent 979bdc4 commit aa46cf1

File tree

7 files changed

+68
-47
lines changed

7 files changed

+68
-47
lines changed

Godeps/Godeps.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

drivers/ovsdriver.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ type OvsDriverOperState struct {
5151
core.CommonState
5252

5353
// used to allocate port names. XXX: should it be user controlled?
54-
CurrPortNum int `json:"currPortNum"`
55-
LocalEpInfo map[string]*EpInfo `json:"LocalEpInfo"` // info about local endpoints
54+
CurrPortNum int `json:"currPortNum"`
55+
LocalEpInfo map[string]*EpInfo `json:"LocalEpInfo"` // info about local endpoints
56+
localEpInfoMutex sync.Mutex
5657
}
5758

5859
// Write the state
@@ -422,11 +423,13 @@ func (d *OvsDriver) CreateEndpoint(id string) error {
422423
}
423424

424425
// save local endpoint info
426+
d.oper.localEpInfoMutex.Lock()
425427
d.oper.LocalEpInfo[id] = &EpInfo{
426428
Ovsportname: ovsPortName,
427429
EpgKey: epgKey,
428430
BridgeType: pktTagType,
429431
}
432+
d.oper.localEpInfoMutex.Unlock()
430433
err = d.oper.Write()
431434
if err != nil {
432435
return err
@@ -478,6 +481,8 @@ func (d *OvsDriver) UpdateEndpointGroup(id string) error {
478481
epgBandwidth = netutils.ConvertBandwidth(cfgEpGroup.Bandwidth)
479482
}
480483

484+
d.oper.localEpInfoMutex.Lock()
485+
defer d.oper.localEpInfoMutex.Unlock()
481486
for _, epInfo := range d.oper.LocalEpInfo {
482487
if epInfo.EpgKey == id {
483488
log.Debugf("Applying bandwidth: %s on: %s ", cfgEpGroup.Bandwidth, epInfo.Ovsportname)
@@ -533,7 +538,10 @@ func (d *OvsDriver) DeleteEndpoint(id string) error {
533538
if err != nil {
534539
log.Errorf("Error deleting endpoint: %+v. Err: %v", epOper, err)
535540
}
541+
542+
d.oper.localEpInfoMutex.Lock()
536543
delete(d.oper.LocalEpInfo, id)
544+
d.oper.localEpInfoMutex.Unlock()
537545

538546
return nil
539547
}

netmaster/objApi/apiController.go

+3-16
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ package objApi
1818
import (
1919
"errors"
2020
"fmt"
21+
"strconv"
22+
"strings"
23+
2124
"github.com/contiv/contivmodel"
2225
"github.com/contiv/netplugin/core"
2326
"github.com/contiv/netplugin/netmaster/gstate"
@@ -27,8 +30,6 @@ import (
2730
"github.com/contiv/netplugin/utils"
2831
"github.com/contiv/netplugin/utils/netutils"
2932
"github.com/contiv/objdb/modeldb"
30-
"strconv"
31-
"strings"
3233

3334
"encoding/json"
3435
"io/ioutil"
@@ -1806,17 +1807,3 @@ func validatePorts(ports []string) bool {
18061807
}
18071808
return true
18081809
}
1809-
1810-
/*
1811-
func getIp(prefix string) string {
1812-
length := len(prefix)
1813-
var p string
1814-
for i := 0; i+8 < len; i = i + 8 {
1815-
temp := prefix[i : i+8]
1816-
s := strconv.ParseInt(temp, 2, 8)
1817-
1818-
p = string(s) + "."
1819-
}
1820-
1821-
}
1822-
*/

test/systemtests/bgp_test.go

+4-5
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ func (s *systemtestSuite) TestBgpTriggerPeerAddDelete(c *C) {
196196
c.Assert(s.pingTest(allcontainers), IsNil)
197197

198198
s.TearDownBgp(c)
199-
s.CheckBgpNoConnection(c)
200199
}
201200
}
202201

@@ -638,7 +637,7 @@ func (s *systemtestSuite) TestBgpMultiTrigger(c *C) {
638637
}
639638
}
640639
c.Assert(nodeToStop.startNetplugin("-vlan-if=eth2"), IsNil)
641-
time.Sleep(15 * time.Second)
640+
time.Sleep(120 * time.Second)
642641
nodeToStop.tbnode.RunCommandWithOutput("sudo ip link set inb01 up")
643642
s.CheckBgpConnectionForaNode(c, nodeToStop.tbnode)
644643

@@ -985,7 +984,7 @@ func (s *systemtestSuite) CheckBgpRouteDistribution(c *C, containers []*containe
985984
return nil
986985
}
987986

988-
func (s *systemtestSuite) CheckBgpRouteDistributionIPList(c *C, ips []string) ([]string, error) {
987+
func (s *systemtestSuite) CheckBgpRouteDistributionIPList(c *C, ips []string) error {
989988
ipList := []string{}
990989
nodeCount := 0
991990
for i := 0; i < 120; i++ {
@@ -1009,10 +1008,10 @@ func (s *systemtestSuite) CheckBgpRouteDistributionIPList(c *C, ips []string) ([
10091008
ipList = append(ipList, ip)
10101009
}
10111010
if len(ipList) == len(ips) {
1012-
return ipList, nil
1011+
return nil
10131012
}
10141013
}
10151014
time.Sleep(1 * time.Second)
10161015
}
1017-
return ipList, errors.New("Bgp Route distribution not complete")
1016+
return errors.New("Bgp Route distribution not complete")
10181017
}

test/systemtests/network_test.go

+12-14
Original file line numberDiff line numberDiff line change
@@ -59,22 +59,20 @@ func (s *systemtestSuite) testInfraNetworkAddDelete(c *C, encap string) {
5959
netNames = append(netNames, network.NetworkName)
6060
}
6161

62-
node1 := s.nodes[0]
63-
64-
for networkNum := 0; networkNum < numInfraNw; networkNum++ {
65-
// From first node, ping every node on this network
66-
for nodeNum := 1; nodeNum <= len(s.nodes); nodeNum++ {
67-
logrus.Infof("Running ping test for network %q node %d", netNames[networkNum], nodeNum)
68-
ipaddr := fmt.Sprintf("10.1.%d.%d", networkNum, nodeNum)
69-
if s.fwdMode == "routing" && encap == "vlan" {
70-
_, err := s.CheckBgpRouteDistributionIPList(c, []string{ipaddr})
71-
c.Assert(err, IsNil)
62+
for _, node := range s.nodes {
63+
for networkNum := 0; networkNum < numInfraNw; networkNum++ {
64+
// From first node, ping every node on this network
65+
for nodeNum := 1; nodeNum <= len(s.nodes); nodeNum++ {
66+
logrus.Infof("Running ping test for network %q node %d", netNames[networkNum], nodeNum)
67+
ipaddr := fmt.Sprintf("10.1.%d.%d", networkNum, nodeNum)
68+
if s.fwdMode == "routing" && encap == "vlan" {
69+
err := s.verifyIPs([]string{ipaddr})
70+
c.Assert(err, IsNil)
71+
}
72+
c.Assert(node.checkPing(ipaddr), IsNil)
7273
}
73-
c.Assert(node1.checkPing(ipaddr), IsNil)
74-
7574
}
7675
}
77-
7876
for _, netName := range netNames {
7977
c.Assert(s.cli.NetworkDelete("default", netName), IsNil)
8078
}
@@ -403,7 +401,7 @@ func (s *systemtestSuite) TestNetworkAddDeleteTenantFwdModeChangeVXLAN(c *C) {
403401

404402
func (s *systemtestSuite) TestNetworkAddDeleteTenantFwdModeChangeVLAN(c *C) {
405403

406-
c.Skip("Skipping this tests temporarily")
404+
c.Skip("Skipping this tests temporarily")
407405

408406
if s.fwdMode != "routing" {
409407
return

test/systemtests/util_test.go

+30
Original file line numberDiff line numberDiff line change
@@ -967,3 +967,33 @@ func (s *systemtestSuite) verifyEPs(containers []*container) error {
967967
logrus.Info("Debug output:\n %s", dbgOut)
968968
return err
969969
}
970+
971+
func (s *systemtestSuite) verifyIPs(ipaddrs []string) error {
972+
var err error
973+
974+
err = nil
975+
dbgOut := ""
976+
for try := 0; try < 20; try++ {
977+
for _, n := range s.nodes {
978+
979+
if n.Name() == "k8master" {
980+
continue
981+
}
982+
983+
dbgOut, err = n.verifyEPs(ipaddrs)
984+
if err != nil {
985+
break
986+
}
987+
988+
if err == nil {
989+
logrus.Info("IPs %v verified on node %s", ipaddrs, n.Name())
990+
return nil
991+
}
992+
}
993+
time.Sleep(1 * time.Second)
994+
}
995+
996+
logrus.Errorf("Failed to verify EP after 20 sec %v ", err)
997+
logrus.Info("Debug output:\n %s", dbgOut)
998+
return err
999+
}

vendor/github.com/contiv/ofnet/ofnetBgp.go

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)