Skip to content

Commit d969cf5

Browse files
author
Joji Mekkatt
committed
Add aci policy test
1 parent 96c68f4 commit d969cf5

File tree

14 files changed

+689
-8
lines changed

14 files changed

+689
-8
lines changed

Godeps/_workspace/src/github.com/contiv/ofnet/ofnet.go

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

Godeps/_workspace/src/github.com/contiv/ofnet/ofnetAgent.go

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

Godeps/_workspace/src/github.com/contiv/ofnet/ofnetMaster.go

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

Godeps/_workspace/src/github.com/contiv/ofnet/vlanBridge.go

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

Godeps/_workspace/src/github.com/contiv/ofnet/vlrouter.go

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

Godeps/_workspace/src/github.com/contiv/ofnet/vrouter.go

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

Godeps/_workspace/src/github.com/contiv/ofnet/vxlanBridge.go

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

netmaster/mastercfg/policyState.go

+5
Original file line numberDiff line numberDiff line change
@@ -407,3 +407,8 @@ func (gp *EpgPolicy) Clear() error {
407407
key := fmt.Sprintf(policyConfigPath, gp.ID)
408408
return gp.StateDriver.ClearState(key)
409409
}
410+
411+
// NotifyEpgChanged triggers GARPs.
412+
func NotifyEpgChanged(epgID int) {
413+
ofnetMaster.InjectGARPs(epgID)
414+
}

netmaster/objApi/infraproxy.go

+13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"io/ioutil"
99
"net/http"
1010
"strconv"
11+
"time"
1112

1213
log "github.com/Sirupsen/logrus"
1314
"github.com/contiv/contivmodel"
@@ -37,6 +38,7 @@ type epgSpec struct {
3738
Uses []string `json:"uses,omitempty"`
3839
ProvContracts []string `json:"provcontracts,omitempty"`
3940
ConsContracts []string `json:"conscontracts,omitempty"`
41+
epgID int // not exported
4042
}
4143

4244
type filterInfo struct {
@@ -102,6 +104,13 @@ func (ans *appNwSpec) launch() error {
102104
return nil
103105
}
104106

107+
func (ans *appNwSpec) notifyDP() {
108+
109+
for _, epg := range ans.Epgs {
110+
mastercfg.NotifyEpgChanged(epg.epgID)
111+
}
112+
}
113+
105114
// Extract relevant info from epg obj and append to application nw spec
106115
func appendEpgInfo(eMap *epgMap, epgObj *contivModel.EndpointGroup, stateDriver core.StateDriver) error {
107116
epg := epgSpec{}
@@ -121,6 +130,7 @@ func appendEpgInfo(eMap *epgMap, epgObj *contivModel.EndpointGroup, stateDriver
121130
}
122131

123132
epg.VlanTag = strconv.Itoa(epgCfg.PktTag)
133+
epg.epgID = epgCfg.EndpointGroupID
124134

125135
// get all the service link details
126136
for _, policy := range epgObj.Policies {
@@ -265,6 +275,8 @@ func CreateAppNw(app *contivModel.AppProfile) error {
265275

266276
log.Infof("Launching appNwSpec: %+v", ans)
267277
ans.launch()
278+
time.Sleep(2 * time.Second)
279+
ans.notifyDP()
268280

269281
return nil
270282
}
@@ -292,5 +304,6 @@ func DeleteAppNw(app *contivModel.AppProfile) error {
292304
return err
293305
}
294306

307+
time.Sleep(time.Second)
295308
return nil
296309
}

0 commit comments

Comments
 (0)