(self, stats, name)
| 4216 | return server_context, other_context, client_context |
| 4217 | |
| 4218 | def check_common_name(self, stats, name): |
| 4219 | cert = stats['peercert'] |
| 4220 | self.assertIn((('commonName', name),), cert['subject']) |
| 4221 | |
| 4222 | def test_sni_callback(self): |
| 4223 | calls = [] |
no test coverage detected