Skip to content

Added missing entries in test registry and also fixing some discrepancies in test plan id#5337

Merged
dplore merged 4 commits intoopenconfig:mainfrom
kapilrajput-g:feature_sync
Apr 13, 2026
Merged

Added missing entries in test registry and also fixing some discrepancies in test plan id#5337
dplore merged 4 commits intoopenconfig:mainfrom
kapilrajput-g:feature_sync

Conversation

@kapilrajput-g
Copy link
Copy Markdown
Contributor

@kapilrajput-g kapilrajput-g requested review from a team as code owners April 13, 2026 14:57
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on improving the organization and accuracy of the test suite registry. It introduces new entries for previously unlisted tests and standardizes naming conventions for test plan identifiers across documentation and metadata files to ensure better traceability and consistency within the repository.

Highlights

  • Test Registry Updates: Added several missing test entries to the test registry, including tests for container failover, BGP session parameters, gNMI leaf-list updates, and various gNMI benchmarking and mode tests.
  • Test Plan ID Standardization: Corrected test plan ID formatting in metadata files and documentation to ensure consistency, specifically updating identifiers to use the 'gNMI' prefix.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@OpenConfigBot
Copy link
Copy Markdown

OpenConfigBot commented Apr 13, 2026

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request standardizes the casing of 'gNMI' across documentation and metadata, cleans up formatting in test plan IDs, and adds several new test entries to the registry. The review feedback suggests removing leftover markdown formatting in a description field and reordering the new registry entries to maintain lexicographical consistency.

uuid: "df395a7c-8b43-4b4b-aac8-14dff3097774"
plan_id: "**RT-7.51"
plan_id: "RT-7.51"
description: "BGP Auto-Generated Link-Bandwidth Community**"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The description contains trailing asterisks **, which appear to be a leftover from markdown formatting. These should be removed for consistency with the fix applied to the plan_id field.

Suggested change
description: "BGP Auto-Generated Link-Bandwidth Community**"
description: "BGP Auto-Generated Link-Bandwidth Community"

Comment on lines +2028 to +2042
test: {
id: "gNMI-1.24"
description: "gNMI Leaf-List Update Test"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/tests/leaflist_update_test/README.md"
}
test: {
id: "gNMI-1.2"
description: "Benchmarking: Full Configuration Replace"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/tests/full_configuration_replace_test/README.md"
}
test: {
id: "gNMI-1.3"
description: "Benchmarking: Drained Configuration Convergence Time"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/otg_tests/drained_configuration_convergence_time/README.md"
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The newly added test entries for gNMI-1.2, gNMI-1.3, and gNMI-1.24 are out of order. To maintain consistency with the lexicographical sorting used in this registry (e.g., gNMI-1.23 followed by gNMI-1.4), these should be ordered as gNMI-1.2, gNMI-1.24, and then gNMI-1.3.

Suggested change
test: {
id: "gNMI-1.24"
description: "gNMI Leaf-List Update Test"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/tests/leaflist_update_test/README.md"
}
test: {
id: "gNMI-1.2"
description: "Benchmarking: Full Configuration Replace"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/tests/full_configuration_replace_test/README.md"
}
test: {
id: "gNMI-1.3"
description: "Benchmarking: Drained Configuration Convergence Time"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/otg_tests/drained_configuration_convergence_time/README.md"
}
test: {
id: "gNMI-1.2"
description: "Benchmarking: Full Configuration Replace"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/tests/full_configuration_replace_test/README.md"
}
test: {
id: "gNMI-1.24"
description: "gNMI Leaf-List Update Test"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/tests/leaflist_update_test/README.md"
}
test: {
id: "gNMI-1.3"
description: "Benchmarking: Drained Configuration Convergence Time"
readme: "https://github.com/openconfig/featureprofiles/blob/main/feature/gnmi/otg_tests/drained_configuration_convergence_time/README.md"
}

@kapilrajput-g kapilrajput-g requested review from AmrNJ and dplore April 13, 2026 15:11
@dplore
Copy link
Copy Markdown
Member

dplore commented Apr 13, 2026

Please add run data.

Also because the README for gnmi_subscriptionlist_test was touched, it brought it into scope canonical OC which this older file is missing. This canonical OC is not very important for that readme, so I am ok bypassing this and keeping this PR scoped to just updating testregistry.textproto

@dplore dplore merged commit f6ddc8a into openconfig:main Apr 13, 2026
13 of 15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants