2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2022-12-14 09:55:36 +00:00
|
|
|
|
|
|
|
package domain_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/cache/domain"
|
|
|
|
)
|
|
|
|
|
2023-09-21 11:12:04 +01:00
|
|
|
func TestCache(t *testing.T) {
|
|
|
|
c := new(domain.Cache)
|
2022-12-14 09:55:36 +00:00
|
|
|
|
2023-09-21 11:12:04 +01:00
|
|
|
cachedDomains := []string{
|
2024-01-09 13:12:43 +00:00
|
|
|
"google.com", //
|
|
|
|
"mail.google.com", // should be ignored since covered above
|
|
|
|
"dev.mail.google.com", // same again
|
|
|
|
"google.co.uk", //
|
|
|
|
"mail.google.co.uk", //
|
|
|
|
"pleroma.bad.host", //
|
|
|
|
"pleroma.still.a.bad.host", //
|
2022-12-14 09:55:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
loader := func() ([]string, error) {
|
2023-09-21 11:12:04 +01:00
|
|
|
t.Log("load: returning cached domains")
|
|
|
|
return cachedDomains, nil
|
2022-12-14 09:55:36 +00:00
|
|
|
}
|
|
|
|
|
2024-01-09 13:12:43 +00:00
|
|
|
// Check a list of known matching domains.
|
2022-12-14 09:55:36 +00:00
|
|
|
for _, domain := range []string{
|
|
|
|
"google.com",
|
|
|
|
"mail.google.com",
|
2024-01-09 13:12:43 +00:00
|
|
|
"dev.mail.google.com",
|
2022-12-14 09:55:36 +00:00
|
|
|
"google.co.uk",
|
|
|
|
"mail.google.co.uk",
|
|
|
|
"pleroma.bad.host",
|
|
|
|
"dev.pleroma.bad.host",
|
2024-01-09 13:12:43 +00:00
|
|
|
"pleroma.still.a.bad.host",
|
|
|
|
"dev.pleroma.still.a.bad.host",
|
2022-12-14 09:55:36 +00:00
|
|
|
} {
|
2023-09-21 11:12:04 +01:00
|
|
|
t.Logf("checking domain matches: %s", domain)
|
|
|
|
if b, _ := c.Matches(domain, loader); !b {
|
2024-01-09 13:12:43 +00:00
|
|
|
t.Fatalf("domain should be matched: %s", domain)
|
2022-12-14 09:55:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-09 13:12:43 +00:00
|
|
|
// Check a list of known unmatched domains.
|
2022-12-14 09:55:36 +00:00
|
|
|
for _, domain := range []string{
|
|
|
|
"askjeeves.com",
|
|
|
|
"ask-kim.co.uk",
|
|
|
|
"google.ie",
|
|
|
|
"mail.google.ie",
|
|
|
|
"gts.bad.host",
|
|
|
|
"mastodon.bad.host",
|
2024-01-09 13:12:43 +00:00
|
|
|
"akkoma.still.a.bad.host",
|
2022-12-14 09:55:36 +00:00
|
|
|
} {
|
2023-09-21 11:12:04 +01:00
|
|
|
t.Logf("checking domain isn't matched: %s", domain)
|
|
|
|
if b, _ := c.Matches(domain, loader); b {
|
2024-01-09 13:12:43 +00:00
|
|
|
t.Fatalf("domain should not be matched: %s", domain)
|
2022-12-14 09:55:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the cache
|
2023-05-09 15:18:51 +01:00
|
|
|
t.Logf("%+v\n", c)
|
2022-12-14 09:55:36 +00:00
|
|
|
c.Clear()
|
2023-05-09 15:18:51 +01:00
|
|
|
t.Logf("%+v\n", c)
|
2022-12-14 09:55:36 +00:00
|
|
|
|
|
|
|
knownErr := errors.New("known error")
|
|
|
|
|
|
|
|
// Check that reload is actually performed and returns our error
|
2023-09-21 11:12:04 +01:00
|
|
|
if _, err := c.Matches("", func() ([]string, error) {
|
2022-12-14 09:55:36 +00:00
|
|
|
t.Log("load: returning known error")
|
|
|
|
return nil, knownErr
|
|
|
|
}); !errors.Is(err, knownErr) {
|
2024-01-09 13:12:43 +00:00
|
|
|
t.Fatalf("matches did not return expected error: %v", err)
|
2022-12-14 09:55:36 +00:00
|
|
|
}
|
|
|
|
}
|