| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- package sub
- import (
- "errors"
- "net/http"
- "net/http/httptest"
- "strconv"
- "strings"
- "sync"
- "sync/atomic"
- "testing"
- "time"
- "github.com/mhsanaei/3x-ui/v3/internal/database"
- "github.com/mhsanaei/3x-ui/v3/internal/database/model"
- )
- func resetSubscriptionCache(t *testing.T) {
- t.Helper()
- subscriptionCache.Lock()
- previousEntries := subscriptionCache.m
- previousInflight := subscriptionCache.inflight
- subscriptionCache.m = make(map[string]subscriptionCacheEntry)
- subscriptionCache.inflight = make(map[string]*subscriptionFetch)
- subscriptionCache.Unlock()
- t.Cleanup(func() {
- subscriptionCache.Lock()
- subscriptionCache.m = previousEntries
- subscriptionCache.inflight = previousInflight
- subscriptionCache.Unlock()
- })
- }
- func TestFetchSubscriptionLinksSharesConcurrentRefresh(t *testing.T) {
- resetSubscriptionCache(t)
- var requests atomic.Int32
- release := make(chan struct{})
- srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- requests.Add(1)
- <-release
- _, _ = w.Write([]byte("vless://[email protected]:443"))
- }))
- defer srv.Close()
- const callers = 16
- results := make(chan []string, callers)
- var wg sync.WaitGroup
- for range callers {
- wg.Go(func() {
- results <- fetchSubscriptionLinks(srv.URL).links
- })
- }
- time.Sleep(100 * time.Millisecond)
- close(release)
- wg.Wait()
- close(results)
- for links := range results {
- if len(links) != 1 || links[0] != "vless://[email protected]:443" {
- t.Fatalf("links = %#v", links)
- }
- }
- if got := requests.Load(); got != 1 {
- t.Fatalf("requests = %d, want 1", got)
- }
- }
- func TestFetchSubscriptionLinksBoundsCacheSize(t *testing.T) {
- resetSubscriptionCache(t)
- var requests atomic.Int32
- srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- requests.Add(1)
- _, _ = w.Write([]byte("vless://[email protected]:443"))
- }))
- defer srv.Close()
- for i := range subscriptionCacheCapacity + 1 {
- links := fetchSubscriptionLinks(srv.URL + "?id=" + strconv.Itoa(i)).links
- if len(links) != 1 {
- t.Fatalf("links at %d = %#v", i, links)
- }
- }
- subscriptionCache.Lock()
- entries := len(subscriptionCache.m)
- subscriptionCache.Unlock()
- if entries != subscriptionCacheCapacity {
- t.Fatalf("cache entries = %d, want %d", entries, subscriptionCacheCapacity)
- }
- if got := requests.Load(); got != subscriptionCacheCapacity+1 {
- t.Fatalf("requests = %d, want %d", got, subscriptionCacheCapacity+1)
- }
- }
- func TestFetchSubscriptionLinksSharesStaleResultAfterRefreshFailure(t *testing.T) {
- resetSubscriptionCache(t)
- stale := []string{"vless://[email protected]:443"}
- release := make(chan struct{})
- var staleRequests atomic.Int32
- srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- if r.URL.Path == "/stale" {
- staleRequests.Add(1)
- <-release
- w.WriteHeader(http.StatusBadGateway)
- return
- }
- _, _ = w.Write([]byte("vless://[email protected]:443"))
- }))
- defer srv.Close()
- staleURL := srv.URL + "/stale"
- subscriptionCache.Lock()
- subscriptionCache.m[staleURL] = subscriptionCacheEntry{
- links: stale,
- fetchedAt: time.Now().Add(-subscriptionCacheTTL),
- }
- for i := range subscriptionCacheCapacity - 1 {
- subscriptionCache.m["cached-"+strconv.Itoa(i)] = subscriptionCacheEntry{fetchedAt: time.Now()}
- }
- subscriptionCache.Unlock()
- const callers = 16
- results := make(chan []string, callers)
- var wg sync.WaitGroup
- for range callers {
- wg.Go(func() {
- results <- fetchSubscriptionLinks(staleURL).links
- })
- }
- time.Sleep(100 * time.Millisecond)
- if links := fetchSubscriptionLinks(srv.URL + "/fresh").links; len(links) != 1 || links[0] != "vless://[email protected]:443" {
- t.Fatalf("fresh links = %#v", links)
- }
- close(release)
- wg.Wait()
- close(results)
- for links := range results {
- if len(links) != 1 || links[0] != stale[0] {
- t.Fatalf("links = %#v, want %#v", links, stale)
- }
- }
- if got := staleRequests.Load(); got != 1 {
- t.Fatalf("requests = %d, want 1", got)
- }
- }
- func TestDoFetchSubscriptionLinks_RejectsOversizedBody(t *testing.T) {
- srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- _, _ = w.Write([]byte(strings.Repeat("a", subscriptionMaxBytes+1)))
- }))
- defer srv.Close()
- links, err := doFetchSubscriptionLinks(srv.URL)
- if !errors.Is(err, errSubscriptionBodyTooLarge) {
- t.Fatalf("err = %v, want errSubscriptionBodyTooLarge", err)
- }
- if links != nil {
- t.Fatalf("links = %v, want nil", links)
- }
- }
- func TestDoFetchSubscriptionLinks_AcceptsBodyAtLimit(t *testing.T) {
- link := "vless://example"
- body := link + "\n" + strings.Repeat("#", subscriptionMaxBytes-len(link)-1)
- if len(body) != subscriptionMaxBytes {
- t.Fatalf("fixture size = %d, want %d", len(body), subscriptionMaxBytes)
- }
- srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- _, _ = w.Write([]byte(body))
- }))
- defer srv.Close()
- links, err := doFetchSubscriptionLinks(srv.URL)
- if err != nil {
- t.Fatalf("unexpected err: %v", err)
- }
- if len(links) != 1 || links[0] != link {
- t.Fatalf("links = %v, want [%q]", links, link)
- }
- }
- func TestRecordExternalSubscriptionFetchStampsEveryRowForTheURL(t *testing.T) {
- initMutDB(t)
- resetSubscriptionCache(t)
- db := database.GetDB()
- var failing atomic.Bool
- failing.Store(true)
- srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- if failing.Load() {
- w.WriteHeader(http.StatusBadGateway)
- return
- }
- _, _ = w.Write([]byte("vless://[email protected]:443#Node"))
- }))
- defer srv.Close()
- owners := []model.ClientRecord{
- {Email: "[email protected]", SubID: "sub-fetch", UUID: "uuid-1", Enable: true},
- {Email: "[email protected]", SubID: "sub-fetch", UUID: "uuid-2", Enable: true},
- }
- for i := range owners {
- if err := db.Create(&owners[i]).Error; err != nil {
- t.Fatalf("seed client %d: %v", i, err)
- }
- row := model.ClientExternalLink{
- ClientId: owners[i].Id,
- Kind: model.ExternalLinkKindSubscription,
- Value: srv.URL,
- }
- if err := db.Create(&row).Error; err != nil {
- t.Fatalf("seed external link %d: %v", i, err)
- }
- }
- svc := NewSubService("")
- entries, err := svc.getClientExternalLinksBySubId("sub-fetch")
- if err != nil {
- t.Fatalf("getClientExternalLinksBySubId: %v", err)
- }
- if len(entries) != 2 {
- t.Fatalf("entries = %d, want 2", len(entries))
- }
- for _, e := range entries {
- expandEntry(e)
- }
- var rows []model.ClientExternalLink
- if err := db.Where("value = ?", srv.URL).Find(&rows).Error; err != nil {
- t.Fatalf("read rows: %v", err)
- }
- if len(rows) != 2 {
- t.Fatalf("rows = %d, want 2", len(rows))
- }
- for _, row := range rows {
- if row.LastFetchAt <= 0 {
- t.Fatalf("row %d lastFetchAt = %d, want a stamped timestamp", row.Id, row.LastFetchAt)
- }
- if row.LastFetchError != errBadStatus.Error() {
- t.Fatalf("row %d lastFetchError = %q, want %q", row.Id, row.LastFetchError, errBadStatus)
- }
- }
- failing.Store(false)
- resetSubscriptionCache(t)
- for _, e := range entries {
- expandEntry(e)
- }
- if err := db.Where("value = ?", srv.URL).Find(&rows).Error; err != nil {
- t.Fatalf("re-read rows: %v", err)
- }
- for _, row := range rows {
- if row.LastFetchError != "" {
- t.Fatalf("row %d lastFetchError = %q, want cleared after a good fetch", row.Id, row.LastFetchError)
- }
- if row.LastFetchAt <= 0 {
- t.Fatalf("row %d lastFetchAt = %d, want a stamped timestamp", row.Id, row.LastFetchAt)
- }
- }
- }
- func TestExpandEntryCacheHitWritesNothing(t *testing.T) {
- initMutDB(t)
- resetSubscriptionCache(t)
- db := database.GetDB()
- const subURL = "https://provider.example/cached"
- rec := model.ClientRecord{Email: "[email protected]", SubID: "sub-cached", UUID: "uuid", Enable: true}
- if err := db.Create(&rec).Error; err != nil {
- t.Fatalf("seed client: %v", err)
- }
- row := model.ClientExternalLink{ClientId: rec.Id, Kind: model.ExternalLinkKindSubscription, Value: subURL}
- if err := db.Create(&row).Error; err != nil {
- t.Fatalf("seed external link: %v", err)
- }
- subscriptionCache.Lock()
- subscriptionCache.m[subURL] = subscriptionCacheEntry{
- links: []string{"vless://[email protected]:443#Node"},
- fetchedAt: time.Now(),
- }
- subscriptionCache.Unlock()
- if got := expandEntry(externalLinkEntry{Kind: model.ExternalLinkKindSubscription, Value: subURL}); len(got) != 1 {
- t.Fatalf("expandEntry = %#v, want the cached link", got)
- }
- var after model.ClientExternalLink
- if err := db.First(&after, row.Id).Error; err != nil {
- t.Fatalf("read row: %v", err)
- }
- if after.LastFetchAt != 0 || after.LastFetchError != "" {
- t.Fatalf("cache hit wrote fetch status: %#v", after)
- }
- }
|