| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package amneziawg
- import (
- "encoding/json"
- "testing"
- "github.com/mhsanaei/3x-ui/v3/internal/database/model"
- )
- func mkInboundSettings(t *testing.T, server *ServerSettings, clients []model.Client) string {
- t.Helper()
- bs, err := json.Marshal(InboundSettings{Server: server, Clients: clients})
- if err != nil {
- t.Fatalf("marshal settings: %v", err)
- }
- return string(bs)
- }
- func validServer() *ServerSettings {
- return &ServerSettings{
- PrivateKey: "serverPriv",
- PublicKey: "serverPub",
- SubnetIP: "10.8.1.0",
- SubnetCIDR: 24,
- }
- }
- func TestInstanceFromInboundParsesEnabledPeers(t *testing.T) {
- settings := mkInboundSettings(t, validServer(), []model.Client{
- {Email: "a@x", Enable: true, PublicKey: "pubA", PreSharedKey: "pskA", AllowedIPs: []string{"10.8.1.2/32"}},
- {Email: "b@x", Enable: false, PublicKey: "pubB", AllowedIPs: []string{"10.8.1.3/32"}},
- {Email: "c@x", Enable: true, PublicKey: "", AllowedIPs: []string{"10.8.1.4/32"}}, // no key: skipped
- {Email: "d@x", Enable: true, PublicKey: "pubD", AllowedIPs: nil}, // no address: skipped
- })
- ib := &model.Inbound{Id: 7, Tag: "awg-tag", Protocol: model.AmneziaWG, Port: 51820, Settings: settings}
- inst, ok := InstanceFromInbound(ib)
- if !ok {
- t.Fatal("expected a usable instance")
- }
- if inst.Id != 7 || inst.Tag != "awg-tag" || inst.ListenPort != 51820 {
- t.Fatalf("instance identity not carried over: %+v", inst)
- }
- if inst.InterfaceName != "awg7" {
- t.Fatalf("InterfaceName = %q, want awg7", inst.InterfaceName)
- }
- if len(inst.Address) != 1 || inst.Address[0] != "10.8.1.1/24" {
- t.Fatalf("Address = %v, want [10.8.1.1/24]", inst.Address)
- }
- if len(inst.Peers) != 1 {
- t.Fatalf("Peers = %+v, want exactly 1 (only a@x qualifies)", inst.Peers)
- }
- p := inst.Peers[0]
- if p.Email != "a@x" || p.PublicKey != "pubA" || p.PresharedKey != "pskA" || len(p.AllowedIPs) != 1 || p.AllowedIPs[0] != "10.8.1.2/32" {
- t.Fatalf("peer mismatch: %+v", p)
- }
- }
- func TestInstanceFromInboundCopiesAWG30Fields(t *testing.T) {
- server := validServer()
- server.S1, server.S2, server.S3, server.S4 = 20, 20, 20, 20
- server.HeaderProtectionKey = "some-header-protection-key"
- server.ContentPaddingAddition = "50-100"
- settings := mkInboundSettings(t, server, []model.Client{
- {Email: "a@x", Enable: true, PublicKey: "pubA", AllowedIPs: []string{"10.8.1.2/32"}},
- })
- ib := &model.Inbound{Id: 7, Protocol: model.AmneziaWG, Port: 51820, Settings: settings}
- inst, ok := InstanceFromInbound(ib)
- if !ok {
- t.Fatal("expected a usable instance")
- }
- if inst.Obfuscation.HeaderProtectionKey != "some-header-protection-key" {
- t.Fatalf("HeaderProtectionKey = %q, want it copied from ServerSettings", inst.Obfuscation.HeaderProtectionKey)
- }
- if inst.Obfuscation.ContentPaddingAddition != "50-100" {
- t.Fatalf("ContentPaddingAddition = %q, want it copied from ServerSettings", inst.Obfuscation.ContentPaddingAddition)
- }
- }
- func TestInstanceFromInboundRejectsWrongProtocol(t *testing.T) {
- settings := mkInboundSettings(t, validServer(), []model.Client{
- {Email: "a@x", Enable: true, PublicKey: "pubA", AllowedIPs: []string{"10.8.1.2/32"}},
- })
- ib := &model.Inbound{Id: 1, Protocol: model.VLESS, Settings: settings}
- if _, ok := InstanceFromInbound(ib); ok {
- t.Fatal("non-AmneziaWG inbound must be rejected")
- }
- }
- func TestInstanceFromInboundRejectsNil(t *testing.T) {
- if _, ok := InstanceFromInbound(nil); ok {
- t.Fatal("nil inbound must be rejected")
- }
- }
- func TestInstanceFromInboundRejectsMissingServer(t *testing.T) {
- ib := &model.Inbound{Id: 1, Protocol: model.AmneziaWG, Settings: `{"clients":[]}`}
- if _, ok := InstanceFromInbound(ib); ok {
- t.Fatal("settings with no server block must be rejected")
- }
- }
- func TestInstanceFromInboundRejectsUnparseableSettings(t *testing.T) {
- ib := &model.Inbound{Id: 1, Protocol: model.AmneziaWG, Settings: `not json`}
- if _, ok := InstanceFromInbound(ib); ok {
- t.Fatal("unparseable settings must be rejected")
- }
- }
- func TestInstanceFromInboundEmptyWhenNoEnabledPeers(t *testing.T) {
- settings := mkInboundSettings(t, validServer(), []model.Client{
- {Email: "a@x", Enable: false, PublicKey: "pubA", AllowedIPs: []string{"10.8.1.2/32"}},
- })
- ib := &model.Inbound{Id: 1, Protocol: model.AmneziaWG, Settings: settings}
- if _, ok := InstanceFromInbound(ib); ok {
- t.Fatal("an inbound with zero enabled peers must be skipped, like mtproto.InstanceFromInbound")
- }
- }
- func TestServerAddress(t *testing.T) {
- cases := []struct {
- subnet string
- cidr int
- want string
- }{
- {"10.8.1.0", 24, "10.8.1.1/24"},
- {"10.8.1.0", 0, "10.8.1.1/24"}, // cidr <= 0 defaults to /24
- {"10.8.1.5", 24, "10.8.1.1/24"}, // non-network base: must not collide with peer allocation starting at .2
- {"10.8.1.254", 24, "10.8.1.1/24"},
- {"192.168.5.10", 32, "192.168.5.10/32"}, // /32 has no host bits: used as-is
- }
- for _, c := range cases {
- if got := serverAddress(c.subnet, c.cidr); got != c.want {
- t.Errorf("serverAddress(%q, %d) = %q, want %q", c.subnet, c.cidr, got, c.want)
- }
- }
- }
- func TestInterfaceNameForID(t *testing.T) {
- if got := interfaceNameForID(42); got != "awg42" {
- t.Errorf("interfaceNameForID(42) = %q, want awg42", got)
- }
- }
- func TestFirstIPv4(t *testing.T) {
- cases := []struct {
- name string
- ips []string
- want string
- }{
- {"single v4 CIDR", []string{"10.8.1.2/32"}, "10.8.1.2"},
- {"bare v4 address, no mask", []string{"10.8.1.2"}, "10.8.1.2"},
- {"v6 first, v4 second", []string{"fd86:ea04:1115::2/128", "10.8.1.2/32"}, "10.8.1.2"},
- {"v4-only among several", []string{"10.8.1.2/32", "10.8.1.3/32"}, "10.8.1.2"},
- {"v6 only", []string{"fd86:ea04:1115::2/128"}, ""},
- {"empty input", nil, ""},
- {"unparseable entries skipped", []string{"not-an-ip", "10.8.1.2/32"}, "10.8.1.2"},
- }
- for _, c := range cases {
- if got := FirstIPv4(c.ips); got != c.want {
- t.Errorf("%s: FirstIPv4(%v) = %q, want %q", c.name, c.ips, got, c.want)
- }
- }
- }
- func TestFirstIPv6(t *testing.T) {
- cases := []struct {
- name string
- ips []string
- want string
- }{
- {"single v6 CIDR", []string{"fd86:ea04:1115::2/128"}, "fd86:ea04:1115::2"},
- {"bare v6 address, no mask", []string{"fd86:ea04:1115::2"}, "fd86:ea04:1115::2"},
- {"v4 first, v6 second", []string{"10.8.1.2/32", "fd86:ea04:1115::2/128"}, "fd86:ea04:1115::2"},
- {"only first of two v6 entries returned", []string{"fd86:ea04:1115::2/128", "fd86:ea04:1115::3/128"}, "fd86:ea04:1115::2"},
- {"v4 only", []string{"10.8.1.2/32"}, ""},
- {"empty input", nil, ""},
- {"unparseable entries skipped", []string{"not-an-ip", "fd86:ea04:1115::2/128"}, "fd86:ea04:1115::2"},
- {"v4-mapped v6 is not a real v6 identity", []string{"::ffff:10.8.1.2/128"}, ""},
- }
- for _, c := range cases {
- if got := FirstIPv6(c.ips); got != c.want {
- t.Errorf("%s: FirstIPv6(%v) = %q, want %q", c.name, c.ips, got, c.want)
- }
- }
- }
|