Add AP model WF188N, bug fix on RADIUS profile create

This commit is contained in:
bealler
2021-01-29 16:03:58 -05:00
parent f82e2185fe
commit abbc1476d3
4 changed files with 203 additions and 21 deletions

View File

@@ -239,7 +239,7 @@ parser.add_argument("-i", "--ignore", type=str, default='no', choices=['yes', 'n
help="Set to 'no' to ignore current running version on AP and run sanity including upgrade")
parser.add_argument("-r", "--report", type=str, default=report_path,
help="Report directory path other than default - directory must already exist!")
parser.add_argument("-m", "--model", type=str, choices=['ea8300', 'ecw5410', 'ecw5211', 'ec420'],
parser.add_argument("-m", "--model", type=str, choices=['ea8300', 'ecw5410', 'ecw5211', 'ec420', "wf188n"],
help="AP model to be run")
parser.add_argument("--tr_prefix", type=str, default=testRunPrefix, help="Testrail test run prefix override (default is Env variable)")
parser.add_argument("--skip_upgrade", dest="skip_upgrade", action='store_true', help="Skip Upgrade testing")
@@ -393,7 +393,7 @@ for key in equipment_ids:
fw_model = ap_cli_fw.partition("-")[0]
print('Current Active AP FW from CLI:', ap_cli_fw)
print(fw_model)
###Find Latest FW for Current AP Model and Get FW ID
##Compare Latest and Current AP FW and Upgrade
@@ -440,7 +440,6 @@ for key in equipment_ids:
if args.skip_bridge == True:
for x in test_cases:
if "bridge" in x:
print(x)
case_ids.remove(test_cases[x])
else:
pass
@@ -1251,8 +1250,7 @@ for key in equipment_ids:
if args.skip_eap != True:
radiusProfileId = radius_profile
child_profiles = [fiveG_eap, fiveG_wpa2, fiveG_wpa, twoFourG_eap, twoFourG_wpa2, twoFourG_wpa,
rfProfileId,
radiusProfileId]
rfProfileId]
print(child_profiles)
else:
child_profiles = [fiveG_wpa2, fiveG_wpa, twoFourG_wpa2, twoFourG_wpa, rfProfileId]

View File

@@ -1,7 +1,7 @@
#!/usr/bin/python3
##AP Models Under Test
ap_models = ["ec420","ea8300","ecw5211","ecw5410"]
ap_models = ["ec420","ea8300","ecw5211","ecw5410","wf188n"]
##Cloud Type(cloudSDK = v1, CMAP = cmap)
cloud_type = "v1"
@@ -30,28 +30,32 @@ cloud_sdk_models = {
"ec420": "EC420-G1",
"ea8300": "EA8300-CA",
"ecw5211": "ECW5211",
"ecw5410": "ECW5410"
"ecw5410": "ECW5410",
"wf188n": "WF188N"
}
mimo_5g = {
"ec420": "4x4",
"ea8300": "2x2",
"ecw5211": "2x2",
"ecw5410": "4x4"
"ecw5410": "4x4",
"wf188n": "2x2"
}
mimo_2dot4g = {
"ec420": "2x2",
"ea8300": "2x2",
"ecw5211": "2x2",
"ecw5410": "4x4"
"ecw5410": "4x4",
"wf188n": "2x2"
}
sanity_status = {
"ea8300": "failed",
"ecw5211": 'passed',
"ecw5410": 'failed',
"ec420": 'failed'
"ec420": 'failed',
"wf188n": "failed"
}
##Customer ID for testing
@@ -62,21 +66,24 @@ equipment_id_dict = {
"ea8300": "115",
"ecw5410": "116",
"ecw5211": "117",
"ec420": "27"
"ec420": "27",
"wf188n": "127"
}
equipment_ip_dict = {
"ea8300": "10.10.10.103",
"ecw5410": "10.10.10.105",
"ec420": "10.10.10.104",
"ecw5211": "10.10.10.102"
"ecw5211": "10.10.10.102",
"wf188n": "10.10.10.179"
}
eqiupment_credentials_dict = {
"ea8300": "openwifi",
"ecw5410": "openwifi",
"ec420": "openwifi",
"ecw5211": "admin123"
"ecw5211": "admin123",
"wf188n": "openwifi"
}
##Test Case information - Maps a generic TC name to TestRail TC numbers
@@ -301,6 +308,45 @@ profile_info_dict = {
]
},
"wf188n": {
"profile_id": "3724",
"childProfileIds": [
3718,
3719,
3720,
3721,
3722,
3723,
10
],
"fiveG_WPA2_SSID": "WF188N_5G_WPA2",
"fiveG_WPA2_PSK": "Connectus123$",
"fiveG_WPA_SSID": "WF188N_5G_WPA",
"fiveG_WPA_PSK": "Connectus123$",
"fiveG_OPEN_SSID": "WF188N_5G_OPEN",
"fiveG_WPA2-EAP_SSID": "WF188N_5G_WPA2-EAP",
"twoFourG_OPEN_SSID": "WF188N_2dot4G_OPEN",
"twoFourG_WPA2_SSID": "WF188N_2dot4G_WPA2",
"twoFourG_WPA2_PSK": "Connectus123$",
"twoFourG_WPA_SSID": "WF188N_2dot4G_WPA",
"twoFourG_WPA_PSK": "Connectus123$",
"twoFourG_WPA2-EAP_SSID": "WF188N_2dot4G_WPA2-EAP",
"fiveG_WPA2_profile": 3719,
"fiveG_WPA_profile": 3720,
"fiveG_WPA2-EAP_profile": 3718,
"twoFourG_WPA2_profile": 3722,
"twoFourG_WPA_profile": 3723,
"twoFourG_WPA2-EAP_profile": 3721,
"ssid_list": [
"WF188N_5G_WPA2",
"WF188N_5G_WPA",
"WF188N_5G_WPA2-EAP",
"WF188N_2dot4G_WPA2",
"WF188N_2dot4G_WPA",
"WF188N_2dot4G_WPA2-EAP"
]
},
"ecw5410_nat": {
"profile_id": "68",
"childProfileIds": [
@@ -461,6 +507,45 @@ profile_info_dict = {
]
},
"wf188n_nat": {
"profile_id": "3732",
"childProfileIds": [
3728,
3729,
3730,
3731,
10,
3726,
3727
],
"fiveG_WPA2_SSID": "WF188N_5G_WPA2_NAT",
"fiveG_WPA2_PSK": "Connectus123$",
"fiveG_WPA_SSID": "WF188N_5G_WPA_NAT",
"fiveG_WPA_PSK": "Connectus123$",
"fiveG_OPEN_SSID": "WF188N_5G_OPEN_NAT",
"fiveG_WPA2-EAP_SSID": "WF188N_5G_WPA2-EAP_NAT",
"twoFourG_OPEN_SSID": "WF188N_2dot4G_OPEN_NAT",
"twoFourG_WPA2_SSID": "WF188N_2dot4G_WPA2_NAT",
"twoFourG_WPA2_PSK": "Connectus123$",
"twoFourG_WPA_SSID": "WF188N_2dot4G_WPA_NAT",
"twoFourG_WPA_PSK": "Connectus123$",
"twoFourG_WPA2-EAP_SSID": "WF188N_2dot4G_WPA2-EAP_NAT",
"fiveG_WPA2_profile": 3727,
"fiveG_WPA_profile": 3728,
"fiveG_WPA2-EAP_profile": 3726,
"twoFourG_WPA2_profile": 3730,
"twoFourG_WPA_profile": 3731,
"twoFourG_WPA2-EAP_profile": 3729,
"ssid_list": [
"WF188N_5G_WPA2_NAT",
"WF188N_5G_WPA_NAT",
"WF188N_5G_WPA2-EAP_NAT",
"WF188N_2dot4G_WPA2_NAT",
"WF188N_2dot4G_WPA_NAT",
"WF188N_2dot4G_WPA2-EAP_NAT"
]
},
"ecw5410_vlan": {
"profile_id": "338",
"childProfileIds": [
@@ -619,5 +704,44 @@ profile_info_dict = {
"ECW5211_2dot4G_WPA_VLAN",
"ECW5211_2dot4G_WPA2-EAP_VLAN"
]
},
"wf188n_vlan": {
"profile_id": "3740",
"childProfileIds": [
3734,
3735,
3736,
3737,
3738,
10,
3739
],
"fiveG_WPA2_SSID": "WF188N_5G_WPA2_VLAN",
"fiveG_WPA2_PSK": "Connectus123$",
"fiveG_WPA_SSID": "WF188N_5G_WPA_VLAN",
"fiveG_WPA_PSK": "Connectus123$",
"fiveG_OPEN_SSID": "WF188N_5G_OPEN_VLAN",
"fiveG_WPA2-EAP_SSID": "WF188N_5G_WPA2-EAP_VLAN",
"twoFourG_OPEN_SSID": "WF188N_2dot4G_OPEN_VLAN",
"twoFourG_WPA2_SSID": "WF188N_2dot4G_WPA2_VLAN",
"twoFourG_WPA2_PSK": "Connectus123$",
"twoFourG_WPA_SSID": "WF188N_2dot4G_WPA_VLAN",
"twoFourG_WPA_PSK": "Connectus123$",
"twoFourG_WPA2-EAP_SSID": "WF188N_2dot4G_WPA2-EAP_VLAN",
"fiveG_WPA2_profile": 3738,
"fiveG_WPA_profile": 3739,
"fiveG_WPA2-EAP_profile": 3737,
"twoFourG_WPA2_profile": 3722,
"twoFourG_WPA_profile": 3723,
"twoFourG_WPA2-EAP_profile": 3721,
"ssid_list": [
"WF188N_5G_WPA2_VLAN",
"WF188N_5G_WPA_VLAN",
"WF188N_5G_WPA2-EAP_VLAN",
"WF188N_2dot4G_WPA2_VLAN",
"WF188N_2dot4G_WPA_VLAN",
"WF188N_2dot4G_WPA2-EAP_VLAN"
]
}
}

View File

@@ -46,7 +46,7 @@ $json = json_decode($results, true);
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="4" CELLSPACING="3" Style="background-color: lightgray; font-size:16px">
<TR>
<TH COLSPAN="7"><BR><H3>Test Results</H3>
<TH COLSPAN="8"><BR><H3>Test Results</H3>
</TH>
</TR>
<TR>
@@ -56,6 +56,7 @@ $json = json_decode($results, true);
<TH WIDTH="150px">ECW5211 Result</TH>
<TH WIDTH="150px">ECW5410 Result</TH>
<TH WIDTH="150px">EC420 Result</TH>
<TH WIDTH="150px">WF188N Result</TH>
</TR>
<TR ALIGN="CENTER">
@@ -64,6 +65,7 @@ $json = json_decode($results, true);
<TD style="font-weight:bold"><?php echo print_r($json['fw_available']['ecw5211'],true) ?></TD>
<TD style="font-weight:bold"><?php echo print_r($json['fw_available']['ecw5410'],true) ?></TD>
<TD style="font-weight:bold"><?php echo print_r($json['fw_available']['ec420'],true) ?></TD>
<TD style="font-weight:bold"><?php echo print_r($json['fw_available']['wf188n'],true) ?></TD>
</TR>
<TR ALIGN="CENTER" style="font-weight:bold">
@@ -72,6 +74,7 @@ $json = json_decode($results, true);
<TD style="font-size:12px"><?php echo print_r($json['fw_under_test']['ecw5211'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['fw_under_test']['ecw5410'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['fw_under_test']['ec420'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['fw_under_test']['wf188n'],true) ?></TD>
</TR>
<TR ALIGN="CENTER" style="font-weight:bold">
@@ -80,6 +83,7 @@ $json = json_decode($results, true);
<TD style="font-size:12px"><?php echo print_r($json['cloud_sdk']['ecw5211']['date'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['cloud_sdk']['ecw5410']['date'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['cloud_sdk']['ec420']['date'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['cloud_sdk']['wf188n']['date'],true) ?></TD>
</TR>
<TR ALIGN="CENTER" style="font-weight:bold">
@@ -88,6 +92,7 @@ $json = json_decode($results, true);
<TD style="font-size:10px"><?php echo print_r($json['cloud_sdk']['ecw5211']['commitId'],true) ?></TD>
<TD style="font-size:10px"><?php echo print_r($json['cloud_sdk']['ecw5410']['commitId'],true) ?></TD>
<TD style="font-size:10px"><?php echo print_r($json['cloud_sdk']['ec420']['commitId'],true) ?></TD>
<TD style="font-size:10px"><?php echo print_r($json['cloud_sdk']['wf188n']['commitId'],true) ?></TD>
</TR>
<TR ALIGN="CENTER" style="font-weight:bold">
@@ -96,6 +101,7 @@ $json = json_decode($results, true);
<TD style="font-size:12px"><?php echo print_r($json['cloud_sdk']['ecw5211']['projectVersion'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['cloud_sdk']['ecw5410']['projectVersion'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['cloud_sdk']['ec420']['projectVersion'],true) ?></TD>
<TD style="font-size:12px"><?php echo print_r($json['cloud_sdk']['wf188n']['projectVersion'],true) ?></TD>
</TR>
<TR ALIGN="CENTER" style="font-weight:bold">
@@ -104,16 +110,18 @@ $json = json_decode($results, true);
<TD style="font-size:14px"><?php echo print_r($json['pass_percent']['ecw5211'],true) ?></TD>
<TD style="font-size:14px"><?php echo print_r($json['pass_percent']['ecw5410'],true) ?></TD>
<TD style="font-size:14px"><?php echo print_r($json['pass_percent']['ec420'],true) ?></TD>
<TD style="font-size:14px"><?php echo print_r($json['pass_percent']['wf188n'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TH>Test Case</TH>
<TH WIDTH= 7%">Category</TH>
<TH WIDTH= 7%>Category</TH>
<TH>Description</TH>
<TH></TH>
<TH></TH>
<TH></TH>
<TH></TH>
<TH></TH>
<TR ALIGN="CENTER">
<TD>5540</TD>
@@ -123,6 +131,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5540'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5540'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5540'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5540'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -133,6 +142,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5548'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5548'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5548'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5548'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -143,6 +153,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5547'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5547'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5547'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5547'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -153,6 +164,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['2233'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['2233'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['2233'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['2233'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -163,6 +175,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5247'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5247'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5247'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5247'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -173,6 +186,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5222'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5222'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5222'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5222'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -183,6 +197,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5808'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5808'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5808'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5808'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -193,6 +208,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5644'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5644'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5644'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5644'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -202,7 +218,8 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ea8300']['5645'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5211']['5645'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5645'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5645'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5644'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5644'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -212,7 +229,8 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ea8300']['5646'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5211']['5646'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5646'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5646'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5644'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5644'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -223,6 +241,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5646'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5646'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5646'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5646'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -233,6 +252,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5647'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5647'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5647'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5647'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -243,6 +263,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5648'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5648'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5648'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5648'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -253,6 +274,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5641'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5641'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5641'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5641'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -263,6 +285,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5541'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5541'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5541'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5541'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -273,6 +296,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5544'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5544'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5544'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5544'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -283,6 +307,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5214'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5214'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5214'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5214'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>2237</TD>
@@ -292,6 +317,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['2237'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['2237'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['2237'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['2237'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>2420</TD>
@@ -301,6 +327,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['2420'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['2420'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['2420'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['2420'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>5215</TD>
@@ -310,6 +337,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5215'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5215'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5215'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5215'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>2236</TD>
@@ -319,6 +347,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['2236'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['2236'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['2236'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['2236'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>2419</TD>
@@ -327,7 +356,8 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ea8300']['2419'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5211']['2419'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['2419'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['2419'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['2419'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['2419'],true) ?></TD>
<TR ALIGN="CENTER">
<TD>5650</TD>
@@ -336,7 +366,8 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ea8300']['5650'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5211']['5650'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5650'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5650'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['2419'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['2419'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -347,6 +378,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5651'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5651'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5651'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5651'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -357,6 +389,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5652'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5652'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5652'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5652'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -367,6 +400,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5653'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5653'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5653'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5653'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -377,6 +411,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5654'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5654'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5654'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5654'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -387,6 +422,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5655'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5655'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5655'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5655'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -397,6 +433,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5642'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5642'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5642'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5642'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -407,6 +444,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5542'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5542'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5542'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5542'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -417,6 +455,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5545'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5545'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5545'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5545'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>5216</TD>
@@ -426,6 +465,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5216'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5216'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5216'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5216'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>4325</TD>
@@ -435,6 +475,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['4325'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['4325'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['4325'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['4325'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>4323</TD>
@@ -444,6 +485,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['4323'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['4323'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['4323'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['4323'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>5217</TD>
@@ -453,6 +495,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5217'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5217'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5217'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5217'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>4326</TD>
@@ -462,6 +505,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['4326'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['4326'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['4326'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['4326'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>4324</TD>
@@ -470,7 +514,8 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ea8300']['4324'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5211']['4324'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['4324'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['4324'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['4324'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['4324'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -481,6 +526,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5656'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5656'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5656'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5656'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -491,6 +537,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5657'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5657'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5657'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5657'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -501,6 +548,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5658'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5658'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5658'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5658'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -511,6 +559,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5659'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5659'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5659'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5659'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -521,6 +570,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5660'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5660'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5660'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5659'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -531,6 +581,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5661'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5661'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5661'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5661'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -541,6 +592,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5643'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5643'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5643'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5643'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -551,6 +603,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5543'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5543'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5543'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5543'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -561,6 +614,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5546'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5546'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5546'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5546'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
@@ -571,6 +625,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5253'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5253'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5253'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5253'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>5251</TD>
@@ -580,6 +635,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5251'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5251'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5251'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5251'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>5252</TD>
@@ -589,6 +645,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5252'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5252'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5252'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5252'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>5250</TD>
@@ -598,6 +655,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5250'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5250'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5250'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5250'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>5248</TD>
@@ -607,6 +665,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5248'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5248'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5248'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5248'],true) ?></TD>
</TR>
<TR ALIGN="CENTER">
<TD>5249</TD>
@@ -616,6 +675,7 @@ $json = json_decode($results, true);
<TD><?php echo print_r($json['tests']['ecw5211']['5249'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ecw5410']['5249'],true) ?></TD>
<TD><?php echo print_r($json['tests']['ec420']['5249'],true) ?></TD>
<TD><?php echo print_r($json['tests']['wf188n']['5249'],true) ?></TD>
</TR>
</TABLE>

View File

@@ -1 +1 @@
{"sanity_status": {"ea8300": "failed", "ecw5211": "failed", "ecw5410": "failed", "ec420": "failed"}, "sanity_run": {"new_data": "yes"}}
{"sanity_status": {"ea8300": "failed", "ecw5211": "failed", "ecw5410": "failed", "ec420": "failed", "wf188n": "failed"}, "sanity_run": {"new_data": "yes"}}