| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- package service
- import (
- "encoding/json"
- "testing"
- "time"
- "github.com/mhsanaei/3x-ui/v3/internal/database"
- "github.com/mhsanaei/3x-ui/v3/internal/database/model"
- )
- // The cycle has to survive the clients table, not just the settings JSON: an
- // ordinary edit rebuilds the client from the record and writes it back (#5497).
- func TestClientEditKeepsTheTrafficResetCycle(t *testing.T) {
- setupBulkDB(t)
- svc := &InboundService{}
- db := database.GetDB()
- clients := []model.Client{
- {
- Email: "cyc@x", ID: "66666666-6666-6666-6666-666666666666", Enable: true,
- TrafficReset: "monthly", TrafficResetDay: 15,
- ExpiryTime: time.Now().Add(24 * time.Hour).UnixMilli(),
- },
- }
- ib := mkInbound(t, 30301, model.VLESS, clientsSettings(t, clients))
- if err := svc.clientService.SyncInbound(nil, ib.Id, clients); err != nil {
- t.Fatalf("SyncInbound: %v", err)
- }
- rec, err := svc.clientService.GetRecordByEmail(nil, "cyc@x")
- if err != nil {
- t.Fatalf("GetRecordByEmail: %v", err)
- }
- if rec.TrafficReset != "monthly" || rec.TrafficResetDay != 15 {
- t.Fatalf("clients row holds %q/%d, want monthly/15", rec.TrafficReset, rec.TrafficResetDay)
- }
- // What the edit dialog does: hydrate the record, change something else, save.
- edited := rec.ToClient()
- edited.Comment = "renamed"
- if _, err := svc.clientService.Update(svc, rec.Id, *edited, rec.LimitHwid); err != nil {
- t.Fatalf("Update: %v", err)
- }
- var stored model.Inbound
- if err := db.Where("id = ?", ib.Id).First(&stored).Error; err != nil {
- t.Fatal(err)
- }
- var settings struct {
- Clients []model.Client `json:"clients"`
- }
- if err := json.Unmarshal([]byte(stored.Settings), &settings); err != nil {
- t.Fatalf("parse inbound settings: %v", err)
- }
- if len(settings.Clients) != 1 {
- t.Fatalf("inbound holds %d clients, want 1", len(settings.Clients))
- }
- if got := settings.Clients[0]; got.TrafficReset != "monthly" || got.TrafficResetDay != 15 {
- t.Fatalf("inbound settings hold %q/%d after an unrelated edit, want monthly/15: the cycle was silently switched off",
- got.TrafficReset, got.TrafficResetDay)
- }
- rec, err = svc.clientService.GetRecordByEmail(nil, "cyc@x")
- if err != nil {
- t.Fatalf("GetRecordByEmail after edit: %v", err)
- }
- if rec.TrafficReset != "monthly" || rec.TrafficResetDay != 15 {
- t.Fatalf("clients row holds %q/%d after an unrelated edit, want monthly/15", rec.TrafficReset, rec.TrafficResetDay)
- }
- }
- // The setting is useless if it can only be chosen once. This is the assertion
- // the earlier "survives an unrelated edit" test could not make: that one passed
- // precisely because nothing on the attached-inbound path ever wrote the column.
- func TestClientEditChangesTheTrafficResetCycle(t *testing.T) {
- setupBulkDB(t)
- svc := &InboundService{}
- clients := []model.Client{
- {
- Email: "chg@x", ID: "77777777-7777-7777-7777-777777777777", Enable: true,
- TrafficReset: "weekly", TrafficResetDay: 1,
- ExpiryTime: time.Now().Add(24 * time.Hour).UnixMilli(),
- },
- }
- ib := mkInbound(t, 30302, model.VLESS, clientsSettings(t, clients))
- if err := svc.clientService.SyncInbound(nil, ib.Id, clients); err != nil {
- t.Fatalf("SyncInbound: %v", err)
- }
- rec, err := svc.clientService.GetRecordByEmail(nil, "chg@x")
- if err != nil {
- t.Fatalf("GetRecordByEmail: %v", err)
- }
- edited := rec.ToClient()
- edited.TrafficReset = "monthly"
- edited.TrafficResetDay = 9
- if _, err := svc.clientService.Update(svc, rec.Id, *edited, rec.LimitHwid); err != nil {
- t.Fatalf("Update: %v", err)
- }
- rec, err = svc.clientService.GetRecordByEmail(nil, "chg@x")
- if err != nil {
- t.Fatalf("GetRecordByEmail after edit: %v", err)
- }
- if rec.TrafficReset != "monthly" || rec.TrafficResetDay != 9 {
- t.Fatalf("clients row holds %q/%d after the operator changed it to monthly/9: the job keeps applying the old cycle",
- rec.TrafficReset, rec.TrafficResetDay)
- }
- // Turning it off has to work too, and "never" is not an empty value.
- edited = rec.ToClient()
- edited.TrafficReset = "never"
- if _, err := svc.clientService.Update(svc, rec.Id, *edited, rec.LimitHwid); err != nil {
- t.Fatalf("Update to never: %v", err)
- }
- rec, err = svc.clientService.GetRecordByEmail(nil, "chg@x")
- if err != nil {
- t.Fatalf("GetRecordByEmail after disabling: %v", err)
- }
- if rec.TrafficReset != "never" {
- t.Fatalf("clients row holds %q after the operator switched the cycle off", rec.TrafficReset)
- }
- }
- // An unknown cycle would leave a field that reads as configured while no job
- // ever selects the client, so it is rejected instead of coerced.
- func TestClientTrafficResetValidation(t *testing.T) {
- for _, tc := range []struct {
- name string
- period string
- day int
- ok bool
- }{
- {"unset", "", 0, true},
- {"never", "never", 1, true},
- {"monthly last day", "monthly", 31, true},
- {"unknown period", "fortnightly", 1, false},
- {"day past the month", "monthly", 32, false},
- {"negative day", "monthly", -1, false},
- } {
- t.Run(tc.name, func(t *testing.T) {
- err := validateClientTrafficReset(tc.period, tc.day)
- if tc.ok && err != nil {
- t.Errorf("validateClientTrafficReset(%q, %d) = %v, want accepted", tc.period, tc.day, err)
- }
- if !tc.ok && err == nil {
- t.Errorf("validateClientTrafficReset(%q, %d) accepted, want rejected", tc.period, tc.day)
- }
- })
- }
- }
|