1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00

Implement more tests for checker

* Implement testing if the provider-metadata.json is under
/.well-known/csaf/ available.
* Implement testing if the DNS is available and serves the
provider-metadata.json
This commit is contained in:
Fadi Abbud 2022-05-04 15:23:03 +02:00
parent e1f71a5693
commit ea9c6b4502
2 changed files with 95 additions and 14 deletions

View file

@ -119,16 +119,30 @@ func (r *securityReporter) report(p *processor, domain *Domain) {
req.Messages = p.badSecurity
}
func (r *wellknownMetadataReporter) report(_ *processor, domain *Domain) {
// TODO: Implement me!
func (r *wellknownMetadataReporter) report(p *processor, domain *Domain) {
req := r.requirement(domain)
req.message("(Not checked, missing implementation.)")
if !p.badWellknownMetadataReporter.used() {
req.message("No check if provider-metadata.json is under /.well-known/csaf/ was done.")
return
}
if len(p.badWellknownMetadataReporter) == 0 {
req.message("Found /.well-known/csaf/provider-metadata.json")
return
}
req.Messages = p.badWellknownMetadataReporter
}
func (r *dnsPathReporter) report(_ *processor, domain *Domain) {
// TODO: Implement me!
func (r *dnsPathReporter) report(p *processor, domain *Domain) {
req := r.requirement(domain)
req.message("(Not checked, missing implementation.)")
if !p.badDNSPathReporter.used() {
req.message("No csaf.data.security.domain.tld DNS record checked.")
return
}
if len(p.badDNSPathReporter) == 0 {
req.message("csaf.data.security.domain.tld DNS record is available and serves the provider-metadata.json.")
return
}
req.Messages = p.badDNSPathReporter
}
func (r *oneFolderPerYearReport) report(p *processor, domain *Domain) {