├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── enhancement.md │ └── new-validation-request.md └── workflows │ ├── gh-page.yml │ └── pytest.yml ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── aci-preupgrade-validation-script.py ├── docs ├── docs │ ├── assets │ │ └── logo.svg │ ├── css │ │ └── style.css │ ├── getting_started.md │ ├── index.md │ ├── usage.md │ └── validations.md └── mkdocs.yml ├── pytest.ini └── tests ├── AciAccessPolicyParser ├── templates │ ├── access_policy.j2 │ ├── macros.j2 │ └── node_profiles.j2 └── test_AciAccessPolicyParser.py ├── checks ├── access_untagged_check │ ├── faultInst_NEG.json │ ├── faultInst_POS.json │ └── test_access_untagged_check.py ├── aes_encryption_check │ ├── exportcryptkey.json │ ├── exportcryptkey_disabled.json │ └── test_aes_encryption_check.py ├── apic_ca_cert_validation │ ├── NEG_certreq.txt │ ├── POS_certreq.txt │ └── test_apic_ca_cert_validation.py ├── apic_database_size_check │ ├── infraWiNode_3.json │ ├── infraWiNode_4.json │ └── test_apic_database_size_check.py ├── apic_ssd_check │ ├── fabricNode.json │ ├── fabricNode_no_apic.json │ ├── fabricNode_old.json │ ├── fault_F2731.json │ ├── infraWiNode_apic1.json │ └── test_apic_ssd_check.py ├── apic_version_md5_check │ ├── fabricNode.json │ ├── fabricNode_no_apic.json │ ├── fabricNode_old.json │ ├── firmwareFirmware_6.0.5h.json │ ├── firmwareFirmware_6.0.5h_image_sign_fail.json │ ├── infraWiNode_apic1.json │ └── test_apic_version_md5_check.py ├── ave_eol_check │ ├── test_ave_eol_check.py │ └── vmmDomP_POS.json ├── bgp_golf_route_target_type_check │ ├── fvCtx_pos.json │ └── test_bgp_golf_route_target_type_check.py ├── bgp_peer_loopback_check │ ├── l3extRsNodeL3OutAtt_neg.json │ ├── l3extRsNodeL3OutAtt_pos.json │ ├── l3extRsNodeL3OutAtt_pos1.json │ ├── l3extRsNodeL3OutAtt_pos2.json │ └── test_bgp_peer_loopback_check.py ├── cimc_compatibilty_check │ ├── compatRsSuppHw_605_L2.json │ ├── compatRsSuppHw_605_M1.json │ ├── compatRsSuppHw_empty.json │ ├── eqptCh_newver.json │ ├── eqptCh_oldver.json │ ├── eqptCh_reallyoldver.json │ └── test_cimc_compatibilty_check.py ├── clock_signal_component_failure_check │ ├── eqptFC_NEG.json │ ├── eqptFC_POS.json │ ├── eqptLC_NEG.json │ ├── eqptLC_POS.json │ └── test_clock_signal_component_failure_check.py ├── cloudsec_encryption_depr_check │ ├── cloudsecPreSharedKey_err.json │ ├── cloudsecPreSharedKey_neg.json │ ├── cloudsecPreSharedKey_pos.json │ ├── cloudsecPreSharedKey_pos2.json │ └── test_cloudsec_encryption_depr_check.py ├── configpush_shard_check │ ├── configpushShardCont_pos.json │ └── test_configpush_shard_check.py ├── conftest.py ├── consumer_vzany_shared_services_check │ ├── epg_epg2_unmatched.json │ ├── esg_esg2.json │ ├── fvCtx_consumer_same_vrf.json │ ├── fvCtx_consumer_shared.json │ ├── fvCtx_no_consumers.json │ ├── global_contracts_epg_only.json │ ├── global_contracts_esg_only.json │ ├── global_contracts_same_vrf.json │ ├── global_contracts_shared.json │ ├── instp_l3instp2.json │ ├── test_consumer_vzany_shared_services_check.py │ └── vnsGraphInst_redirect.json ├── contract_22_defect_check │ └── test_contract_22_defect_check.py ├── docker0_subent_overlap_check │ ├── apContainerPol_10_0_0_1__16.json │ ├── apContainerPol_172_16_0_1__15.json │ ├── apContainerPol_172_17_0_10__16.json │ ├── apContainerPol_172_17_0_1__16.json │ ├── apContainerPol_172_17_0_1__17.json │ ├── apContainerPol_172_18_0_1__16.json │ ├── infraWiNode_10_0_0_0__16.json │ ├── infraWiNode_10_0_x_0__24_remote_apic.json │ ├── infraWiNode_172_17_0_0__16.json │ ├── infraWiNode_172_17_x_0__24_remote_apic.json │ └── test_docker0_subent_overlap_check.py ├── eecdh_cipher_check │ ├── commCipher_neg.json │ ├── commCipher_neg2.json │ ├── commCipher_pos.json │ └── test_eecdh_cipher_check.py ├── encap_already_in_use_check │ ├── faultInst-encap-pos.json │ ├── faultInst-new-version.json │ ├── fvIfConn.json │ └── test_encap_already_in_use_check.py ├── equipment_disk_limits_exceeded │ ├── faultInst_neg.json │ ├── faultInst_pos.json │ └── test_equipment_disk_limits_exceeded.py ├── eventmgr_db_defect_check │ └── test_eventmgr_db_defect_check.py ├── fabricPathEP_target_check │ ├── fabricRsOosPath_neg.json │ ├── fabricRsOosPath_pos1.json │ ├── fabricRsOosPath_pos2.json │ ├── fabricRsOosPath_pos3.json │ ├── fabricRsOosPath_pos4.json │ ├── fabricRsOosPath_pos5.json │ ├── fabricRsOosPath_pos6.json │ ├── infraRsHPathAtt_neg.json │ ├── infraRsHPathAtt_pos1.json │ ├── infraRsHPathAtt_pos2.json │ ├── infraRsHPathAtt_pos3.json │ ├── infraRsHPathAtt_pos4.json │ ├── infraRsHPathAtt_pos5.json │ ├── infraRsHPathAtt_pos6.json │ └── test_fabricPathEP_target_check.py ├── fabric_dpp_check │ ├── lbpPol_NEG.json │ ├── lbpPol_POS.json │ └── test_fabric_dpp_check.py ├── fabric_link_redundancy_check │ ├── fabricNode.json │ ├── lldpAdjEp_neg.json │ ├── lldpAdjEp_pos_spine_only.json │ ├── lldpAdjEp_pos_spine_t1.json │ ├── lldpAdjEp_pos_t1_only.json │ └── test_fabric_link_redundancy_check.py ├── fabric_port_down_check │ ├── faultInst_pos.json │ └── test_fabric_port_down_check.py ├── fabricdomain_name_check │ ├── fabricNode.json │ ├── fabricNode_no_apic1.json │ ├── test_fabricdomain_name_check.py │ ├── topSystem_1POS.json │ ├── topSystem_2POS.json │ └── topSystem_NEG.json ├── fc_ex_model_check │ ├── fabricNode_NEG.json │ ├── fabricNode_POS.json │ ├── fcEntity_101_102.json │ ├── fcEntity_101_102_103.json │ ├── fcEntity_104.json │ └── test_fc_ex_model_check.py ├── gen1_switch_compatibility_check │ ├── fabricNode_no_gen1.json │ ├── fabricNode_with_gen1.json │ └── test_gen1_switch_compatibility_check.py ├── helpers │ ├── __init__.py │ └── utils.py ├── https_throttle_rate_check │ ├── commHttps_neg1.json │ ├── commHttps_neg2.json │ ├── commHttps_pos.json │ └── test_https_throttle_rate_check.py ├── internal_vlanpool_check │ ├── fvnsVlanInstP_neg.json │ ├── fvnsVlanInstP_pos.json │ ├── test_internal_vlanpool_check.py │ ├── vmmDomP_neg.json │ └── vmmDomP_pos.json ├── isis_database_byte_check │ ├── isisDTEp_NEG.json │ ├── isisDTEp_POS.json │ └── test_isis_database_byte_check.py ├── isis_redis_metric_mpod_msite_check │ ├── fvFabricExtConnP_pos1.json │ ├── fvFabricExtConnP_pos2.json │ ├── fvFabricExtConnP_pos3.json │ ├── isisDomP-default_missing.json │ ├── isisDomP-default_neg.json │ ├── isisDomP-default_pos.json │ └── test_isis_redis_metric_mpod_msite_check.py ├── l3out_mtu_check │ ├── l2pol-default.json │ ├── l3extRsPathL3OutAtt.json │ ├── l3extVirtualLIfP.json │ ├── l3extVirtualLIfP_unresolved.json │ └── test_l3out_mtu_check.py ├── l3out_overlapping_loopback_check │ ├── diff_l3out_loopback.json │ ├── diff_l3out_loopback_and_rtrId.json │ ├── diff_l3out_rtrId.json │ ├── no_overlap.json │ ├── overlap_on_diff_nodes.json │ ├── same_l3out_loopback.json │ ├── same_l3out_loopback_and_rtrId.json │ ├── same_l3out_loopback_with_subnet_mask.json │ ├── same_l3out_rtrId.json │ ├── same_l3out_rtrId_non_vpc.json │ ├── same_l3out_two_loopbacks.json │ └── test_l3out_overlapping_loopback_check.py ├── l3out_route_map_missing_target_check │ ├── rtctrlProfile_missing_target.json │ ├── rtctrlProfile_multiple_l3out_multiple_missing_target.json │ ├── rtctrlProfile_multiple_missing_target.json │ ├── rtctrlProfile_no_missing_target.json │ └── test_l3out_route_map_missing_target_check.py ├── lldp_custom_int_description_defect_check │ ├── fvRsDomAtt_neg.json │ ├── fvRsDomAtt_pos.json │ ├── infraPortBlk_neg.json │ ├── infraPortBlk_pos.json │ └── test_lldp_custom_int_description_defect_check.py ├── llfc_susceptibility_check │ ├── ethpmFcot.json │ └── test_llfc_susceptibility_check.py ├── mini_aci_6_0_2_check │ ├── fabricNode_all_phys_apic.json │ ├── fabricNode_mini_aci.json │ ├── test_mini_aci_6_0_2_check.py │ ├── topSystem_controller_neg.json │ └── topSystem_controller_pos.json ├── n9408_model_check │ ├── eqptCh_NEG.json │ ├── eqptCh_POS.json │ └── test_n9408_model_check.py ├── n9k_c93108tc_fx3p_interface_down_check │ ├── fabricNode_FX3H.json │ ├── fabricNode_FX3P.json │ ├── fabricNode_FX3P3H.json │ ├── fabricNode_no_FX3P3H.json │ └── test_n9k_c93108tc_fx3p_interface_down_check.py ├── ntp_status_check │ ├── NEG_datetimeClkPol.json │ ├── NEG_datetimeNtpq.json │ ├── POS_datetimeClkPol.json │ ├── POS_datetimeNtpq.json │ ├── fabricNode.json │ └── test_ntp_status_check.py ├── observer_db_size_check │ ├── fabricNode.json │ ├── fabricNode_no_apic.json │ ├── fabricNode_old.json │ ├── infraWiNode_apic1.json │ └── test_observer_db_size_check.py ├── oob_mgmt_security_check │ ├── mgmtInstP.json │ ├── mgmtInstP_no_contracts.json │ ├── mgmtInstP_no_subnets.json │ ├── mgmtOoB.json │ ├── mgmtOoB_no_contracts.json │ └── test_oob_mgmt_security_check.py ├── out_of_service_ports_check │ ├── ethpmPhysIf-neg.json │ ├── ethpmPhysIf-pos.json │ └── test_out_of_service_ports_check.py ├── overlapping_vlan_pools_check │ ├── access_policy.json │ ├── fvAEPg.json │ ├── fvIfConn.json │ ├── infraSetPol_no.json │ ├── infraSetPol_yes.json │ ├── templates │ │ ├── access_policy.j2 │ │ ├── fvAEPg.j2 │ │ ├── fvIfConn.j2 │ │ └── macros.j2 │ └── test_overlapping_vlan_pools_check.py ├── pbr_high_scale_check │ ├── test_pbr_high_scale_check.py │ ├── vnsAdjacencyDefCont_HIGH.json │ ├── vnsAdjacencyDefCont_LOW.json │ ├── vnsSvcRedirEcmpBucketCons_HIGH.json │ └── vnsSvcRedirEcmpBucketCons_LOW.json ├── post_upgrade_cb_check │ ├── moCount_0.json │ ├── moCount_10.json │ ├── moCount_8.json │ └── test_post_upgrade_cb_check.py ├── prefix_already_in_use_check │ ├── faultInst_F0467_prefix-entry-already-in-use_new.json │ ├── faultInst_F0467_prefix-entry-already-in-use_old.json │ ├── fvCtx.json │ ├── l3extRsEctx.json │ ├── l3extSubnet_no_overlap.json │ ├── l3extSubnet_overlap.json │ └── test_prefix_already_in_use_check.py ├── r_leaf_compatibility_check │ ├── fabricNode_no_RL.json │ ├── fabricNode_with_RL.json │ ├── infraSetPol_DTF_disabled.json │ ├── infraSetPol_DTF_enabled.json │ ├── infraSetPol_no_DTF.json │ └── test_r_leaf_compatibility_check.py ├── rtmap_comm_match_defect_check │ ├── rtctrlCtxP_NEG.json │ ├── rtctrlCtxP_POS.json │ ├── rtctrlSubjP_NEG.json │ ├── rtctrlSubjP_POS.json │ └── test_rtmap_comm_match_defect_check.py ├── service_bd_forceful_routing_check │ ├── fvRtEPpInfoToBD.json │ └── test_service_bd_forceful_routing_check.py ├── stale_decomissioned_spine_check │ ├── fabricNode.json │ ├── fabricRsDecommissionNode_POS.json │ └── test_stale_decomissioned_spine_check.py ├── standby_sup_sync_check │ ├── eqptSupC_NEG.json │ ├── eqptSupC_POS.json │ └── test_standby_sup_sync_check.py ├── static_route_overlap_check │ ├── fvRsCtx.json │ ├── fvSubnet.json │ ├── ipRouteP_empty.json │ ├── ipRouteP_neg.json │ ├── ipRouteP_pos.json │ ├── l3extRsEctx.json │ └── test_static_route_overlap_check.py ├── subnet_scope_check │ ├── fvAEPg_empty.json │ ├── fvAEPg_neg.json │ ├── fvAEPg_pos.json │ ├── fvBD.json │ ├── fvRsBd.json │ └── test_subnet_scope_check.py ├── sup_a_high_memory_check │ ├── eqptSupC_SUP_A.json │ ├── eqptSupC_SUP_A_Aplus.json │ ├── eqptSupC_SUP_Aplus.json │ ├── eqptSupC_no_SUP_A_Aplus.json │ └── test_sup_a_high_memory_check.py ├── sup_hwrev_check │ ├── eqptSpCmnBlk_NEG.json │ ├── eqptSpCmnBlk_POS.json │ └── test_sup_hwrev_check.py ├── switch_bootflash_usage_check │ ├── eqptcapacityFSPartition.json │ ├── maintUpgJob_not_downloaded.json │ ├── maintUpgJob_old_ver_no_prop.json │ ├── maintUpgJob_pre_downloaded.json │ └── test_switch_bootflash_usage_check.py ├── switch_group_guideline_check │ ├── bgpRRNodePEp_1001_1002_2001_2002.json │ ├── fabricExplicitGEp.json │ ├── fabricNode.json │ ├── l3extRsNodeL3OutAtt_1001_1002_2001_2002.json │ ├── l3extRsNodeL3OutAtt_1003_1004_2001_2002.json │ ├── lldpCtrlrAdjEp.json │ ├── maintMaintGrp_ALL.json │ ├── maintMaintGrp_BAD_GRP1_GRP2.json │ ├── maintMaintGrp_BAD_ONLY_POD1_SPINE_RR.json │ ├── maintMaintGrp_EVEN_ODD.json │ ├── maintMaintGrp_SPINE_LEAF.json │ └── test_switch_group_guideline_check.py ├── switch_ssd_check │ ├── faultInst.json │ └── test_switch_ssd_check.py ├── switch_status_check │ ├── fabricNode_NEG.json │ ├── fabricNode_POS.json │ ├── fabricRsDecommissionNode.json │ └── test_switch_status_check.py ├── telemetryStatsServerP_object_check │ ├── telemetryStatsServerP_neg.json │ ├── telemetryStatsServerP_pos.json │ └── test_telemetryStatsServerP_object_check.py ├── tep-to-tep_atomic_counter_check │ ├── dbgAcPath_max.json │ ├── dbgAcPath_na.json │ ├── dbgAcPath_pass.json │ └── test_tep_to_tep_ac_count_check.py ├── unsupported_fec_configuration_ex_check │ ├── test_unsupported_fec_configuration_ex_check.py │ ├── topSystem_neg.json │ └── topSystem_pos.json ├── uplink_limit_check │ ├── eqptPortP_NEG.json │ ├── eqptPortP_POS.json │ ├── eqptPortP_empty.json │ └── test_uplink_limit_check.py ├── validate_32_64_bit_image_check │ ├── firmwareFirmware_empty.json │ ├── firmwareFirmware_neg.json │ ├── firmwareFirmware_pos.json │ ├── firmwareFirmware_pos2.json │ ├── firmwareFirmware_pos3.json │ ├── firmwareFirmware_pos4.json │ └── test_validate_32_64_bit_image_check.py ├── vmm_active_uplinks_check │ ├── fvUplinkOrderCont_neg.json │ ├── fvUplinkOrderCont_not_exist.json │ ├── fvUplinkOrderCont_pos.json │ └── test_vmm_active_uplinks_check.py ├── vmm_inventory_partial_sync │ ├── faultInst_neg.json │ ├── faultInst_neg1.json │ ├── faultInst_pos.json │ ├── faultInst_pos2.json │ └── test_vmm_inventory_partial_sync.py ├── vpc_paired_switches_check │ ├── fabricNode.json │ └── test_vpc_paired_switches_check.py └── vzany_vzany_service_epg_check │ ├── test_vzany_vzany_service_epg_check.py │ ├── vzRsSubjGraphAtt.json │ ├── vzRtAny_vzAny_prov_cons_diff_VRFs.json │ ├── vzRtAny_vzAny_prov_only.json │ ├── vzRtAny_vzAny_vzAny.json │ └── vzRtAny_vzAny_vzAny_2_VRFs.json ├── conftest.py ├── requirements-py27.txt ├── requirements-py38.txt ├── test_AciResult.py ├── test_AciVersion.py ├── test_CheckManager.py ├── test_IPAddress.py ├── test_ResultManager.py ├── test_ThreadManager.py ├── test_common_data.py ├── test_get_vpc_node.py ├── test_icurl.py ├── test_main.py ├── test_parse_args.py └── test_run_cmd.py /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-validation-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/.github/ISSUE_TEMPLATE/new-validation-request.md -------------------------------------------------------------------------------- /.github/workflows/gh-page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/.github/workflows/gh-page.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/README.md -------------------------------------------------------------------------------- /aci-preupgrade-validation-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/aci-preupgrade-validation-script.py -------------------------------------------------------------------------------- /docs/docs/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/docs/docs/assets/logo.svg -------------------------------------------------------------------------------- /docs/docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/docs/docs/css/style.css -------------------------------------------------------------------------------- /docs/docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/docs/docs/getting_started.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/docs/docs/usage.md -------------------------------------------------------------------------------- /docs/docs/validations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/docs/docs/validations.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/pytest.ini -------------------------------------------------------------------------------- /tests/AciAccessPolicyParser/templates/access_policy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/AciAccessPolicyParser/templates/access_policy.j2 -------------------------------------------------------------------------------- /tests/AciAccessPolicyParser/templates/macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/AciAccessPolicyParser/templates/macros.j2 -------------------------------------------------------------------------------- /tests/AciAccessPolicyParser/templates/node_profiles.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/AciAccessPolicyParser/templates/node_profiles.j2 -------------------------------------------------------------------------------- /tests/AciAccessPolicyParser/test_AciAccessPolicyParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/AciAccessPolicyParser/test_AciAccessPolicyParser.py -------------------------------------------------------------------------------- /tests/checks/access_untagged_check/faultInst_NEG.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/access_untagged_check/faultInst_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/access_untagged_check/faultInst_POS.json -------------------------------------------------------------------------------- /tests/checks/access_untagged_check/test_access_untagged_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/access_untagged_check/test_access_untagged_check.py -------------------------------------------------------------------------------- /tests/checks/aes_encryption_check/exportcryptkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/aes_encryption_check/exportcryptkey.json -------------------------------------------------------------------------------- /tests/checks/aes_encryption_check/exportcryptkey_disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/aes_encryption_check/exportcryptkey_disabled.json -------------------------------------------------------------------------------- /tests/checks/aes_encryption_check/test_aes_encryption_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/aes_encryption_check/test_aes_encryption_check.py -------------------------------------------------------------------------------- /tests/checks/apic_ca_cert_validation/NEG_certreq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ca_cert_validation/NEG_certreq.txt -------------------------------------------------------------------------------- /tests/checks/apic_ca_cert_validation/POS_certreq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ca_cert_validation/POS_certreq.txt -------------------------------------------------------------------------------- /tests/checks/apic_ca_cert_validation/test_apic_ca_cert_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ca_cert_validation/test_apic_ca_cert_validation.py -------------------------------------------------------------------------------- /tests/checks/apic_database_size_check/infraWiNode_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_database_size_check/infraWiNode_3.json -------------------------------------------------------------------------------- /tests/checks/apic_database_size_check/infraWiNode_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_database_size_check/infraWiNode_4.json -------------------------------------------------------------------------------- /tests/checks/apic_database_size_check/test_apic_database_size_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_database_size_check/test_apic_database_size_check.py -------------------------------------------------------------------------------- /tests/checks/apic_ssd_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ssd_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/apic_ssd_check/fabricNode_no_apic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ssd_check/fabricNode_no_apic.json -------------------------------------------------------------------------------- /tests/checks/apic_ssd_check/fabricNode_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ssd_check/fabricNode_old.json -------------------------------------------------------------------------------- /tests/checks/apic_ssd_check/fault_F2731.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ssd_check/fault_F2731.json -------------------------------------------------------------------------------- /tests/checks/apic_ssd_check/infraWiNode_apic1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ssd_check/infraWiNode_apic1.json -------------------------------------------------------------------------------- /tests/checks/apic_ssd_check/test_apic_ssd_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_ssd_check/test_apic_ssd_check.py -------------------------------------------------------------------------------- /tests/checks/apic_version_md5_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_version_md5_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/apic_version_md5_check/fabricNode_no_apic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_version_md5_check/fabricNode_no_apic.json -------------------------------------------------------------------------------- /tests/checks/apic_version_md5_check/fabricNode_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_version_md5_check/fabricNode_old.json -------------------------------------------------------------------------------- /tests/checks/apic_version_md5_check/firmwareFirmware_6.0.5h.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_version_md5_check/firmwareFirmware_6.0.5h.json -------------------------------------------------------------------------------- /tests/checks/apic_version_md5_check/firmwareFirmware_6.0.5h_image_sign_fail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_version_md5_check/firmwareFirmware_6.0.5h_image_sign_fail.json -------------------------------------------------------------------------------- /tests/checks/apic_version_md5_check/infraWiNode_apic1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_version_md5_check/infraWiNode_apic1.json -------------------------------------------------------------------------------- /tests/checks/apic_version_md5_check/test_apic_version_md5_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/apic_version_md5_check/test_apic_version_md5_check.py -------------------------------------------------------------------------------- /tests/checks/ave_eol_check/test_ave_eol_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/ave_eol_check/test_ave_eol_check.py -------------------------------------------------------------------------------- /tests/checks/ave_eol_check/vmmDomP_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/ave_eol_check/vmmDomP_POS.json -------------------------------------------------------------------------------- /tests/checks/bgp_golf_route_target_type_check/fvCtx_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/bgp_golf_route_target_type_check/fvCtx_pos.json -------------------------------------------------------------------------------- /tests/checks/bgp_golf_route_target_type_check/test_bgp_golf_route_target_type_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/bgp_golf_route_target_type_check/test_bgp_golf_route_target_type_check.py -------------------------------------------------------------------------------- /tests/checks/bgp_peer_loopback_check/l3extRsNodeL3OutAtt_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/bgp_peer_loopback_check/l3extRsNodeL3OutAtt_neg.json -------------------------------------------------------------------------------- /tests/checks/bgp_peer_loopback_check/l3extRsNodeL3OutAtt_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/bgp_peer_loopback_check/l3extRsNodeL3OutAtt_pos.json -------------------------------------------------------------------------------- /tests/checks/bgp_peer_loopback_check/l3extRsNodeL3OutAtt_pos1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/bgp_peer_loopback_check/l3extRsNodeL3OutAtt_pos1.json -------------------------------------------------------------------------------- /tests/checks/bgp_peer_loopback_check/l3extRsNodeL3OutAtt_pos2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/bgp_peer_loopback_check/l3extRsNodeL3OutAtt_pos2.json -------------------------------------------------------------------------------- /tests/checks/bgp_peer_loopback_check/test_bgp_peer_loopback_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/bgp_peer_loopback_check/test_bgp_peer_loopback_check.py -------------------------------------------------------------------------------- /tests/checks/cimc_compatibilty_check/compatRsSuppHw_605_L2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cimc_compatibilty_check/compatRsSuppHw_605_L2.json -------------------------------------------------------------------------------- /tests/checks/cimc_compatibilty_check/compatRsSuppHw_605_M1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cimc_compatibilty_check/compatRsSuppHw_605_M1.json -------------------------------------------------------------------------------- /tests/checks/cimc_compatibilty_check/compatRsSuppHw_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/cimc_compatibilty_check/eqptCh_newver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cimc_compatibilty_check/eqptCh_newver.json -------------------------------------------------------------------------------- /tests/checks/cimc_compatibilty_check/eqptCh_oldver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cimc_compatibilty_check/eqptCh_oldver.json -------------------------------------------------------------------------------- /tests/checks/cimc_compatibilty_check/eqptCh_reallyoldver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cimc_compatibilty_check/eqptCh_reallyoldver.json -------------------------------------------------------------------------------- /tests/checks/cimc_compatibilty_check/test_cimc_compatibilty_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cimc_compatibilty_check/test_cimc_compatibilty_check.py -------------------------------------------------------------------------------- /tests/checks/clock_signal_component_failure_check/eqptFC_NEG.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/clock_signal_component_failure_check/eqptFC_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/clock_signal_component_failure_check/eqptFC_POS.json -------------------------------------------------------------------------------- /tests/checks/clock_signal_component_failure_check/eqptLC_NEG.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/checks/clock_signal_component_failure_check/eqptLC_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/clock_signal_component_failure_check/eqptLC_POS.json -------------------------------------------------------------------------------- /tests/checks/clock_signal_component_failure_check/test_clock_signal_component_failure_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/clock_signal_component_failure_check/test_clock_signal_component_failure_check.py -------------------------------------------------------------------------------- /tests/checks/cloudsec_encryption_depr_check/cloudsecPreSharedKey_err.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cloudsec_encryption_depr_check/cloudsecPreSharedKey_err.json -------------------------------------------------------------------------------- /tests/checks/cloudsec_encryption_depr_check/cloudsecPreSharedKey_neg.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/cloudsec_encryption_depr_check/cloudsecPreSharedKey_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cloudsec_encryption_depr_check/cloudsecPreSharedKey_pos.json -------------------------------------------------------------------------------- /tests/checks/cloudsec_encryption_depr_check/cloudsecPreSharedKey_pos2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cloudsec_encryption_depr_check/cloudsecPreSharedKey_pos2.json -------------------------------------------------------------------------------- /tests/checks/cloudsec_encryption_depr_check/test_cloudsec_encryption_depr_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/cloudsec_encryption_depr_check/test_cloudsec_encryption_depr_check.py -------------------------------------------------------------------------------- /tests/checks/configpush_shard_check/configpushShardCont_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/configpush_shard_check/configpushShardCont_pos.json -------------------------------------------------------------------------------- /tests/checks/configpush_shard_check/test_configpush_shard_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/configpush_shard_check/test_configpush_shard_check.py -------------------------------------------------------------------------------- /tests/checks/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/conftest.py -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/epg_epg2_unmatched.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/epg_epg2_unmatched.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/esg_esg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/esg_esg2.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/fvCtx_consumer_same_vrf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/fvCtx_consumer_same_vrf.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/fvCtx_consumer_shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/fvCtx_consumer_shared.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/fvCtx_no_consumers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/fvCtx_no_consumers.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/global_contracts_epg_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/global_contracts_epg_only.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/global_contracts_esg_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/global_contracts_esg_only.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/global_contracts_same_vrf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/global_contracts_same_vrf.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/global_contracts_shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/global_contracts_shared.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/instp_l3instp2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/instp_l3instp2.json -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/test_consumer_vzany_shared_services_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/test_consumer_vzany_shared_services_check.py -------------------------------------------------------------------------------- /tests/checks/consumer_vzany_shared_services_check/vnsGraphInst_redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/consumer_vzany_shared_services_check/vnsGraphInst_redirect.json -------------------------------------------------------------------------------- /tests/checks/contract_22_defect_check/test_contract_22_defect_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/contract_22_defect_check/test_contract_22_defect_check.py -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/apContainerPol_10_0_0_1__16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/apContainerPol_10_0_0_1__16.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/apContainerPol_172_16_0_1__15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/apContainerPol_172_16_0_1__15.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/apContainerPol_172_17_0_10__16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/apContainerPol_172_17_0_10__16.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/apContainerPol_172_17_0_1__16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/apContainerPol_172_17_0_1__16.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/apContainerPol_172_17_0_1__17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/apContainerPol_172_17_0_1__17.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/apContainerPol_172_18_0_1__16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/apContainerPol_172_18_0_1__16.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/infraWiNode_10_0_0_0__16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/infraWiNode_10_0_0_0__16.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/infraWiNode_10_0_x_0__24_remote_apic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/infraWiNode_10_0_x_0__24_remote_apic.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/infraWiNode_172_17_0_0__16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/infraWiNode_172_17_0_0__16.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/infraWiNode_172_17_x_0__24_remote_apic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/infraWiNode_172_17_x_0__24_remote_apic.json -------------------------------------------------------------------------------- /tests/checks/docker0_subent_overlap_check/test_docker0_subent_overlap_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/docker0_subent_overlap_check/test_docker0_subent_overlap_check.py -------------------------------------------------------------------------------- /tests/checks/eecdh_cipher_check/commCipher_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/eecdh_cipher_check/commCipher_neg.json -------------------------------------------------------------------------------- /tests/checks/eecdh_cipher_check/commCipher_neg2.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/eecdh_cipher_check/commCipher_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/eecdh_cipher_check/commCipher_pos.json -------------------------------------------------------------------------------- /tests/checks/eecdh_cipher_check/test_eecdh_cipher_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/eecdh_cipher_check/test_eecdh_cipher_check.py -------------------------------------------------------------------------------- /tests/checks/encap_already_in_use_check/faultInst-encap-pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/encap_already_in_use_check/faultInst-encap-pos.json -------------------------------------------------------------------------------- /tests/checks/encap_already_in_use_check/faultInst-new-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/encap_already_in_use_check/faultInst-new-version.json -------------------------------------------------------------------------------- /tests/checks/encap_already_in_use_check/fvIfConn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/encap_already_in_use_check/fvIfConn.json -------------------------------------------------------------------------------- /tests/checks/encap_already_in_use_check/test_encap_already_in_use_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/encap_already_in_use_check/test_encap_already_in_use_check.py -------------------------------------------------------------------------------- /tests/checks/equipment_disk_limits_exceeded/faultInst_neg.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/equipment_disk_limits_exceeded/faultInst_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/equipment_disk_limits_exceeded/faultInst_pos.json -------------------------------------------------------------------------------- /tests/checks/equipment_disk_limits_exceeded/test_equipment_disk_limits_exceeded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/equipment_disk_limits_exceeded/test_equipment_disk_limits_exceeded.py -------------------------------------------------------------------------------- /tests/checks/eventmgr_db_defect_check/test_eventmgr_db_defect_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/eventmgr_db_defect_check/test_eventmgr_db_defect_check.py -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/fabricRsOosPath_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/fabricRsOosPath_neg.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos1.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos2.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos3.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos4.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos5.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/fabricRsOosPath_pos6.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/infraRsHPathAtt_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/infraRsHPathAtt_neg.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos1.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos2.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos3.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos4.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos5.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/infraRsHPathAtt_pos6.json -------------------------------------------------------------------------------- /tests/checks/fabricPathEP_target_check/test_fabricPathEP_target_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricPathEP_target_check/test_fabricPathEP_target_check.py -------------------------------------------------------------------------------- /tests/checks/fabric_dpp_check/lbpPol_NEG.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/fabric_dpp_check/lbpPol_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_dpp_check/lbpPol_POS.json -------------------------------------------------------------------------------- /tests/checks/fabric_dpp_check/test_fabric_dpp_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_dpp_check/test_fabric_dpp_check.py -------------------------------------------------------------------------------- /tests/checks/fabric_link_redundancy_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_link_redundancy_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/fabric_link_redundancy_check/lldpAdjEp_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_link_redundancy_check/lldpAdjEp_neg.json -------------------------------------------------------------------------------- /tests/checks/fabric_link_redundancy_check/lldpAdjEp_pos_spine_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_link_redundancy_check/lldpAdjEp_pos_spine_only.json -------------------------------------------------------------------------------- /tests/checks/fabric_link_redundancy_check/lldpAdjEp_pos_spine_t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_link_redundancy_check/lldpAdjEp_pos_spine_t1.json -------------------------------------------------------------------------------- /tests/checks/fabric_link_redundancy_check/lldpAdjEp_pos_t1_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_link_redundancy_check/lldpAdjEp_pos_t1_only.json -------------------------------------------------------------------------------- /tests/checks/fabric_link_redundancy_check/test_fabric_link_redundancy_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_link_redundancy_check/test_fabric_link_redundancy_check.py -------------------------------------------------------------------------------- /tests/checks/fabric_port_down_check/faultInst_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_port_down_check/faultInst_pos.json -------------------------------------------------------------------------------- /tests/checks/fabric_port_down_check/test_fabric_port_down_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabric_port_down_check/test_fabric_port_down_check.py -------------------------------------------------------------------------------- /tests/checks/fabricdomain_name_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricdomain_name_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/fabricdomain_name_check/fabricNode_no_apic1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricdomain_name_check/fabricNode_no_apic1.json -------------------------------------------------------------------------------- /tests/checks/fabricdomain_name_check/test_fabricdomain_name_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricdomain_name_check/test_fabricdomain_name_check.py -------------------------------------------------------------------------------- /tests/checks/fabricdomain_name_check/topSystem_1POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricdomain_name_check/topSystem_1POS.json -------------------------------------------------------------------------------- /tests/checks/fabricdomain_name_check/topSystem_2POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricdomain_name_check/topSystem_2POS.json -------------------------------------------------------------------------------- /tests/checks/fabricdomain_name_check/topSystem_NEG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fabricdomain_name_check/topSystem_NEG.json -------------------------------------------------------------------------------- /tests/checks/fc_ex_model_check/fabricNode_NEG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fc_ex_model_check/fabricNode_NEG.json -------------------------------------------------------------------------------- /tests/checks/fc_ex_model_check/fabricNode_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fc_ex_model_check/fabricNode_POS.json -------------------------------------------------------------------------------- /tests/checks/fc_ex_model_check/fcEntity_101_102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fc_ex_model_check/fcEntity_101_102.json -------------------------------------------------------------------------------- /tests/checks/fc_ex_model_check/fcEntity_101_102_103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fc_ex_model_check/fcEntity_101_102_103.json -------------------------------------------------------------------------------- /tests/checks/fc_ex_model_check/fcEntity_104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fc_ex_model_check/fcEntity_104.json -------------------------------------------------------------------------------- /tests/checks/fc_ex_model_check/test_fc_ex_model_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/fc_ex_model_check/test_fc_ex_model_check.py -------------------------------------------------------------------------------- /tests/checks/gen1_switch_compatibility_check/fabricNode_no_gen1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/gen1_switch_compatibility_check/fabricNode_no_gen1.json -------------------------------------------------------------------------------- /tests/checks/gen1_switch_compatibility_check/fabricNode_with_gen1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/gen1_switch_compatibility_check/fabricNode_with_gen1.json -------------------------------------------------------------------------------- /tests/checks/gen1_switch_compatibility_check/test_gen1_switch_compatibility_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/gen1_switch_compatibility_check/test_gen1_switch_compatibility_check.py -------------------------------------------------------------------------------- /tests/checks/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/checks/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/helpers/utils.py -------------------------------------------------------------------------------- /tests/checks/https_throttle_rate_check/commHttps_neg1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/https_throttle_rate_check/commHttps_neg1.json -------------------------------------------------------------------------------- /tests/checks/https_throttle_rate_check/commHttps_neg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/https_throttle_rate_check/commHttps_neg2.json -------------------------------------------------------------------------------- /tests/checks/https_throttle_rate_check/commHttps_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/https_throttle_rate_check/commHttps_pos.json -------------------------------------------------------------------------------- /tests/checks/https_throttle_rate_check/test_https_throttle_rate_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/https_throttle_rate_check/test_https_throttle_rate_check.py -------------------------------------------------------------------------------- /tests/checks/internal_vlanpool_check/fvnsVlanInstP_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/internal_vlanpool_check/fvnsVlanInstP_neg.json -------------------------------------------------------------------------------- /tests/checks/internal_vlanpool_check/fvnsVlanInstP_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/internal_vlanpool_check/fvnsVlanInstP_pos.json -------------------------------------------------------------------------------- /tests/checks/internal_vlanpool_check/test_internal_vlanpool_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/internal_vlanpool_check/test_internal_vlanpool_check.py -------------------------------------------------------------------------------- /tests/checks/internal_vlanpool_check/vmmDomP_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/internal_vlanpool_check/vmmDomP_neg.json -------------------------------------------------------------------------------- /tests/checks/internal_vlanpool_check/vmmDomP_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/internal_vlanpool_check/vmmDomP_pos.json -------------------------------------------------------------------------------- /tests/checks/isis_database_byte_check/isisDTEp_NEG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_database_byte_check/isisDTEp_NEG.json -------------------------------------------------------------------------------- /tests/checks/isis_database_byte_check/isisDTEp_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_database_byte_check/isisDTEp_POS.json -------------------------------------------------------------------------------- /tests/checks/isis_database_byte_check/test_isis_database_byte_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_database_byte_check/test_isis_database_byte_check.py -------------------------------------------------------------------------------- /tests/checks/isis_redis_metric_mpod_msite_check/fvFabricExtConnP_pos1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_redis_metric_mpod_msite_check/fvFabricExtConnP_pos1.json -------------------------------------------------------------------------------- /tests/checks/isis_redis_metric_mpod_msite_check/fvFabricExtConnP_pos2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_redis_metric_mpod_msite_check/fvFabricExtConnP_pos2.json -------------------------------------------------------------------------------- /tests/checks/isis_redis_metric_mpod_msite_check/fvFabricExtConnP_pos3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_redis_metric_mpod_msite_check/fvFabricExtConnP_pos3.json -------------------------------------------------------------------------------- /tests/checks/isis_redis_metric_mpod_msite_check/isisDomP-default_missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_redis_metric_mpod_msite_check/isisDomP-default_missing.json -------------------------------------------------------------------------------- /tests/checks/isis_redis_metric_mpod_msite_check/isisDomP-default_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_redis_metric_mpod_msite_check/isisDomP-default_neg.json -------------------------------------------------------------------------------- /tests/checks/isis_redis_metric_mpod_msite_check/isisDomP-default_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_redis_metric_mpod_msite_check/isisDomP-default_pos.json -------------------------------------------------------------------------------- /tests/checks/isis_redis_metric_mpod_msite_check/test_isis_redis_metric_mpod_msite_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/isis_redis_metric_mpod_msite_check/test_isis_redis_metric_mpod_msite_check.py -------------------------------------------------------------------------------- /tests/checks/l3out_mtu_check/l2pol-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_mtu_check/l2pol-default.json -------------------------------------------------------------------------------- /tests/checks/l3out_mtu_check/l3extRsPathL3OutAtt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_mtu_check/l3extRsPathL3OutAtt.json -------------------------------------------------------------------------------- /tests/checks/l3out_mtu_check/l3extVirtualLIfP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_mtu_check/l3extVirtualLIfP.json -------------------------------------------------------------------------------- /tests/checks/l3out_mtu_check/l3extVirtualLIfP_unresolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_mtu_check/l3extVirtualLIfP_unresolved.json -------------------------------------------------------------------------------- /tests/checks/l3out_mtu_check/test_l3out_mtu_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_mtu_check/test_l3out_mtu_check.py -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/diff_l3out_loopback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/diff_l3out_loopback.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/diff_l3out_loopback_and_rtrId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/diff_l3out_loopback_and_rtrId.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/diff_l3out_rtrId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/diff_l3out_rtrId.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/no_overlap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/no_overlap.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/overlap_on_diff_nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/overlap_on_diff_nodes.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/same_l3out_loopback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/same_l3out_loopback.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/same_l3out_loopback_and_rtrId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/same_l3out_loopback_and_rtrId.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/same_l3out_loopback_with_subnet_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/same_l3out_loopback_with_subnet_mask.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/same_l3out_rtrId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/same_l3out_rtrId.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/same_l3out_rtrId_non_vpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/same_l3out_rtrId_non_vpc.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/same_l3out_two_loopbacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/same_l3out_two_loopbacks.json -------------------------------------------------------------------------------- /tests/checks/l3out_overlapping_loopback_check/test_l3out_overlapping_loopback_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_overlapping_loopback_check/test_l3out_overlapping_loopback_check.py -------------------------------------------------------------------------------- /tests/checks/l3out_route_map_missing_target_check/rtctrlProfile_missing_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_route_map_missing_target_check/rtctrlProfile_missing_target.json -------------------------------------------------------------------------------- /tests/checks/l3out_route_map_missing_target_check/rtctrlProfile_multiple_l3out_multiple_missing_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_route_map_missing_target_check/rtctrlProfile_multiple_l3out_multiple_missing_target.json -------------------------------------------------------------------------------- /tests/checks/l3out_route_map_missing_target_check/rtctrlProfile_multiple_missing_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_route_map_missing_target_check/rtctrlProfile_multiple_missing_target.json -------------------------------------------------------------------------------- /tests/checks/l3out_route_map_missing_target_check/rtctrlProfile_no_missing_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_route_map_missing_target_check/rtctrlProfile_no_missing_target.json -------------------------------------------------------------------------------- /tests/checks/l3out_route_map_missing_target_check/test_l3out_route_map_missing_target_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/l3out_route_map_missing_target_check/test_l3out_route_map_missing_target_check.py -------------------------------------------------------------------------------- /tests/checks/lldp_custom_int_description_defect_check/fvRsDomAtt_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/lldp_custom_int_description_defect_check/fvRsDomAtt_neg.json -------------------------------------------------------------------------------- /tests/checks/lldp_custom_int_description_defect_check/fvRsDomAtt_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/lldp_custom_int_description_defect_check/fvRsDomAtt_pos.json -------------------------------------------------------------------------------- /tests/checks/lldp_custom_int_description_defect_check/infraPortBlk_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/lldp_custom_int_description_defect_check/infraPortBlk_neg.json -------------------------------------------------------------------------------- /tests/checks/lldp_custom_int_description_defect_check/infraPortBlk_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/lldp_custom_int_description_defect_check/infraPortBlk_pos.json -------------------------------------------------------------------------------- /tests/checks/lldp_custom_int_description_defect_check/test_lldp_custom_int_description_defect_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/lldp_custom_int_description_defect_check/test_lldp_custom_int_description_defect_check.py -------------------------------------------------------------------------------- /tests/checks/llfc_susceptibility_check/ethpmFcot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/llfc_susceptibility_check/ethpmFcot.json -------------------------------------------------------------------------------- /tests/checks/llfc_susceptibility_check/test_llfc_susceptibility_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/llfc_susceptibility_check/test_llfc_susceptibility_check.py -------------------------------------------------------------------------------- /tests/checks/mini_aci_6_0_2_check/fabricNode_all_phys_apic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/mini_aci_6_0_2_check/fabricNode_all_phys_apic.json -------------------------------------------------------------------------------- /tests/checks/mini_aci_6_0_2_check/fabricNode_mini_aci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/mini_aci_6_0_2_check/fabricNode_mini_aci.json -------------------------------------------------------------------------------- /tests/checks/mini_aci_6_0_2_check/test_mini_aci_6_0_2_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/mini_aci_6_0_2_check/test_mini_aci_6_0_2_check.py -------------------------------------------------------------------------------- /tests/checks/mini_aci_6_0_2_check/topSystem_controller_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/mini_aci_6_0_2_check/topSystem_controller_neg.json -------------------------------------------------------------------------------- /tests/checks/mini_aci_6_0_2_check/topSystem_controller_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/mini_aci_6_0_2_check/topSystem_controller_pos.json -------------------------------------------------------------------------------- /tests/checks/n9408_model_check/eqptCh_NEG.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/n9408_model_check/eqptCh_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/n9408_model_check/eqptCh_POS.json -------------------------------------------------------------------------------- /tests/checks/n9408_model_check/test_n9408_model_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/n9408_model_check/test_n9408_model_check.py -------------------------------------------------------------------------------- /tests/checks/n9k_c93108tc_fx3p_interface_down_check/fabricNode_FX3H.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/n9k_c93108tc_fx3p_interface_down_check/fabricNode_FX3H.json -------------------------------------------------------------------------------- /tests/checks/n9k_c93108tc_fx3p_interface_down_check/fabricNode_FX3P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/n9k_c93108tc_fx3p_interface_down_check/fabricNode_FX3P.json -------------------------------------------------------------------------------- /tests/checks/n9k_c93108tc_fx3p_interface_down_check/fabricNode_FX3P3H.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/n9k_c93108tc_fx3p_interface_down_check/fabricNode_FX3P3H.json -------------------------------------------------------------------------------- /tests/checks/n9k_c93108tc_fx3p_interface_down_check/fabricNode_no_FX3P3H.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/n9k_c93108tc_fx3p_interface_down_check/fabricNode_no_FX3P3H.json -------------------------------------------------------------------------------- /tests/checks/n9k_c93108tc_fx3p_interface_down_check/test_n9k_c93108tc_fx3p_interface_down_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/n9k_c93108tc_fx3p_interface_down_check/test_n9k_c93108tc_fx3p_interface_down_check.py -------------------------------------------------------------------------------- /tests/checks/ntp_status_check/NEG_datetimeClkPol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/ntp_status_check/NEG_datetimeClkPol.json -------------------------------------------------------------------------------- /tests/checks/ntp_status_check/NEG_datetimeNtpq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/ntp_status_check/NEG_datetimeNtpq.json -------------------------------------------------------------------------------- /tests/checks/ntp_status_check/POS_datetimeClkPol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/ntp_status_check/POS_datetimeClkPol.json -------------------------------------------------------------------------------- /tests/checks/ntp_status_check/POS_datetimeNtpq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/ntp_status_check/POS_datetimeNtpq.json -------------------------------------------------------------------------------- /tests/checks/ntp_status_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/ntp_status_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/ntp_status_check/test_ntp_status_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/ntp_status_check/test_ntp_status_check.py -------------------------------------------------------------------------------- /tests/checks/observer_db_size_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/observer_db_size_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/observer_db_size_check/fabricNode_no_apic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/observer_db_size_check/fabricNode_no_apic.json -------------------------------------------------------------------------------- /tests/checks/observer_db_size_check/fabricNode_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/observer_db_size_check/fabricNode_old.json -------------------------------------------------------------------------------- /tests/checks/observer_db_size_check/infraWiNode_apic1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/observer_db_size_check/infraWiNode_apic1.json -------------------------------------------------------------------------------- /tests/checks/observer_db_size_check/test_observer_db_size_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/observer_db_size_check/test_observer_db_size_check.py -------------------------------------------------------------------------------- /tests/checks/oob_mgmt_security_check/mgmtInstP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/oob_mgmt_security_check/mgmtInstP.json -------------------------------------------------------------------------------- /tests/checks/oob_mgmt_security_check/mgmtInstP_no_contracts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/oob_mgmt_security_check/mgmtInstP_no_contracts.json -------------------------------------------------------------------------------- /tests/checks/oob_mgmt_security_check/mgmtInstP_no_subnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/oob_mgmt_security_check/mgmtInstP_no_subnets.json -------------------------------------------------------------------------------- /tests/checks/oob_mgmt_security_check/mgmtOoB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/oob_mgmt_security_check/mgmtOoB.json -------------------------------------------------------------------------------- /tests/checks/oob_mgmt_security_check/mgmtOoB_no_contracts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/oob_mgmt_security_check/mgmtOoB_no_contracts.json -------------------------------------------------------------------------------- /tests/checks/oob_mgmt_security_check/test_oob_mgmt_security_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/oob_mgmt_security_check/test_oob_mgmt_security_check.py -------------------------------------------------------------------------------- /tests/checks/out_of_service_ports_check/ethpmPhysIf-neg.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/out_of_service_ports_check/ethpmPhysIf-pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/out_of_service_ports_check/ethpmPhysIf-pos.json -------------------------------------------------------------------------------- /tests/checks/out_of_service_ports_check/test_out_of_service_ports_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/out_of_service_ports_check/test_out_of_service_ports_check.py -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/access_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/access_policy.json -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/fvAEPg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/fvAEPg.json -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/fvIfConn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/fvIfConn.json -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/infraSetPol_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/infraSetPol_no.json -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/infraSetPol_yes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/infraSetPol_yes.json -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/templates/access_policy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/templates/access_policy.j2 -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/templates/fvAEPg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/templates/fvAEPg.j2 -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/templates/fvIfConn.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/templates/fvIfConn.j2 -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/templates/macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/templates/macros.j2 -------------------------------------------------------------------------------- /tests/checks/overlapping_vlan_pools_check/test_overlapping_vlan_pools_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/overlapping_vlan_pools_check/test_overlapping_vlan_pools_check.py -------------------------------------------------------------------------------- /tests/checks/pbr_high_scale_check/test_pbr_high_scale_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/pbr_high_scale_check/test_pbr_high_scale_check.py -------------------------------------------------------------------------------- /tests/checks/pbr_high_scale_check/vnsAdjacencyDefCont_HIGH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/pbr_high_scale_check/vnsAdjacencyDefCont_HIGH.json -------------------------------------------------------------------------------- /tests/checks/pbr_high_scale_check/vnsAdjacencyDefCont_LOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/pbr_high_scale_check/vnsAdjacencyDefCont_LOW.json -------------------------------------------------------------------------------- /tests/checks/pbr_high_scale_check/vnsSvcRedirEcmpBucketCons_HIGH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/pbr_high_scale_check/vnsSvcRedirEcmpBucketCons_HIGH.json -------------------------------------------------------------------------------- /tests/checks/pbr_high_scale_check/vnsSvcRedirEcmpBucketCons_LOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/pbr_high_scale_check/vnsSvcRedirEcmpBucketCons_LOW.json -------------------------------------------------------------------------------- /tests/checks/post_upgrade_cb_check/moCount_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/post_upgrade_cb_check/moCount_0.json -------------------------------------------------------------------------------- /tests/checks/post_upgrade_cb_check/moCount_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/post_upgrade_cb_check/moCount_10.json -------------------------------------------------------------------------------- /tests/checks/post_upgrade_cb_check/moCount_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/post_upgrade_cb_check/moCount_8.json -------------------------------------------------------------------------------- /tests/checks/post_upgrade_cb_check/test_post_upgrade_cb_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/post_upgrade_cb_check/test_post_upgrade_cb_check.py -------------------------------------------------------------------------------- /tests/checks/prefix_already_in_use_check/faultInst_F0467_prefix-entry-already-in-use_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/prefix_already_in_use_check/faultInst_F0467_prefix-entry-already-in-use_new.json -------------------------------------------------------------------------------- /tests/checks/prefix_already_in_use_check/faultInst_F0467_prefix-entry-already-in-use_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/prefix_already_in_use_check/faultInst_F0467_prefix-entry-already-in-use_old.json -------------------------------------------------------------------------------- /tests/checks/prefix_already_in_use_check/fvCtx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/prefix_already_in_use_check/fvCtx.json -------------------------------------------------------------------------------- /tests/checks/prefix_already_in_use_check/l3extRsEctx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/prefix_already_in_use_check/l3extRsEctx.json -------------------------------------------------------------------------------- /tests/checks/prefix_already_in_use_check/l3extSubnet_no_overlap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/prefix_already_in_use_check/l3extSubnet_no_overlap.json -------------------------------------------------------------------------------- /tests/checks/prefix_already_in_use_check/l3extSubnet_overlap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/prefix_already_in_use_check/l3extSubnet_overlap.json -------------------------------------------------------------------------------- /tests/checks/prefix_already_in_use_check/test_prefix_already_in_use_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/prefix_already_in_use_check/test_prefix_already_in_use_check.py -------------------------------------------------------------------------------- /tests/checks/r_leaf_compatibility_check/fabricNode_no_RL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/r_leaf_compatibility_check/fabricNode_no_RL.json -------------------------------------------------------------------------------- /tests/checks/r_leaf_compatibility_check/fabricNode_with_RL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/r_leaf_compatibility_check/fabricNode_with_RL.json -------------------------------------------------------------------------------- /tests/checks/r_leaf_compatibility_check/infraSetPol_DTF_disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/r_leaf_compatibility_check/infraSetPol_DTF_disabled.json -------------------------------------------------------------------------------- /tests/checks/r_leaf_compatibility_check/infraSetPol_DTF_enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/r_leaf_compatibility_check/infraSetPol_DTF_enabled.json -------------------------------------------------------------------------------- /tests/checks/r_leaf_compatibility_check/infraSetPol_no_DTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/r_leaf_compatibility_check/infraSetPol_no_DTF.json -------------------------------------------------------------------------------- /tests/checks/r_leaf_compatibility_check/test_r_leaf_compatibility_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/r_leaf_compatibility_check/test_r_leaf_compatibility_check.py -------------------------------------------------------------------------------- /tests/checks/rtmap_comm_match_defect_check/rtctrlCtxP_NEG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/rtmap_comm_match_defect_check/rtctrlCtxP_NEG.json -------------------------------------------------------------------------------- /tests/checks/rtmap_comm_match_defect_check/rtctrlCtxP_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/rtmap_comm_match_defect_check/rtctrlCtxP_POS.json -------------------------------------------------------------------------------- /tests/checks/rtmap_comm_match_defect_check/rtctrlSubjP_NEG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/rtmap_comm_match_defect_check/rtctrlSubjP_NEG.json -------------------------------------------------------------------------------- /tests/checks/rtmap_comm_match_defect_check/rtctrlSubjP_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/rtmap_comm_match_defect_check/rtctrlSubjP_POS.json -------------------------------------------------------------------------------- /tests/checks/rtmap_comm_match_defect_check/test_rtmap_comm_match_defect_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/rtmap_comm_match_defect_check/test_rtmap_comm_match_defect_check.py -------------------------------------------------------------------------------- /tests/checks/service_bd_forceful_routing_check/fvRtEPpInfoToBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/service_bd_forceful_routing_check/fvRtEPpInfoToBD.json -------------------------------------------------------------------------------- /tests/checks/service_bd_forceful_routing_check/test_service_bd_forceful_routing_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/service_bd_forceful_routing_check/test_service_bd_forceful_routing_check.py -------------------------------------------------------------------------------- /tests/checks/stale_decomissioned_spine_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/stale_decomissioned_spine_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/stale_decomissioned_spine_check/fabricRsDecommissionNode_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/stale_decomissioned_spine_check/fabricRsDecommissionNode_POS.json -------------------------------------------------------------------------------- /tests/checks/stale_decomissioned_spine_check/test_stale_decomissioned_spine_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/stale_decomissioned_spine_check/test_stale_decomissioned_spine_check.py -------------------------------------------------------------------------------- /tests/checks/standby_sup_sync_check/eqptSupC_NEG.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/standby_sup_sync_check/eqptSupC_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/standby_sup_sync_check/eqptSupC_POS.json -------------------------------------------------------------------------------- /tests/checks/standby_sup_sync_check/test_standby_sup_sync_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/standby_sup_sync_check/test_standby_sup_sync_check.py -------------------------------------------------------------------------------- /tests/checks/static_route_overlap_check/fvRsCtx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/static_route_overlap_check/fvRsCtx.json -------------------------------------------------------------------------------- /tests/checks/static_route_overlap_check/fvSubnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/static_route_overlap_check/fvSubnet.json -------------------------------------------------------------------------------- /tests/checks/static_route_overlap_check/ipRouteP_empty.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /tests/checks/static_route_overlap_check/ipRouteP_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/static_route_overlap_check/ipRouteP_neg.json -------------------------------------------------------------------------------- /tests/checks/static_route_overlap_check/ipRouteP_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/static_route_overlap_check/ipRouteP_pos.json -------------------------------------------------------------------------------- /tests/checks/static_route_overlap_check/l3extRsEctx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/static_route_overlap_check/l3extRsEctx.json -------------------------------------------------------------------------------- /tests/checks/static_route_overlap_check/test_static_route_overlap_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/static_route_overlap_check/test_static_route_overlap_check.py -------------------------------------------------------------------------------- /tests/checks/subnet_scope_check/fvAEPg_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/subnet_scope_check/fvAEPg_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/subnet_scope_check/fvAEPg_neg.json -------------------------------------------------------------------------------- /tests/checks/subnet_scope_check/fvAEPg_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/subnet_scope_check/fvAEPg_pos.json -------------------------------------------------------------------------------- /tests/checks/subnet_scope_check/fvBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/subnet_scope_check/fvBD.json -------------------------------------------------------------------------------- /tests/checks/subnet_scope_check/fvRsBd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/subnet_scope_check/fvRsBd.json -------------------------------------------------------------------------------- /tests/checks/subnet_scope_check/test_subnet_scope_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/subnet_scope_check/test_subnet_scope_check.py -------------------------------------------------------------------------------- /tests/checks/sup_a_high_memory_check/eqptSupC_SUP_A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/sup_a_high_memory_check/eqptSupC_SUP_A.json -------------------------------------------------------------------------------- /tests/checks/sup_a_high_memory_check/eqptSupC_SUP_A_Aplus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/sup_a_high_memory_check/eqptSupC_SUP_A_Aplus.json -------------------------------------------------------------------------------- /tests/checks/sup_a_high_memory_check/eqptSupC_SUP_Aplus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/sup_a_high_memory_check/eqptSupC_SUP_Aplus.json -------------------------------------------------------------------------------- /tests/checks/sup_a_high_memory_check/eqptSupC_no_SUP_A_Aplus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/sup_a_high_memory_check/eqptSupC_no_SUP_A_Aplus.json -------------------------------------------------------------------------------- /tests/checks/sup_a_high_memory_check/test_sup_a_high_memory_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/sup_a_high_memory_check/test_sup_a_high_memory_check.py -------------------------------------------------------------------------------- /tests/checks/sup_hwrev_check/eqptSpCmnBlk_NEG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/sup_hwrev_check/eqptSpCmnBlk_NEG.json -------------------------------------------------------------------------------- /tests/checks/sup_hwrev_check/eqptSpCmnBlk_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/sup_hwrev_check/eqptSpCmnBlk_POS.json -------------------------------------------------------------------------------- /tests/checks/sup_hwrev_check/test_sup_hwrev_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/sup_hwrev_check/test_sup_hwrev_check.py -------------------------------------------------------------------------------- /tests/checks/switch_bootflash_usage_check/eqptcapacityFSPartition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_bootflash_usage_check/eqptcapacityFSPartition.json -------------------------------------------------------------------------------- /tests/checks/switch_bootflash_usage_check/maintUpgJob_not_downloaded.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/switch_bootflash_usage_check/maintUpgJob_old_ver_no_prop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_bootflash_usage_check/maintUpgJob_old_ver_no_prop.json -------------------------------------------------------------------------------- /tests/checks/switch_bootflash_usage_check/maintUpgJob_pre_downloaded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_bootflash_usage_check/maintUpgJob_pre_downloaded.json -------------------------------------------------------------------------------- /tests/checks/switch_bootflash_usage_check/test_switch_bootflash_usage_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_bootflash_usage_check/test_switch_bootflash_usage_check.py -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/bgpRRNodePEp_1001_1002_2001_2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/bgpRRNodePEp_1001_1002_2001_2002.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/fabricExplicitGEp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/fabricExplicitGEp.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/l3extRsNodeL3OutAtt_1001_1002_2001_2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/l3extRsNodeL3OutAtt_1001_1002_2001_2002.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/l3extRsNodeL3OutAtt_1003_1004_2001_2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/l3extRsNodeL3OutAtt_1003_1004_2001_2002.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/lldpCtrlrAdjEp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/lldpCtrlrAdjEp.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/maintMaintGrp_ALL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/maintMaintGrp_ALL.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/maintMaintGrp_BAD_GRP1_GRP2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/maintMaintGrp_BAD_GRP1_GRP2.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/maintMaintGrp_BAD_ONLY_POD1_SPINE_RR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/maintMaintGrp_BAD_ONLY_POD1_SPINE_RR.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/maintMaintGrp_EVEN_ODD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/maintMaintGrp_EVEN_ODD.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/maintMaintGrp_SPINE_LEAF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/maintMaintGrp_SPINE_LEAF.json -------------------------------------------------------------------------------- /tests/checks/switch_group_guideline_check/test_switch_group_guideline_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_group_guideline_check/test_switch_group_guideline_check.py -------------------------------------------------------------------------------- /tests/checks/switch_ssd_check/faultInst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_ssd_check/faultInst.json -------------------------------------------------------------------------------- /tests/checks/switch_ssd_check/test_switch_ssd_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_ssd_check/test_switch_ssd_check.py -------------------------------------------------------------------------------- /tests/checks/switch_status_check/fabricNode_NEG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_status_check/fabricNode_NEG.json -------------------------------------------------------------------------------- /tests/checks/switch_status_check/fabricNode_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_status_check/fabricNode_POS.json -------------------------------------------------------------------------------- /tests/checks/switch_status_check/fabricRsDecommissionNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_status_check/fabricRsDecommissionNode.json -------------------------------------------------------------------------------- /tests/checks/switch_status_check/test_switch_status_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/switch_status_check/test_switch_status_check.py -------------------------------------------------------------------------------- /tests/checks/telemetryStatsServerP_object_check/telemetryStatsServerP_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/telemetryStatsServerP_object_check/telemetryStatsServerP_neg.json -------------------------------------------------------------------------------- /tests/checks/telemetryStatsServerP_object_check/telemetryStatsServerP_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/telemetryStatsServerP_object_check/telemetryStatsServerP_pos.json -------------------------------------------------------------------------------- /tests/checks/telemetryStatsServerP_object_check/test_telemetryStatsServerP_object_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/telemetryStatsServerP_object_check/test_telemetryStatsServerP_object_check.py -------------------------------------------------------------------------------- /tests/checks/tep-to-tep_atomic_counter_check/dbgAcPath_max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/tep-to-tep_atomic_counter_check/dbgAcPath_max.json -------------------------------------------------------------------------------- /tests/checks/tep-to-tep_atomic_counter_check/dbgAcPath_na.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/tep-to-tep_atomic_counter_check/dbgAcPath_na.json -------------------------------------------------------------------------------- /tests/checks/tep-to-tep_atomic_counter_check/dbgAcPath_pass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/tep-to-tep_atomic_counter_check/dbgAcPath_pass.json -------------------------------------------------------------------------------- /tests/checks/tep-to-tep_atomic_counter_check/test_tep_to_tep_ac_count_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/tep-to-tep_atomic_counter_check/test_tep_to_tep_ac_count_check.py -------------------------------------------------------------------------------- /tests/checks/unsupported_fec_configuration_ex_check/test_unsupported_fec_configuration_ex_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/unsupported_fec_configuration_ex_check/test_unsupported_fec_configuration_ex_check.py -------------------------------------------------------------------------------- /tests/checks/unsupported_fec_configuration_ex_check/topSystem_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/unsupported_fec_configuration_ex_check/topSystem_neg.json -------------------------------------------------------------------------------- /tests/checks/unsupported_fec_configuration_ex_check/topSystem_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/unsupported_fec_configuration_ex_check/topSystem_pos.json -------------------------------------------------------------------------------- /tests/checks/uplink_limit_check/eqptPortP_NEG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/uplink_limit_check/eqptPortP_NEG.json -------------------------------------------------------------------------------- /tests/checks/uplink_limit_check/eqptPortP_POS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/uplink_limit_check/eqptPortP_POS.json -------------------------------------------------------------------------------- /tests/checks/uplink_limit_check/eqptPortP_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/uplink_limit_check/test_uplink_limit_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/uplink_limit_check/test_uplink_limit_check.py -------------------------------------------------------------------------------- /tests/checks/validate_32_64_bit_image_check/firmwareFirmware_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/validate_32_64_bit_image_check/firmwareFirmware_neg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/validate_32_64_bit_image_check/firmwareFirmware_neg.json -------------------------------------------------------------------------------- /tests/checks/validate_32_64_bit_image_check/firmwareFirmware_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/validate_32_64_bit_image_check/firmwareFirmware_pos.json -------------------------------------------------------------------------------- /tests/checks/validate_32_64_bit_image_check/firmwareFirmware_pos2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/validate_32_64_bit_image_check/firmwareFirmware_pos2.json -------------------------------------------------------------------------------- /tests/checks/validate_32_64_bit_image_check/firmwareFirmware_pos3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/validate_32_64_bit_image_check/firmwareFirmware_pos3.json -------------------------------------------------------------------------------- /tests/checks/validate_32_64_bit_image_check/firmwareFirmware_pos4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/validate_32_64_bit_image_check/firmwareFirmware_pos4.json -------------------------------------------------------------------------------- /tests/checks/validate_32_64_bit_image_check/test_validate_32_64_bit_image_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/validate_32_64_bit_image_check/test_validate_32_64_bit_image_check.py -------------------------------------------------------------------------------- /tests/checks/vmm_active_uplinks_check/fvUplinkOrderCont_neg.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/checks/vmm_active_uplinks_check/fvUplinkOrderCont_not_exist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vmm_active_uplinks_check/fvUplinkOrderCont_not_exist.json -------------------------------------------------------------------------------- /tests/checks/vmm_active_uplinks_check/fvUplinkOrderCont_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vmm_active_uplinks_check/fvUplinkOrderCont_pos.json -------------------------------------------------------------------------------- /tests/checks/vmm_active_uplinks_check/test_vmm_active_uplinks_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vmm_active_uplinks_check/test_vmm_active_uplinks_check.py -------------------------------------------------------------------------------- /tests/checks/vmm_inventory_partial_sync/faultInst_neg.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/checks/vmm_inventory_partial_sync/faultInst_neg1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vmm_inventory_partial_sync/faultInst_neg1.json -------------------------------------------------------------------------------- /tests/checks/vmm_inventory_partial_sync/faultInst_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vmm_inventory_partial_sync/faultInst_pos.json -------------------------------------------------------------------------------- /tests/checks/vmm_inventory_partial_sync/faultInst_pos2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vmm_inventory_partial_sync/faultInst_pos2.json -------------------------------------------------------------------------------- /tests/checks/vmm_inventory_partial_sync/test_vmm_inventory_partial_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vmm_inventory_partial_sync/test_vmm_inventory_partial_sync.py -------------------------------------------------------------------------------- /tests/checks/vpc_paired_switches_check/fabricNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vpc_paired_switches_check/fabricNode.json -------------------------------------------------------------------------------- /tests/checks/vpc_paired_switches_check/test_vpc_paired_switches_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vpc_paired_switches_check/test_vpc_paired_switches_check.py -------------------------------------------------------------------------------- /tests/checks/vzany_vzany_service_epg_check/test_vzany_vzany_service_epg_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vzany_vzany_service_epg_check/test_vzany_vzany_service_epg_check.py -------------------------------------------------------------------------------- /tests/checks/vzany_vzany_service_epg_check/vzRsSubjGraphAtt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vzany_vzany_service_epg_check/vzRsSubjGraphAtt.json -------------------------------------------------------------------------------- /tests/checks/vzany_vzany_service_epg_check/vzRtAny_vzAny_prov_cons_diff_VRFs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vzany_vzany_service_epg_check/vzRtAny_vzAny_prov_cons_diff_VRFs.json -------------------------------------------------------------------------------- /tests/checks/vzany_vzany_service_epg_check/vzRtAny_vzAny_prov_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vzany_vzany_service_epg_check/vzRtAny_vzAny_prov_only.json -------------------------------------------------------------------------------- /tests/checks/vzany_vzany_service_epg_check/vzRtAny_vzAny_vzAny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vzany_vzany_service_epg_check/vzRtAny_vzAny_vzAny.json -------------------------------------------------------------------------------- /tests/checks/vzany_vzany_service_epg_check/vzRtAny_vzAny_vzAny_2_VRFs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/checks/vzany_vzany_service_epg_check/vzRtAny_vzAny_vzAny_2_VRFs.json -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/requirements-py27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/requirements-py27.txt -------------------------------------------------------------------------------- /tests/requirements-py38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/requirements-py38.txt -------------------------------------------------------------------------------- /tests/test_AciResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_AciResult.py -------------------------------------------------------------------------------- /tests/test_AciVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_AciVersion.py -------------------------------------------------------------------------------- /tests/test_CheckManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_CheckManager.py -------------------------------------------------------------------------------- /tests/test_IPAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_IPAddress.py -------------------------------------------------------------------------------- /tests/test_ResultManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_ResultManager.py -------------------------------------------------------------------------------- /tests/test_ThreadManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_ThreadManager.py -------------------------------------------------------------------------------- /tests/test_common_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_common_data.py -------------------------------------------------------------------------------- /tests/test_get_vpc_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_get_vpc_node.py -------------------------------------------------------------------------------- /tests/test_icurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_icurl.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_parse_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_parse_args.py -------------------------------------------------------------------------------- /tests/test_run_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/ACI-Pre-Upgrade-Validation-Script/HEAD/tests/test_run_cmd.py --------------------------------------------------------------------------------