⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.91
Server IP:
217.21.90.168
Server:
Linux in-mum-web840.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
opt
/
golang
/
1.17.2
/
src
/
mime
/
View File Name :
type_unix_test.go
// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build aix || darwin || dragonfly || freebsd || (js && wasm) || linux || netbsd || openbsd || solaris // +build aix darwin dragonfly freebsd js,wasm linux netbsd openbsd solaris package mime import ( "testing" ) func initMimeUnixTest(t *testing.T) { err := loadMimeGlobsFile("testdata/test.types.globs2") if err != nil { t.Fatal(err) } loadMimeFile("testdata/test.types") } func TestTypeByExtensionUNIX(t *testing.T) { initMimeUnixTest(t) typeTests := map[string]string{ ".T1": "application/test", ".t2": "text/test; charset=utf-8", ".t3": "document/test", ".t4": "example/test", ".png": "image/png", } for ext, want := range typeTests { val := TypeByExtension(ext) if val != want { t.Errorf("TypeByExtension(%q) = %q, want %q", ext, val, want) } } }