-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #541 #578
Merged
Merged
Fixes #541 #578
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6f44dbf
Merge pull request #1 from contiv/master
srampal d94c6ad
Fixes #541
srampal 14ed835
Triggering CI
srampal eb216fe
3rd try retriggering CI
srampal 0a6b2ee
4th try retriggering CI
srampal e809168
Updates based on PR review comments
srampal 859b19b
re-triggering CI
srampal 1ceb3b4
Merge from main contiv project
srampal 434986e
Final tiny tweaks based on review
srampal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,6 +89,14 @@ func (s *systemtestSuite) TestNetworkAddDeleteVLAN(c *C) { | |
s.testNetworkAddDelete(c, "vlan") | ||
} | ||
|
||
func (s *systemtestSuite) TestNetworkAddDeleteVLANWithDns(c *C) { | ||
s.testNetworkAddDeleteWithDns(c, "vlan") | ||
} | ||
|
||
func (s *systemtestSuite) TestNetworkAddDeleteVXLANWithDns(c *C) { | ||
s.testNetworkAddDeleteWithDns(c, "vxlan") | ||
} | ||
|
||
func (s *systemtestSuite) testNetworkAddDelete(c *C, encap string) { | ||
|
||
if s.fwdMode == "routing" && encap == "vlan" { | ||
|
@@ -190,6 +198,58 @@ func (s *systemtestSuite) testNetworkAddDelete(c *C, encap string) { | |
} | ||
} | ||
|
||
func (s *systemtestSuite) testNetworkAddDeleteWithDns(c *C, encap string) { | ||
|
||
var err error | ||
|
||
for i := 0; i < s.basicInfo.Iterations; i++ { | ||
var ( | ||
netNames = []string{} | ||
) | ||
|
||
for networkNum := 0; networkNum < 3; networkNum++ { | ||
var v6subnet, v6gateway string | ||
if networkNum%2 == 0 { | ||
v6subnet = "" | ||
v6gateway = "" | ||
} else { | ||
v6subnet = fmt.Sprintf("1001:%d::/120", networkNum) | ||
v6gateway = fmt.Sprintf("1001:%d::254", networkNum) | ||
} | ||
network := &client.Network{ | ||
TenantName: "default", | ||
NetworkName: fmt.Sprintf("net%d-%d", networkNum, i), | ||
Subnet: fmt.Sprintf("10.1.%d.0/24", networkNum), | ||
Gateway: fmt.Sprintf("10.1.%d.254", networkNum), | ||
Ipv6Subnet: v6subnet, | ||
Ipv6Gateway: v6gateway, | ||
PktTag: 1001 + networkNum, | ||
Encap: encap, | ||
} | ||
|
||
c.Assert(s.cli.NetworkPost(network), IsNil) | ||
netNames = append(netNames, network.NetworkName) | ||
} | ||
|
||
// Wait 5 seconds for the call backs to come through | ||
|
||
time.Sleep(5 * time.Second) | ||
|
||
for _, netName := range netNames { | ||
|
||
/* | ||
Now that the networks are created, check that there is a dns endpoint on each network | ||
*/ | ||
_, err = s.testNetworkInspectDNS("default", netName) | ||
c.Assert(err, IsNil) | ||
} | ||
|
||
for _, netName := range netNames { | ||
c.Assert(s.cli.NetworkDelete("default", netName), IsNil) | ||
} | ||
} | ||
} | ||
|
||
func (s *systemtestSuite) TestNetworkAddDeleteNoGatewayVXLAN(c *C) { | ||
s.testNetworkAddDeleteNoGateway(c, "vxlan") | ||
} | ||
|
@@ -279,6 +339,10 @@ func (s *systemtestSuite) TestNetworkAddDeleteTenantVLAN(c *C) { | |
s.testNetworkAddDeleteTenant(c, "vlan", s.fwdMode) | ||
} | ||
|
||
func (s *systemtestSuite) TestNetworkAddDeleteTenantWithDns(c *C) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same comment as above There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See above |
||
s.testNetworkAddDeleteTenantWithDns(c, "vlan", s.fwdMode) | ||
} | ||
|
||
func (s *systemtestSuite) testNetworkAddDeleteTenant(c *C, encap, fwdmode string) { | ||
mutex := sync.Mutex{} | ||
|
||
|
@@ -371,6 +435,72 @@ func (s *systemtestSuite) testNetworkAddDeleteTenant(c *C, encap, fwdmode string | |
|
||
} | ||
|
||
func (s *systemtestSuite) testNetworkAddDeleteTenantWithDns(c *C, encap, fwdmode string) { | ||
|
||
var err error | ||
|
||
for i := 0; i < s.basicInfo.Iterations; i++ { | ||
var ( | ||
tenantNames = map[string][]string{} | ||
netNames = []string{} | ||
pktTag = 0 | ||
) | ||
|
||
for tenantNum := 0; tenantNum < 3; tenantNum++ { | ||
tenantName := fmt.Sprintf("tenant%d", tenantNum) | ||
c.Assert(s.cli.TenantPost(&client.Tenant{TenantName: tenantName}), IsNil) | ||
tenantNames[tenantName] = []string{} | ||
|
||
for networkNum := 0; networkNum < 3; networkNum++ { | ||
var v6subnet, v6gateway string | ||
if networkNum%2 == 0 { | ||
v6subnet = "" | ||
v6gateway = "" | ||
} else { | ||
v6subnet = fmt.Sprintf("1001:%d:%d::/120", tenantNum, networkNum) | ||
v6gateway = fmt.Sprintf("1001:%d:%d::254", tenantNum, networkNum) | ||
} | ||
network := &client.Network{ | ||
TenantName: tenantName, | ||
NetworkName: fmt.Sprintf("net%d-%d", networkNum, i), | ||
Subnet: fmt.Sprintf("10.%d.%d.0/24", tenantNum, networkNum), | ||
Gateway: fmt.Sprintf("10.%d.%d.254", tenantNum, networkNum), | ||
Ipv6Subnet: v6subnet, | ||
Ipv6Gateway: v6gateway, | ||
PktTag: pktTag + 1000, | ||
Encap: encap, | ||
} | ||
|
||
logrus.Infof("Creating network %s on tenant %s", network.NetworkName, network.TenantName) | ||
|
||
c.Assert(s.cli.NetworkPost(network), IsNil) | ||
netNames = append(netNames, network.NetworkName) | ||
tenantNames[tenantName] = append(tenantNames[tenantName], network.NetworkName) | ||
pktTag++ | ||
} | ||
} | ||
|
||
// Wait 10 seconds for the call backs to come through | ||
|
||
time.Sleep(10 * time.Second) | ||
|
||
for tenant, networks := range tenantNames { | ||
for _, network := range networks { | ||
_, err = s.testNetworkInspectDNS(tenant, network) | ||
c.Assert(err, IsNil) | ||
} | ||
} | ||
|
||
for tenant, networks := range tenantNames { | ||
for _, network := range networks { | ||
c.Assert(s.cli.NetworkDelete(tenant, network), IsNil) | ||
} | ||
c.Assert(s.cli.TenantDelete(tenant), IsNil) | ||
} | ||
} | ||
|
||
} | ||
|
||
func (s *systemtestSuite) TestNetworkAddDeleteTenantFwdModeChangeVXLAN(c *C) { | ||
fwdMode := s.fwdMode | ||
for i := 0; i < s.basicInfo.Iterations; i++ { | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think its time to make this a debug log. .
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could do that but not sure if someone expects to scrape the CLI output instead of using the API. If yes, removing some lines from CLI output could impact their screen scraping logic … but maybe there aren’t any customers that do that OR we anyway do not support anyone to do CLI screen scraping since they should only be using API for automation. Also, this is not the only place … fmt.Printf() is used throughout this file in places where a debug log may have been appropriate. Should there be a separate issue opened to track which all Printf()s should be changed to logs ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If possible you can remove the printf's