mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
62b4efb3e7
* Document the ability to specify http or https urls in `-auth.config` at docs/CHANGELOG.md * Move the ReadFileOrHTTP to lib/fs, so it can be re-used in other places where a file should be read from the given path. For example, in `-promscrape.config` at `vmagent`.
39 lines
1,003 B
Go
39 lines
1,003 B
Go
package fs
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestIsTemporaryFileName(t *testing.T) {
|
|
f := func(s string, resultExpected bool) {
|
|
t.Helper()
|
|
result := IsTemporaryFileName(s)
|
|
if result != resultExpected {
|
|
t.Fatalf("unexpected IsTemporaryFileName(%q); got %v; want %v", s, result, resultExpected)
|
|
}
|
|
}
|
|
f("", false)
|
|
f(".", false)
|
|
f(".tmp", false)
|
|
f("tmp.123", false)
|
|
f(".tmp.123.xx", false)
|
|
f(".tmp.1", true)
|
|
f("asdf.dff.tmp.123", true)
|
|
f("asdf.sdfds.tmp.dfd", false)
|
|
f("dfd.sdfds.dfds.1232", false)
|
|
}
|
|
|
|
func TestIsHTTPURLSuccess(t *testing.T) {
|
|
f := func(s string, expected bool) {
|
|
t.Helper()
|
|
res := isHTTPURL(s)
|
|
if res != expected {
|
|
t.Fatalf("expecting %t, got %t", expected, res)
|
|
}
|
|
}
|
|
f("http://isvalid:8000/filepath", true) // test http
|
|
f("https://isvalid:8000/filepath", true) // test https
|
|
f("tcp://notvalid:8000/filepath", false) // test tcp
|
|
f("0/filepath", false) // something invalid
|
|
f("filepath.extension", false) // something invalid
|
|
}
|