18 lines
514 B
Go
18 lines
514 B
Go
package server
|
|
|
|
import "testing"
|
|
|
|
func TestIsSupportedConvertFileName_AcceptsNvidiaBugReportGzip(t *testing.T) {
|
|
if !isSupportedConvertFileName("nvidia-bug-report-1651124000923.log.gz") {
|
|
t.Fatalf("expected .log.gz bug-report to be supported")
|
|
}
|
|
}
|
|
|
|
func TestAnalyzeUploadedFile_RejectsUnsupportedExtension(t *testing.T) {
|
|
s := &Server{}
|
|
_, _, _, err := s.analyzeUploadedFile("unsupported.bin", "application/octet-stream", []byte("abc"))
|
|
if err == nil {
|
|
t.Fatalf("expected unsupported archive error")
|
|
}
|
|
}
|