chore: rename quicproquo → quicprochat in Rust workspace

Rename all crate directories, package names, binary names, proto
package/module paths, ALPN strings, env var prefixes, config filenames,
mDNS service names, and plugin ABI symbols from quicproquo/qpq to
quicprochat/qpc.
This commit is contained in:
2026-03-07 18:24:52 +01:00
parent d8c1392587
commit a710037dde
212 changed files with 609 additions and 609 deletions

View File

@@ -0,0 +1,58 @@
package qpq
import (
"testing"
)
func TestSetSessionToken(t *testing.T) {
c := &Client{}
token := []byte("test-session-token-abc123")
c.SetSessionToken(token)
if string(c.token) != string(token) {
t.Errorf("expected token %q, got %q", token, c.token)
}
}
func TestSetDeviceID(t *testing.T) {
c := &Client{}
id := []byte{0x01, 0x02, 0x03, 0x04}
c.SetDeviceID(id)
if len(c.deviceID) != 4 {
t.Fatalf("expected 4-byte device ID, got %d bytes", len(c.deviceID))
}
for i, b := range id {
if c.deviceID[i] != b {
t.Errorf("deviceID[%d]: expected %d, got %d", i, b, c.deviceID[i])
}
}
}
func TestMessageStruct(t *testing.T) {
m := Message{Seq: 42, Data: []byte("hello")}
if m.Seq != 42 {
t.Errorf("expected Seq 42, got %d", m.Seq)
}
if string(m.Data) != "hello" {
t.Errorf("expected Data %q, got %q", "hello", m.Data)
}
}
func TestOptionsDefaults(t *testing.T) {
opts := Options{
Addr: "127.0.0.1:5001",
InsecureSkipVerify: true,
}
if opts.Addr != "127.0.0.1:5001" {
t.Errorf("unexpected addr: %s", opts.Addr)
}
if !opts.InsecureSkipVerify {
t.Error("expected InsecureSkipVerify to be true")
}
if opts.CACertPath != "" {
t.Error("expected empty CACertPath")
}
}