forked from openconfig/featureprofiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ADD a test to verify ZR optic firmware version (openconfig#2784)
* ADD a test to verify ZR optic firmware version streaming telemetry
- Loading branch information
1 parent
6aca6d6
commit 0ac1e3f
Showing
2 changed files
with
165 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
feature/platform/transceiver/tests/zr_firmware_version_test/metadata.textproto
This file contains 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# proto-file: github.com/openconfig/featureprofiles/proto/metadata.proto | ||
# proto-message: Metadata | ||
|
||
uuid: "0f3bb528-28f4-4284-8d2f-de105be09241" | ||
plan_id: "TRANSCEIVER-3" | ||
description: "Telemetry: 400ZR Optics firmware version streaming" | ||
testbed: TESTBED_DUT_400ZR | ||
platform_exceptions: { | ||
platform: { | ||
vendor: ARISTA | ||
} | ||
deviations: { | ||
interface_enabled: true | ||
default_network_instance: "default" | ||
missing_port_to_optical_channel_component_mapping: true | ||
} | ||
} |
148 changes: 148 additions & 0 deletions
148
feature/platform/transceiver/tests/zr_firmware_version_test/zr_firmware_version_test.go
This file contains 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 |
---|---|---|
@@ -0,0 +1,148 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package zr_firmware_version_test | ||
|
||
import ( | ||
"fmt" | ||
"reflect" | ||
"testing" | ||
"time" | ||
|
||
"github.com/openconfig/featureprofiles/internal/deviations" | ||
"github.com/openconfig/featureprofiles/internal/fptest" | ||
"github.com/openconfig/featureprofiles/internal/samplestream" | ||
"github.com/openconfig/ondatra" | ||
"github.com/openconfig/ondatra/gnmi" | ||
"github.com/openconfig/ondatra/gnmi/oc" | ||
"github.com/openconfig/ygot/ygot" | ||
) | ||
|
||
const ( | ||
dp16QAM = 1 | ||
targetOutputPower = -10 | ||
frequency = 193100000 | ||
) | ||
|
||
func TestMain(m *testing.M) { | ||
fptest.RunTests(m) | ||
} | ||
|
||
// Topology: dut:port1 <--> port2:dut | ||
|
||
func configInterface(t *testing.T, dut1 *ondatra.DUTDevice, dp *ondatra.Port, enable bool) { | ||
d := &oc.Root{} | ||
i := d.GetOrCreateInterface(dp.Name()) | ||
i.Enabled = ygot.Bool(enable) | ||
i.Type = oc.IETFInterfaces_InterfaceType_ethernetCsmacd | ||
gnmi.Replace(t, dut1, gnmi.OC().Interface(dp.Name()).Config(), i) | ||
component := opticalChannelComponentFromPort(t, dut1, dp) | ||
gnmi.Replace(t, dut1, gnmi.OC().Component(component).OpticalChannel().Config(), &oc.Component_OpticalChannel{ | ||
TargetOutputPower: ygot.Float64(targetOutputPower), | ||
Frequency: ygot.Uint64(frequency), | ||
}) | ||
} | ||
func verifyFirmwareVersionValue(t *testing.T, dut1 *ondatra.DUTDevice, pStream *samplestream.SampleStream[string]) { | ||
firmwareVersionSample := pStream.Next(t) | ||
if firmwareVersionSample == nil { | ||
t.Fatalf("Firmware telemetry %v was not streamed in the most recent subscription interval", firmwareVersionSample) | ||
} | ||
firmwareVersionVal, ok := firmwareVersionSample.Val() | ||
if !ok { | ||
t.Fatalf("Firmware version %q telemetry is not present", firmwareVersionSample) | ||
} | ||
// Check firmware version return value of correct type | ||
if reflect.TypeOf(firmwareVersionVal).Kind() != reflect.String { | ||
t.Fatalf("Return value is not type string") | ||
} | ||
} | ||
|
||
func TestZRFirmwareVersionState(t *testing.T) { | ||
dut1 := ondatra.DUT(t, "dut") | ||
dp1 := dut1.Port(t, "port1") | ||
dp2 := dut1.Port(t, "port2") | ||
t.Logf("dut1: %v", dut1) | ||
t.Logf("dut1 dp1 name: %v", dp1.Name()) | ||
configInterface(t, dut1, dp1, true) | ||
configInterface(t, dut1, dp2, true) | ||
gnmi.Await(t, dut1, gnmi.OC().Interface(dp1.Name()).OperStatus().State(), time.Minute, oc.Interface_OperStatus_UP) | ||
transceiverName := gnmi.Get(t, dut1, gnmi.OC().Interface(dp1.Name()).Transceiver().State()) | ||
// Check if TRANSCEIVER is of type 400ZR | ||
if dp1.PMD() != ondatra.PMD400GBASEZR { | ||
t.Fatalf("%s Transceiver is not 400ZR its of type: %v", transceiverName, dp1.PMD()) | ||
} | ||
component1 := gnmi.OC().Component(transceiverName) | ||
|
||
p1Stream := samplestream.New(t, dut1, component1.FirmwareVersion().State(), 10*time.Second) | ||
|
||
verifyFirmwareVersionValue(t, dut1, p1Stream) | ||
|
||
p1Stream.Close() | ||
} | ||
func TestZRFirmwareVersionStateInterfaceFlap(t *testing.T) { | ||
dut1 := ondatra.DUT(t, "dut") | ||
dp1 := dut1.Port(t, "port1") | ||
dp2 := dut1.Port(t, "port2") | ||
t.Logf("dut1: %v", dut1) | ||
t.Logf("dut1 dp1 name: %v", dp1.Name()) | ||
configInterface(t, dut1, dp1, true) | ||
configInterface(t, dut1, dp2, true) | ||
gnmi.Await(t, dut1, gnmi.OC().Interface(dp1.Name()).OperStatus().State(), time.Minute, oc.Interface_OperStatus_UP) | ||
transceiverName := gnmi.Get(t, dut1, gnmi.OC().Interface(dp1.Name()).Transceiver().State()) | ||
// Check if TRANSCEIVER is of type 400ZR | ||
if dp1.PMD() != ondatra.PMD400GBASEZR { | ||
t.Fatalf("%s Transceiver is not 400ZR its of type: %v", transceiverName, dp1.PMD()) | ||
} | ||
// Disable interface | ||
configInterface(t, dut1, dp1, false) | ||
component1 := gnmi.OC().Component(transceiverName) | ||
|
||
p1Stream := samplestream.New(t, dut1, component1.FirmwareVersion().State(), 10*time.Second) | ||
|
||
// Wait 60 sec cooling off period | ||
gnmi.Await(t, dut1, gnmi.OC().Interface(dp1.Name()).OperStatus().State(), time.Minute, oc.Interface_OperStatus_DOWN) | ||
verifyFirmwareVersionValue(t, dut1, p1Stream) | ||
|
||
// Enable interface | ||
configInterface(t, dut1, dp1, true) | ||
gnmi.Await(t, dut1, gnmi.OC().Interface(dp1.Name()).OperStatus().State(), time.Minute, oc.Interface_OperStatus_UP) | ||
verifyFirmwareVersionValue(t, dut1, p1Stream) | ||
} | ||
|
||
func opticalChannelComponentFromPort(t *testing.T, dut *ondatra.DUTDevice, p *ondatra.Port) string { | ||
t.Helper() | ||
if deviations.MissingPortToOpticalChannelMapping(dut) { | ||
switch dut.Vendor() { | ||
case ondatra.ARISTA: | ||
transceiverName := gnmi.Get(t, dut, gnmi.OC().Interface(p.Name()).Transceiver().State()) | ||
return fmt.Sprintf("%s-Optical0", transceiverName) | ||
default: | ||
t.Fatal("Manual Optical channel name required when deviation missing_port_to_optical_channel_component_mapping applied.") | ||
} | ||
} | ||
compName := gnmi.Get(t, dut, gnmi.OC().Interface(p.Name()).HardwarePort().State()) | ||
for { | ||
comp, ok := gnmi.Lookup(t, dut, gnmi.OC().Component(compName).State()).Val() | ||
if !ok { | ||
t.Fatalf("Recursive optical channel lookup failed for port: %s, component %s not found.", p.Name(), compName) | ||
} | ||
if comp.GetType() == oc.PlatformTypes_OPENCONFIG_HARDWARE_COMPONENT_OPTICAL_CHANNEL { | ||
return compName | ||
} | ||
if comp.GetParent() == "" { | ||
t.Fatalf("Recursive optical channel lookup failed for port: %s, parent of component %s not found.", p.Name(), compName) | ||
} | ||
compName = comp.GetParent() | ||
} | ||
} |