| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package link
- import (
- "strings"
- "testing"
- )
- func TestParseVmessLink(t *testing.T) {
- // vmess:// + base64 of:
- // {"v":"2","ps":"test","add":"1.2.3.4","port":443,"id":"uuid","aid":"0","net":"ws","type":"","host":"ex.com","path":"/","tls":"tls"}
- link := "vmess://eyJ2IjoiMiIsInBzIjoidGVzdCIsImFkZCI6IjEuMi4zLjQiLCJwb3J0Ijo0NDMsImlkIjoidXVpZCIsImFpZCI6IjAiLCJuZXQiOiJ3cyIsInR5cGUiOiIiLCJob3N0IjoiZXguY29tIiwicGF0aCI6Ii8iLCJ0bHMiOiJ0bHMifQ=="
- res, err := ParseLink(link)
- if err != nil {
- t.Fatalf("parse vmess: %v", err)
- }
- if res.Outbound["protocol"] != "vmess" {
- t.Errorf("expected vmess protocol, got %v", res.Outbound["protocol"])
- }
- if res.Outbound["tag"] != "test" {
- t.Errorf("expected tag 'test', got %v", res.Outbound["tag"])
- }
- }
- func TestParseVlessLink(t *testing.T) {
- link := "vless://[email protected]:443?type=ws&security=tls&path=/&host=ex.com#node1"
- res, err := ParseLink(link)
- if err != nil {
- t.Fatalf("parse vless: %v", err)
- }
- if res.Outbound["protocol"] != "vless" {
- t.Fatalf("bad protocol")
- }
- if res.Outbound["tag"] != "node1" {
- t.Errorf("tag mismatch: %v", res.Outbound["tag"])
- }
- }
- func TestParseSubscriptionBody_Base64(t *testing.T) {
- // base64 of the two joined links:
- // vless://u@h:443?type=tcp#A\nvless://u2@h2:443?type=tcp#B
- b64 := "dmxlc3M6Ly91QGg6NDQzP3R5cGU9dGNwI0EKdmxlc3M6Ly91MkBoMjo0NDM/dHlwZT10Y3AjQg=="
- obs, ids, err := ParseSubscriptionBody([]byte(b64))
- if err != nil {
- t.Fatalf("parse sub body: %v", err)
- }
- if len(obs) != 2 {
- t.Fatalf("expected 2 outbounds, got %d", len(obs))
- }
- if !strings.HasPrefix(ids[0], "vless:") || !strings.HasPrefix(ids[1], "vless:") {
- t.Errorf("bad identities: %v", ids)
- }
- }
- func TestSlugAndSuggest(t *testing.T) {
- if SlugRemark("Hello World!") != "hello-world" {
- t.Errorf("slug failed")
- }
- tag := SuggestTag("hk-", " SG 01 !! ", 0)
- if tag != "hk-sg-01" {
- t.Errorf("suggest tag got %q", tag)
- }
- }
|