featureprofiles icon indicating copy to clipboard operation
featureprofiles copied to clipboard

gNMI-1.17: Correct grammar and give more useful subtest names.

Open robshakir opened this issue 3 months ago • 3 comments

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.

robshakir avatar Oct 15 '25 16:10 robshakir

Pull Request Functional Test Report for #4704 / 5bf9ed75c3cee1e4f9a11b861d8ec221f7825ac3

Virtual Devices

Device Test Test Documentation Job Raw Log
Arista cEOS status
gNMI-1.17: Controller card redundancy test
12e5097a Log
Cisco 8000E status
gNMI-1.17: Controller card redundancy test
20179bb1 Log
Cisco XRd status
gNMI-1.17: Controller card redundancy test
a6016ca6 Log
Juniper ncPTX status
gNMI-1.17: Controller card redundancy test
d6548cb8 Log
Nokia SR Linux status
gNMI-1.17: Controller card redundancy test
f130b2b9 Log
Openconfig Lemming status
gNMI-1.17: Controller card redundancy test
a092b66d Log

Hardware Devices

Device Test Test Documentation Raw Log
Arista 7808 status
gNMI-1.17: Controller card redundancy test
Cisco 8808 status
gNMI-1.17: Controller card redundancy test
Juniper PTX10008 status
gNMI-1.17: Controller card redundancy test
Nokia 7250 IXR-10e status
gNMI-1.17: Controller card redundancy test

Help

OpenConfigBot avatar Oct 15 '25 16:10 OpenConfigBot

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 Coverage Status
Change from base Build 18575183355: 0.0%
Covered Lines: 2224
Relevant Lines: 18294

💛 - Coveralls

coveralls avatar Oct 15 '25 16:10 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)
}

robshakir avatar Oct 15 '25 19:10 robshakir