Skip to content

Commit d141806

Browse files
committed
Fix batch tests
1 parent d46879d commit d141806

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

checks/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ def get_web_api_details(self):
679679
"protocols_phase_out": self.protocols_phase_out,
680680
"compression": self.compression,
681681
"secure_reneg": self.secure_reneg,
682-
"client_reneg": self.client_reneg,
682+
"client_reneg": self.client_reneg.name,
683683
"zero_rtt": self.zero_rtt.name,
684684
"ocsp_stapling": self.ocsp_stapling.name,
685685
"kex_hash_func": self.kex_hash_func.name,
@@ -717,7 +717,7 @@ def get_mail_api_details(self):
717717
"protocols_phase_out": self.protocols_phase_out,
718718
"compression": self.compression,
719719
"secure_reneg": self.secure_reneg,
720-
"client_reneg": self.client_reneg,
720+
"client_reneg": self.client_reneg.name,
721721
"zero_rtt": self.zero_rtt.name,
722722
"kex_hash_func": self.kex_hash_func.name,
723723
"key_exchange_rsa_pkcs": self.key_exchange_rsa_pkcs.name,

integration_tests/batch/results.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
"web_https_http_compress": {"status": "passed", "verdict": "good"},
2727
"web_https_tls_keyexchange": {"status": "passed", "verdict": "good"},
2828
"web_https_tls_ciphers": {"status": "passed", "verdict": "good"},
29-
"web_https_tls_cipherorder": {"status": "passed", "verdict": "na"},
29+
"web_https_tls_cipherorder": {"status": "passed", "verdict": "good"},
3030
"web_https_tls_version": {"status": "passed", "verdict": "good"},
3131
"web_https_tls_compress": {"status": "passed", "verdict": "good"},
3232
"web_https_tls_secreneg": {"status": "passed", "verdict": "good"},
33-
"web_https_tls_clientreneg": {"status": "passed", "verdict": "good"},
33+
"web_https_tls_clientreneg": {"status": "passed", "verdict": "not-allowed"},
3434
"web_https_cert_chain": {"status": "failed", "verdict": "bad"},
3535
"web_https_cert_pubkey": {"status": "passed", "verdict": "good"},
3636
"web_https_cert_sig": {"status": "passed", "verdict": "good"},
@@ -72,16 +72,18 @@
7272
"kex_params_phase_out": [],
7373
"ciphers_bad": [],
7474
"ciphers_phase_out": [],
75-
"cipher_order": "na",
75+
"cipher_order": "good",
7676
"cipher_order_violation": [],
7777
"protocols_bad": [],
7878
"protocols_phase_out": [],
7979
"compression": False,
8080
"secure_reneg": True,
81-
"client_reneg": False,
81+
"client_reneg": "not_allowed",
8282
"zero_rtt": "good",
8383
"ocsp_stapling": "not_in_cert",
8484
"kex_hash_func": "good",
85+
"extended_master_secret": "supported",
86+
"key_exchange_rsa_pkcs": "good",
8587
"https_redirect": "good",
8688
"http_compression": False,
8789
"hsts": True,
@@ -136,16 +138,18 @@
136138
"kex_params_phase_out": [],
137139
"ciphers_bad": [],
138140
"ciphers_phase_out": [],
139-
"cipher_order": "na",
141+
"cipher_order": "good",
140142
"cipher_order_violation": [],
141143
"protocols_bad": [],
142144
"protocols_phase_out": [],
143145
"compression": False,
144146
"secure_reneg": True,
145-
"client_reneg": False,
147+
"client_reneg": "not_allowed",
146148
"zero_rtt": "good",
147149
"ocsp_stapling": "not_in_cert",
148150
"kex_hash_func": "good",
151+
"extended_master_secret": "supported",
152+
"key_exchange_rsa_pkcs": "good",
149153
"https_redirect": "good",
150154
"http_compression": False,
151155
"hsts": True,

0 commit comments

Comments
 (0)