| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- package server
- import (
- "context"
- "encoding/json"
- "net/http"
- "net/http/httptest"
- "strings"
- "testing"
- "vocat/internal/device"
- "vocat/internal/store"
- )
- func decodeData(t *testing.T, recorder *httptest.ResponseRecorder) map[string]any {
- t.Helper()
- var envelope struct {
- Data map[string]any `json:"data"`
- }
- if err := json.NewDecoder(recorder.Body).Decode(&envelope); err != nil {
- t.Fatalf("decode response: %v (body=%s)", err, recorder.Body.String())
- }
- return envelope.Data
- }
- func TestAttachSingleEUICCIdentityFillsProfileGroupMetadataKey(t *testing.T) {
- groups := []map[string]any{{"eid": "", "aidHex": "", "profiles": []any{}}}
- chipInfo := map[string]any{
- "eids": []any{map[string]any{
- "eid": "89086030202200000025000015085962",
- "aid": "A0000005591010FFFFFFFF8900000100",
- }},
- }
- attachSingleEUICCIdentity(groups, chipInfo)
- if groups[0]["eid"] != "89086030202200000025000015085962" {
- t.Fatalf("group EID = %v", groups[0]["eid"])
- }
- if groups[0]["aidHex"] != "A0000005591010FFFFFFFF8900000100" {
- t.Fatalf("group AID = %v", groups[0]["aidHex"])
- }
- }
- func TestHandleOperatorScanReturnsOperators(t *testing.T) {
- server := &Server{
- logger: regionTestLogger(),
- devices: fakeDeviceController{scanResult: device.OperatorScanResult{
- Status: "complete",
- Operators: []device.ScannedOperator{
- {Status: "current", Name: "China Mobile", Numeric: "46000", Act: "LTE"},
- {Status: "available", Name: "China Unicom", Numeric: "46001", Act: "LTE"},
- },
- }},
- }
- recorder := httptest.NewRecorder()
- server.handleOperatorScan(recorder, httptest.NewRequest(http.MethodGet, "/scan", nil), "dev1")
- if recorder.Code != http.StatusOK {
- t.Fatalf("status = %d, body=%s", recorder.Code, recorder.Body.String())
- }
- data := decodeData(t, recorder)
- if data["status"] != "complete" {
- t.Fatalf("scan status = %v", data["status"])
- }
- candidates, ok := data["candidates"].([]any)
- if !ok || len(candidates) != 2 {
- t.Fatalf("candidates = %v", data["candidates"])
- }
- first := candidates[0].(map[string]any)
- if first["plmn"] != "46000" || first["status"] != "current" || first["operatorName"] != "China Mobile" {
- t.Fatalf("first candidate = %v", first)
- }
- }
- func TestHandleOperatorScanStreamEmitsTerminalEvent(t *testing.T) {
- server := &Server{
- logger: regionTestLogger(),
- devices: fakeDeviceController{scanResult: device.OperatorScanResult{
- Status: "complete",
- Operators: []device.ScannedOperator{{Status: "current", Name: "CMCC", Numeric: "46000"}},
- }},
- }
- recorder := httptest.NewRecorder()
- server.handleOperatorScanStream(recorder, httptest.NewRequest(http.MethodGet, "/scan/stream", nil), "dev1")
- body := recorder.Body.String()
- if !strings.Contains(body, "event: operator_scan") {
- t.Fatalf("expected operator_scan events, got %q", body)
- }
- if !strings.Contains(body, `"status":"running"`) || !strings.Contains(body, `"status":"complete"`) {
- t.Fatalf("expected running then complete, got %q", body)
- }
- }
- func TestHandleUSSDContinueAndCancel(t *testing.T) {
- server := &Server{
- logger: regionTestLogger(),
- maxRequestBodyBytes: 4096,
- devices: fakeDeviceController{ussdResult: device.USSDResult{
- Status: "awaiting_input", Text: "Main menu", SessionID: "abc123", Continueable: true,
- }},
- }
- request := httptest.NewRequest(http.MethodPost, "/continue", strings.NewReader(`{"session_id":"abc123","input":"1"}`))
- request.Header.Set("Content-Type", "application/json")
- recorder := httptest.NewRecorder()
- server.handleUSSDContinue(recorder, request)
- if recorder.Code != http.StatusOK {
- t.Fatalf("continue status = %d, body=%s", recorder.Code, recorder.Body.String())
- }
- data := decodeData(t, recorder)
- result, _ := data["result"].(map[string]any)
- if result["status"] != "awaiting_input" || data["session_id"] != "abc123" {
- t.Fatalf("continue data = %v", data)
- }
- cancelReq := httptest.NewRequest(http.MethodPost, "/cancel", strings.NewReader(`{"session_id":"abc123"}`))
- cancelReq.Header.Set("Content-Type", "application/json")
- cancelRec := httptest.NewRecorder()
- server.handleUSSDCancel(cancelRec, cancelReq)
- if cancelRec.Code != http.StatusOK {
- t.Fatalf("cancel status = %d, body=%s", cancelRec.Code, cancelRec.Body.String())
- }
- }
- func TestHandleUSSDContinueRequiresSession(t *testing.T) {
- server := &Server{logger: regionTestLogger(), maxRequestBodyBytes: 4096, devices: fakeDeviceController{}}
- request := httptest.NewRequest(http.MethodPost, "/continue", strings.NewReader(`{"input":"1"}`))
- request.Header.Set("Content-Type", "application/json")
- recorder := httptest.NewRecorder()
- server.handleUSSDContinue(recorder, request)
- if recorder.Code != http.StatusBadRequest {
- t.Fatalf("missing session status = %d, want 400", recorder.Code)
- }
- }
- func TestHandleCardPoliciesListsAll(t *testing.T) {
- database, err := store.Open(context.Background(), ":memory:")
- if err != nil {
- t.Fatal(err)
- }
- t.Cleanup(func() { _ = database.Close() })
- if err := database.UpsertCardPolicy(context.Background(), store.CardPolicy{
- ICCID: "89860001", NetworkEnabled: true, IPVersion: "IPV4V6", Source: "manual",
- }); err != nil {
- t.Fatal(err)
- }
- server := &Server{store: database, logger: regionTestLogger()}
- recorder := httptest.NewRecorder()
- server.handleCardPolicies(recorder, httptest.NewRequest(http.MethodGet, "/api/cards/policies", nil))
- if recorder.Code != http.StatusOK {
- t.Fatalf("status = %d", recorder.Code)
- }
- var envelope struct {
- Data []map[string]any `json:"data"`
- }
- if err := json.NewDecoder(recorder.Body).Decode(&envelope); err != nil {
- t.Fatal(err)
- }
- if len(envelope.Data) != 1 || envelope.Data[0]["iccid"] != "89860001" {
- t.Fatalf("policies = %v", envelope.Data)
- }
- }
- func TestHandleESIMShapes(t *testing.T) {
- server := &Server{logger: regionTestLogger()}
- overview := httptest.NewRecorder()
- server.handleESIM(overview, httptest.NewRequest(http.MethodGet, "/esim", nil), []string{}, "dev1", false)
- if overview.Code != http.StatusOK {
- t.Fatalf("overview status = %d", overview.Code)
- }
- if data := decodeData(t, overview); data["chipInfo"] != nil {
- t.Fatalf("overview chipInfo = %v, want nil (empty state)", data["chipInfo"])
- }
- profiles := httptest.NewRecorder()
- server.handleESIM(profiles, httptest.NewRequest(http.MethodGet, "/esim/profiles", nil), []string{"profiles"}, "dev1", false)
- if profiles.Code != http.StatusOK {
- t.Fatalf("profiles status = %d", profiles.Code)
- }
- notif := httptest.NewRecorder()
- server.handleESIM(notif, httptest.NewRequest(http.MethodGet, "/esim/notifications", nil), []string{"notifications"}, "dev1", false)
- if notif.Code != http.StatusOK {
- t.Fatalf("notifications status = %d", notif.Code)
- }
- // Download is a GET+SSE endpoint, so POST is rejected.
- downloadPost := httptest.NewRecorder()
- server.handleESIM(downloadPost, httptest.NewRequest(http.MethodPost, "/esim/actions/download", nil), []string{"actions", "download"}, "dev1", false)
- if downloadPost.Code != http.StatusMethodNotAllowed {
- t.Fatalf("download POST status = %d, want 405", downloadPost.Code)
- }
- // Download with no device manager reports 503.
- download := httptest.NewRecorder()
- server.handleESIM(download, httptest.NewRequest(http.MethodGet, "/esim/actions/download?smdp=rsp.example.com", nil), []string{"actions", "download"}, "dev1", false)
- if download.Code != http.StatusServiceUnavailable {
- t.Fatalf("download (no device) status = %d, want 503", download.Code)
- }
- // Switch with no physical modem present reports 503.
- absent := httptest.NewRecorder()
- server.handleESIM(absent, httptest.NewRequest(http.MethodPost, "/esim/actions/switch", strings.NewReader(`{"iccid":"8900000000000000001"}`)), []string{"actions", "switch"}, "dev1", false)
- if absent.Code != http.StatusServiceUnavailable {
- t.Fatalf("switch (no device) status = %d, want 503", absent.Code)
- }
- // Switch happy path: a present device + fake controller switches by ICCID.
- present := &Server{logger: regionTestLogger(), maxRequestBodyBytes: 4096, devices: fakeDeviceController{}}
- swOK := httptest.NewRecorder()
- swReq := httptest.NewRequest(http.MethodPost, "/esim/actions/switch", strings.NewReader(`{"iccid":"8900000000000000001","aid_hex":"A0"}`))
- swReq.Header.Set("Content-Type", "application/json")
- present.handleESIM(swOK, swReq, []string{"actions", "switch"}, "dev1", true)
- if swOK.Code != http.StatusOK {
- t.Fatalf("switch happy-path status = %d, body=%s", swOK.Code, swOK.Body.String())
- }
- if data := decodeData(t, swOK); data["status"] != "switched" || data["verified"] != true {
- t.Fatalf("switch data = %v", data)
- }
- // Disable happy path routes the active profile to ES10c DisableProfile.
- disableOK := httptest.NewRecorder()
- disableReq := httptest.NewRequest(http.MethodPost, "/esim/actions/disable", strings.NewReader(`{"iccid":"8900000000000000001","aid_hex":"A0000005591010FFFFFFFF8900000100"}`))
- disableReq.Header.Set("Content-Type", "application/json")
- present.handleESIM(disableOK, disableReq, []string{"actions", "disable"}, "dev1", true)
- if disableOK.Code != http.StatusOK {
- t.Fatalf("disable happy-path status = %d, body=%s", disableOK.Code, disableOK.Body.String())
- }
- if data := decodeData(t, disableOK); data["status"] != "disabled" || data["recovering"] != true {
- t.Fatalf("disable data = %v", data)
- }
- // Rename happy path routes PATCH to ES10c SetNickname support.
- renameOK := httptest.NewRecorder()
- renameReq := httptest.NewRequest(http.MethodPatch, "/esim/profiles/8900000000000000001", strings.NewReader(`{"name":"Test profile","aid_hex":"A0000005591010FFFFFFFF8900000100"}`))
- renameReq.Header.Set("Content-Type", "application/json")
- present.handleESIM(renameOK, renameReq, []string{"profiles", "8900000000000000001"}, "dev1", true)
- if renameOK.Code != http.StatusOK {
- t.Fatalf("rename happy-path status = %d, body=%s", renameOK.Code, renameOK.Body.String())
- }
- if data := decodeData(t, renameOK); data["status"] != "renamed" || data["name"] != "Test profile" {
- t.Fatalf("rename data = %v", data)
- }
- // Download on a present device but with no smdp address reports 400.
- dlNoSmdp := httptest.NewRecorder()
- present.handleESIM(dlNoSmdp, httptest.NewRequest(http.MethodGet, "/esim/actions/download", nil), []string{"actions", "download"}, "dev1", true)
- if dlNoSmdp.Code != http.StatusBadRequest {
- t.Fatalf("download (no smdp) status = %d, want 400", dlNoSmdp.Code)
- }
- }
- func TestHandleFixUSBNet(t *testing.T) {
- server := &Server{
- logger: regionTestLogger(),
- maxRequestBodyBytes: 4096,
- devices: fakeDeviceController{usbNetMode: device.USBNetMode{Mode: 0, Name: "QMI"}},
- }
- request := httptest.NewRequest(http.MethodPost, "/fix-usbnet", strings.NewReader(`{"at_port":"/dev/ttyUSB2","mode":0}`))
- request.Header.Set("Content-Type", "application/json")
- recorder := httptest.NewRecorder()
- server.handleFixUSBNet(recorder, request)
- if recorder.Code != http.StatusOK {
- t.Fatalf("status = %d, body=%s", recorder.Code, recorder.Body.String())
- }
- if data := decodeData(t, recorder); data["mode"] != float64(0) || data["name"] != "QMI" {
- t.Fatalf("fix-usbnet data = %v", data)
- }
- }
- func TestHandleUpdateApplyIsSafeNoop(t *testing.T) {
- server := &Server{logger: regionTestLogger()}
- recorder := httptest.NewRecorder()
- server.handleUpdateApply(recorder, httptest.NewRequest(http.MethodPost, "/apply", nil))
- if recorder.Code != http.StatusOK {
- t.Fatalf("status = %d", recorder.Code)
- }
- if data := decodeData(t, recorder); data["applied"] != false {
- t.Fatalf("update apply must be a no-op, got %v", data)
- }
- }
- func TestE911WebsheetFlow(t *testing.T) {
- database, err := store.Open(context.Background(), ":memory:")
- if err != nil {
- t.Fatal(err)
- }
- t.Cleanup(func() { _ = database.Close() })
- server := &Server{
- store: database,
- logger: regionTestLogger(),
- websheets: newWebsheetManager(),
- maxRequestBodyBytes: 4096,
- }
- // 1. Create the websheet.
- createRec := httptest.NewRecorder()
- server.handleE911Websheet(createRec, httptest.NewRequest(http.MethodPost, "/e911", nil), store.Device{ID: "dev1"})
- if createRec.Code != http.StatusOK {
- t.Fatalf("create status = %d, body=%s", createRec.Code, createRec.Body.String())
- }
- createData := decodeData(t, createRec)
- embedURL, _ := createData["embed_url"].(string)
- if embedURL == "" || !strings.HasPrefix(embedURL, "/websheets/") {
- t.Fatalf("embed_url = %v", createData["embed_url"])
- }
- // 2. The form is served for a valid token.
- formRec := httptest.NewRecorder()
- server.handleWebsheet(formRec, httptest.NewRequest(http.MethodGet, embedURL, nil))
- if formRec.Code != http.StatusOK || !strings.Contains(formRec.Body.String(), "E911") {
- t.Fatalf("form status = %d", formRec.Code)
- }
- // 3. The callback stores the address, and done completes the session.
- callbackURL := strings.Replace(embedURL, "?", "/callback?", 1)
- callbackReq := httptest.NewRequest(http.MethodPost, callbackURL, strings.NewReader(`{"street":"1 Main St","city":"Springfield","country":"US"}`))
- callbackReq.Header.Set("Content-Type", "application/json")
- callbackRec := httptest.NewRecorder()
- server.handleWebsheet(callbackRec, callbackReq)
- if callbackRec.Code != http.StatusOK {
- t.Fatalf("callback status = %d, body=%s", callbackRec.Code, callbackRec.Body.String())
- }
- stored, err := database.AppSetting(context.Background(), "e911_address:dev1")
- if err != nil || !strings.Contains(string(stored.Value), "Springfield") {
- t.Fatalf("e911 address not persisted: %v %v", stored, err)
- }
- doneURL := strings.Replace(embedURL, "?", "/done?", 1)
- doneRec := httptest.NewRecorder()
- server.handleWebsheet(doneRec, httptest.NewRequest(http.MethodPost, doneURL, nil))
- if doneRec.Code != http.StatusOK {
- t.Fatalf("done status = %d", doneRec.Code)
- }
- }
- func TestE911WebsheetRejectsBadToken(t *testing.T) {
- server := &Server{logger: regionTestLogger(), websheets: newWebsheetManager()}
- session := server.websheets.create("dev1")
- recorder := httptest.NewRecorder()
- server.handleWebsheet(recorder, httptest.NewRequest(http.MethodGet, "/websheets/"+session.id+"?token=wrong", nil))
- if recorder.Code != http.StatusForbidden {
- t.Fatalf("bad token status = %d, want 403", recorder.Code)
- }
- }
|