miniflux-v2/url/url_test.go

98 lines
4.2 KiB
Go
Raw Normal View History

2018-01-12 04:21:20 +01:00
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package url // import "miniflux.app/url"
2017-11-20 06:10:04 +01:00
import "testing"
2018-10-13 03:33:59 +02:00
func TestAbsoluteURL(t *testing.T) {
scenarios := [][]string{
[]string{"https://example.org/path/file.ext", "https://example.org/folder/", "/path/file.ext"},
[]string{"https://example.org/folder/path/file.ext", "https://example.org/folder/", "path/file.ext"},
[]string{"https://example.org/path/file.ext", "https://example.org/folder", "path/file.ext"},
[]string{"https://example.org/path/file.ext", "https://example.org/folder/", "https://example.org/path/file.ext"},
[]string{"https://static.example.org/path/file.ext", "https://www.example.org/", "//static.example.org/path/file.ext"},
[]string{"magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a", "https://www.example.org/", "magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a"},
[]string{"magnet:?xt.1=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C&xt.2=urn:sha1:TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7", "https://www.example.org/", "magnet:?xt.1=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C&xt.2=urn:sha1:TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7"},
2017-11-20 06:10:04 +01:00
}
2018-10-13 03:33:59 +02:00
for _, scenario := range scenarios {
actual, err := AbsoluteURL(scenario[1], scenario[2])
2017-11-20 06:10:04 +01:00
2018-10-13 03:33:59 +02:00
if err != nil {
t.Errorf(`Got error for (%q, %q): %v`, scenario[1], scenario[2], err)
}
2017-11-20 06:10:04 +01:00
2018-10-13 03:33:59 +02:00
if actual != scenario[0] {
t.Errorf(`Unexpected result, got %q instead of %q for (%q, %q)`, actual, scenario[0], scenario[1], scenario[2])
}
2017-11-20 06:10:04 +01:00
}
}
2018-10-13 03:33:59 +02:00
func TestRootURL(t *testing.T) {
scenarios := map[string]string{
"https://example.org/path/file.ext": "https://example.org/",
"//static.example.org/path/file.ext": "https://static.example.org/",
"https://example|org/path/file.ext": "https://example|org/path/file.ext",
2017-11-20 06:10:04 +01:00
}
2018-10-13 03:33:59 +02:00
for input, expected := range scenarios {
actual := RootURL(input)
if actual != expected {
t.Errorf(`Unexpected result, got %q instead of %q`, actual, expected)
}
2017-11-20 06:10:04 +01:00
}
}
func TestIsHTTPS(t *testing.T) {
2018-10-13 03:33:59 +02:00
scenarios := map[string]bool{
"https://example.org/": true,
"http://example.org/": false,
"https://example|org/": false,
2017-11-20 06:10:04 +01:00
}
2018-10-13 03:33:59 +02:00
for input, expected := range scenarios {
actual := IsHTTPS(input)
if actual != expected {
t.Errorf(`Unexpected result, got %v instead of %v`, actual, expected)
}
2017-11-20 06:10:04 +01:00
}
}
2017-12-02 07:29:18 +01:00
2018-10-13 03:33:59 +02:00
func TestDomain(t *testing.T) {
scenarios := map[string]string{
"https://static.example.org/": "static.example.org",
"https://example|org/": "https://example|org/",
}
2017-12-02 07:29:18 +01:00
2018-10-13 03:33:59 +02:00
for input, expected := range scenarios {
actual := Domain(input)
if actual != expected {
t.Errorf(`Unexpected result, got %q instead of %q`, actual, expected)
}
2017-12-02 07:29:18 +01:00
}
}
func TestRequestURI(t *testing.T) {
scenarios := map[string]string{
"https://www.example.org": "https://www.example.org",
"https://user:password@www.example.org": "https://user:password@www.example.org",
"https://www.example.org/path with spaces": "https://www.example.org/path%20with%20spaces",
"https://www.example.org/path#test": "https://www.example.org/path",
"https://www.example.org/path?abc#test": "https://www.example.org/path?abc",
"https://www.example.org/path?a=b&a=c": "https://www.example.org/path?a=b&a=c",
"https://www.example.org/path?a=b&a=c&d": "https://www.example.org/path?a=b&a=c&d",
"https://www.example.org/path?atom": "https://www.example.org/path?atom",
"https://www.example.org/path?测试=测试": "https://www.example.org/path?%E6%B5%8B%E8%AF%95=%E6%B5%8B%E8%AF%95",
"https://www.example.org/url=http%3A%2F%2Fwww.example.com%2Ffeed%2F&max=20": "https://www.example.org/url=http%3A%2F%2Fwww.example.com%2Ffeed%2F&max=20",
}
for input, expected := range scenarios {
actual := RequestURI(input)
if actual != expected {
t.Errorf(`Unexpected result, got %q instead of %q`, actual, expected)
}
}
}