Increase Netconf CSIT Coverage
(INTTEST-81)
|
|
| Status: | In Progress |
| Project: | integration-test |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Sub-task | Priority: | Medium |
| Reporter: | Jamo Luhrsen | Assignee: | Kailash Khalasi |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | CSIT, netconf | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Issue Links: |
|
||||||||||||
| Description |
|
While debugging We need four test cases to pass. two already exist, but one is now failing (the regression) Essentially, it's doing the same thing, which is hitting this URI twice:
/rests/data/network-topology:network-topology/topology=topology-netconf/node={{node}}/yang-ext:mount/example-action:interfaces/interface=eth1/reset
The first (passing case) is using an XML request and body: <?xml version="1.0" encoding="UTF-8"?> <input xmlns="https://example.com/ns/example-action"> <delay>600</delay> </input> and the failing case is JSON:
{
"example-action:input": {
"delay": 600
}
}
The URI it's triggering is triggering an RPC action which is defined in one of the The original bug that produced the fix that created this regression was related to if those files are added to the int/test repo schemas/ folder then the same suite with
rests/data/network-topology:network-topology/topology=topology-netconf/node={{node}}/yang-ext:mount/main:cont/cont1/reset
|