|
| 1 | +// Copyright 2022 Wayback Archiver. All rights reserved. |
| 2 | +// Use of this source code is governed by the GNU GPL v3 |
| 3 | +// license that can be found in the LICENSE file. |
| 4 | + |
| 5 | +package reduxer // import "github.com/wabarc/wayback/reduxer" |
| 6 | + |
| 7 | +import ( |
| 8 | + "net/url" |
| 9 | + "os" |
| 10 | + "testing" |
| 11 | +) |
| 12 | + |
| 13 | +const ( |
| 14 | + host = `https://www.youtube.com` |
| 15 | + domain = `youtube.com` |
| 16 | +) |
| 17 | + |
| 18 | +var ( |
| 19 | + validURL, _ = url.Parse(host) |
| 20 | + invalidURL = &url.URL{Host: `invalid-tld`} |
| 21 | +) |
| 22 | + |
| 23 | +func TestBaseHost(t *testing.T) { |
| 24 | + var tests = []struct { |
| 25 | + url *url.URL |
| 26 | + exp string |
| 27 | + }{ |
| 28 | + {validURL, domain}, |
| 29 | + {invalidURL, ``}, |
| 30 | + } |
| 31 | + |
| 32 | + for _, test := range tests { |
| 33 | + t.Run("", func(t *testing.T) { |
| 34 | + dom, _ := baseHost(test.url) |
| 35 | + if dom != test.exp { |
| 36 | + t.Errorf(`Unexpected extract base host, got %v instead of %v`, dom, test.exp) |
| 37 | + } |
| 38 | + }) |
| 39 | + } |
| 40 | +} |
| 41 | + |
| 42 | +func TestSupportedMediaSite(t *testing.T) { |
| 43 | + extraDomain := "https://extra-domain.com" |
| 44 | + missing, _ := url.Parse("https://missing.com") |
| 45 | + extraURL, _ := url.Parse(extraDomain) |
| 46 | + |
| 47 | + var tests = []struct { |
| 48 | + url *url.URL |
| 49 | + testname string |
| 50 | + filename string |
| 51 | + extra string |
| 52 | + supported bool |
| 53 | + }{ |
| 54 | + {validURL, `test with valid url`, filename, ``, true}, |
| 55 | + {invalidURL, `test with invalid url`, filename, ``, false}, |
| 56 | + {missing, `test not found`, filename, ``, false}, |
| 57 | + {extraURL, `test extra sites`, filename, extraDomain, true}, |
| 58 | + {invalidURL, `test extra invalid sites`, filename, extraDomain, false}, |
| 59 | + {invalidURL, `test sites configuration file not exists`, `/path/not/exists`, extraDomain, false}, |
| 60 | + } |
| 61 | + |
| 62 | + for _, test := range tests { |
| 63 | + t.Run(test.testname, func(t *testing.T) { |
| 64 | + os.Setenv("WAYBACK_MEDIA_SITES", test.extra) |
| 65 | + parseMediaSites(test.filename) |
| 66 | + supported := supportedMediaSite(test.url) |
| 67 | + if supported != test.supported { |
| 68 | + t.Errorf(`Unexpected check download media supported, got %v instead of %v`, supported, test.supported) |
| 69 | + } |
| 70 | + }) |
| 71 | + } |
| 72 | +} |
0 commit comments