1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-25 01:54:42 -05:00
sub2clash/test/parser_test.go

23 lines
472 B
Go
Raw Permalink Normal View History

2024-04-20 12:23:29 -04:00
package test
import (
2024-04-23 02:39:16 -04:00
"strings"
2024-04-20 12:23:29 -04:00
"testing"
)
2024-04-23 02:39:16 -04:00
func TestParser(t *testing.T) {
// res, err := parser.ParseTrojan("trojan://Abse64hhjewrs@test.com:8443?type=ws&path=%2Fx&host=test.com&security=tls&fp=&alpn=http%2F1.1&sni=test.com#test")
// if err != nil {
// t.Log(err.Error())
// t.Fail()
// }
// bytes, err := yaml.Marshal(res)
// if err != nil {
// t.Log(err.Error())
// t.Fail()
// }
// t.Log(string(bytes))
t.Log(strings.SplitN("123456", "/?", 2))
2024-04-20 12:23:29 -04:00
}