-
Notifications
You must be signed in to change notification settings - Fork 107
Add VRF route persistence test using vrf-name #1399
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
Open
emy
wants to merge
1
commit into
nmstate:main
Choose a base branch
from
emy:OPNET-690
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -18,6 +18,7 @@ limitations under the License. | |
| package handler | ||
|
|
||
| import ( | ||
| "github.com/nmstate/kubernetes-nmstate/test/e2e/policy" | ||
| . "github.com/onsi/ginkgo/v2" | ||
| . "github.com/onsi/gomega" | ||
| ) | ||
|
|
@@ -59,4 +60,51 @@ var _ = Describe("NodeNetworkState", func() { | |
| routeNextHopInterfaceWithTableID(node, destIPAddress, vrfID).Should(Equal(firstSecondaryNic)) | ||
| }) | ||
| }) | ||
|
|
||
| Context("when VRF route configured using vrf-name", func() { | ||
| var ( | ||
| vrfID = "103" | ||
| vrfName = "vrf103" | ||
| ipAddress = "192.0.2.252" | ||
| destIPAddress = "1.2.3.0/24" | ||
| prefixLen = "24" | ||
| nextHopIPAddress = "192.0.2.2" | ||
| ) | ||
|
|
||
| BeforeEach(func() { | ||
| updateDesiredStateAtNodeAndWait( | ||
| node, | ||
| vrfRouteWithVrfName(vrfID, vrfName, firstSecondaryNic, ipAddress, destIPAddress, prefixLen, nextHopIPAddress), | ||
| ) | ||
| }) | ||
|
|
||
| AfterEach(func() { | ||
| updateDesiredStateAtNodeAndWait(node, vrfAbsent(vrfID)) | ||
| resetDesiredStateForNodes() | ||
| }) | ||
|
|
||
| It("should have the VRF interface and route configured", func() { | ||
| vrfForNodeInterfaceEventually(node, vrfID).Should(Equal(vrfID)) | ||
| ipAddressForNodeInterfaceEventually(node, firstSecondaryNic).Should(Equal(ipAddress)) | ||
| routeNextHopInterfaceWithTableID(node, destIPAddress, vrfID).Should(Equal(firstSecondaryNic)) | ||
| }) | ||
|
|
||
| It("should persist VRF route after node reboot", func() { | ||
| Byf("Verifying VRF interface and route before reboot") | ||
| vrfForNodeInterfaceEventually(node, vrfID).Should(Equal(vrfID)) | ||
| ipAddressForNodeInterfaceEventually(node, firstSecondaryNic).Should(Equal(ipAddress)) | ||
| routeNextHopInterfaceWithTableID(node, destIPAddress, vrfID).Should(Equal(firstSecondaryNic)) | ||
|
|
||
| restartNodeWithoutWaiting(node) | ||
|
|
||
| By("Wait for policy re-reconciled after node reboot") | ||
| policy.WaitForPolicyTransitionUpdate(TestPolicy) | ||
| policy.WaitForAvailablePolicy(TestPolicy) | ||
|
|
||
| Byf("Node %s was rebooted, verifying VRF route still exists", node) | ||
| vrfForNodeInterfaceEventually(node, vrfID).Should(Equal(vrfID)) | ||
| ipAddressForNodeInterfaceEventually(node, firstSecondaryNic).Should(Equal(ipAddress)) | ||
| routeNextHopInterfaceWithTableID(node, destIPAddress, vrfID).Should(Equal(firstSecondaryNic)) | ||
| }) | ||
|
Comment on lines
+86
to
+108
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. To improve maintainability and reduce code duplication, you can extract the repeated verification logic into a helper function. The assertions on lines 87-89, 94-96, and 105-107 are identical. A helper function will make the tests cleaner and easier to read. verifyVrfRouteIsConfigured := func() {
vrfForNodeInterfaceEventually(node, vrfID).Should(Equal(vrfID))
ipAddressForNodeInterfaceEventually(node, firstSecondaryNic).Should(Equal(ipAddress))
routeNextHopInterfaceWithTableID(node, destIPAddress, vrfID).Should(Equal(firstSecondaryNic))
}
It("should have the VRF interface and route configured", func() {
verifyVrfRouteIsConfigured()
})
It("should persist VRF route after node reboot", func() {
Byf("Verifying VRF interface and route before reboot")
verifyVrfRouteIsConfigured()
restartNodeWithoutWaiting(node)
By("Wait for policy re-reconciled after node reboot")
policy.WaitForPolicyTransitionUpdate(TestPolicy)
policy.WaitForAvailablePolicy(TestPolicy)
Byf("Node %s was rebooted, verifying VRF route still exists", node)
verifyVrfRouteIsConfigured()
}) |
||
| }) | ||
| }) | ||
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.
The YAML for the route configuration is incorrectly indented. The list item under
config(the-on line 260) should be indented to be a child ofconfig. Currently, it's at the same level, which is invalid YAML and will cause a parsing error when the state is applied.