(self, env)
| 80 | |
| 81 | # test if switching status off has effect |
| 82 | def test_md_920_003(self, env): |
| 83 | domain = self.test_domain |
| 84 | domains = [domain] |
| 85 | conf = MDConf(env) |
| 86 | conf.add_md(domains) |
| 87 | conf.add("MDCertificateStatus off") |
| 88 | conf.add_vhost(domain) |
| 89 | conf.install() |
| 90 | assert env.apache_restart() == 0, f'{env.apachectl_stderr}' |
| 91 | assert env.await_completion([domain], restart=False) |
| 92 | status = env.get_certificate_status(domain) |
| 93 | assert not status |
| 94 | |
| 95 | def test_md_920_004(self, env): |
| 96 | domain = self.test_domain |
nothing calls this directly
no test coverage detected