featureprofiles
featureprofiles copied to clipboard
gNMI-1.17: Correct grammar and give more useful subtest names.
commit 53ab0e40f555fad170feadec8fa70d8c2d05f77a
Author: Rob Shakir <[email protected]>
Date: Wed Oct 15 12:45:56 2025 -0400
Correct grammar and give more useful subtest names.
Clean up of this test README. No amendments to the test logic.
Pull Request Functional Test Report for #4704 / 5bf9ed75c3cee1e4f9a11b861d8ec221f7825ac3
Virtual Devices
| Device | Test | Test Documentation | Job | Raw Log |
|---|---|---|---|---|
| Arista cEOS | gNMI-1.17: Controller card redundancy test |
12e5097a | Log | |
| Cisco 8000E | gNMI-1.17: Controller card redundancy test |
20179bb1 | Log | |
| Cisco XRd | gNMI-1.17: Controller card redundancy test |
a6016ca6 | Log | |
| Juniper ncPTX | gNMI-1.17: Controller card redundancy test |
d6548cb8 | Log | |
| Nokia SR Linux | gNMI-1.17: Controller card redundancy test |
f130b2b9 | Log | |
| Openconfig Lemming | gNMI-1.17: Controller card redundancy test |
a092b66d | Log |
Hardware Devices
| Device | Test | Test Documentation | Raw Log |
|---|---|---|---|
| Arista 7808 | gNMI-1.17: Controller card redundancy test |
||
| Cisco 8808 | gNMI-1.17: Controller card redundancy test |
||
| Juniper PTX10008 | gNMI-1.17: Controller card redundancy test |
||
| Nokia 7250 IXR-10e | gNMI-1.17: Controller card redundancy test |
Pull Request Test Coverage Report for Build 18578315148
Details
- 0 of 0 changed or added relevant lines in 0 files are covered.
- No unchanged relevant lines lost coverage.
- Overall coverage remained the same at 12.157%
| Totals | |
|---|---|
| Change from base Build 18575183355: | 0.0% |
| Covered Lines: | 2224 |
| Relevant Lines: | 18294 |
💛 - Coveralls
for reference, canonical oc generation code:
package main
import (
"fmt"
// exampleoc from ygot with the controller-card module added for the power-admin-state leaf.
oc "robjs/component/oc"
"github.com/golang/glog"
"github.com/openconfig/ygot/ygot"
)
func main() {
d := &oc.Device{}
c := d.GetOrCreateComponent("controller-1")
c.Type = oc.PlatformTypes_OPENCONFIG_HARDWARE_COMPONENT_CONTROLLER_CARD
c.GetOrCreateControllerCard().PowerAdminState = oc.PlatformTypes_ComponentPowerType_POWER_ENABLED
js, err := ygot.Marshal7951(d, &ygot.RFC7951JSONConfig{
AppendModuleName: true,
},
ygot.JSONIndent(" "),
)
if err != nil {
glog.Exitf("cannot err, %v", err)
}
fmt.Printf("%s\n", js)
}