larksuite--cli
bf9395e022
CI / license-header (push) Has been skipped
CI / e2e-dry-run (push) Has been skipped
CI / fast-gate (push) Failing after 0s
Test PR Label Logic / test-pr-labels (push) Failing after 1s
Skill Format Check / check-format (push) Failing after 2s
CI / security (push) Failing after 5s
CI / unit-test (push) Has been skipped
CI / lint (push) Has been skipped
CI / script-test (push) Has been skipped
CI / deterministic-gate (push) Has been skipped
CI / coverage (push) Has been skipped
CI / results (push) Has been cancelled
CI / deadcode (push) Has been cancelled
CI / e2e-live (push) Has been cancelled
271 行
8.2 KiB
Go
271 行
8.2 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package mail
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"encoding/json"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/larksuite/cli/internal/httpmock"
|
|
draftpkg "github.com/larksuite/cli/shortcuts/mail/draft"
|
|
)
|
|
|
|
func TestBuildDraftSendOutputIncludesOptionalFields(t *testing.T) {
|
|
got := buildDraftSendOutput(map[string]interface{}{
|
|
"message_id": "msg_001",
|
|
"thread_id": "thread_001",
|
|
"recall_status": "available",
|
|
"automation_send_disable": map[string]interface{}{
|
|
"reason": "Automation send is disabled by your mailbox setting",
|
|
"reference": "https://open.larksuite.com/mail/settings/automation",
|
|
},
|
|
}, "me")
|
|
|
|
if got["message_id"] != "msg_001" {
|
|
t.Fatalf("message_id = %v", got["message_id"])
|
|
}
|
|
if got["thread_id"] != "thread_001" {
|
|
t.Fatalf("thread_id = %v", got["thread_id"])
|
|
}
|
|
if _, ok := got["recall_status"]; ok {
|
|
t.Fatalf("recall_status should be omitted, got %#v", got["recall_status"])
|
|
}
|
|
if got["recall_available"] != true {
|
|
t.Fatalf("recall_available = %v", got["recall_available"])
|
|
}
|
|
if got["recall_tip"] == "" {
|
|
t.Fatalf("recall_tip should be populated")
|
|
}
|
|
if _, ok := got["automation_send_disable"]; ok {
|
|
t.Fatalf("automation_send_disable should be omitted, got %#v", got["automation_send_disable"])
|
|
}
|
|
if got["automation_send_disable_reason"] != "Automation send is disabled by your mailbox setting" {
|
|
t.Fatalf("automation_send_disable_reason = %v", got["automation_send_disable_reason"])
|
|
}
|
|
if got["automation_send_disable_reference"] != "https://open.larksuite.com/mail/settings/automation" {
|
|
t.Fatalf("automation_send_disable_reference = %v", got["automation_send_disable_reference"])
|
|
}
|
|
}
|
|
|
|
func TestBuildDraftSendOutputOmitsOptionalFieldsWhenUnavailable(t *testing.T) {
|
|
got := buildDraftSendOutput(map[string]interface{}{
|
|
"message_id": "msg_002",
|
|
"thread_id": "thread_002",
|
|
}, "me")
|
|
|
|
if got["message_id"] != "msg_002" {
|
|
t.Fatalf("message_id = %v", got["message_id"])
|
|
}
|
|
if got["thread_id"] != "thread_002" {
|
|
t.Fatalf("thread_id = %v", got["thread_id"])
|
|
}
|
|
if _, ok := got["recall_available"]; ok {
|
|
t.Fatalf("recall_available should be omitted, got %#v", got["recall_available"])
|
|
}
|
|
if _, ok := got["recall_tip"]; ok {
|
|
t.Fatalf("recall_tip should be omitted, got %#v", got["recall_tip"])
|
|
}
|
|
if _, ok := got["automation_send_disable_reason"]; ok {
|
|
t.Fatalf("automation_send_disable_reason should be omitted, got %#v", got["automation_send_disable_reason"])
|
|
}
|
|
if _, ok := got["automation_send_disable_reference"]; ok {
|
|
t.Fatalf("automation_send_disable_reference should be omitted, got %#v", got["automation_send_disable_reference"])
|
|
}
|
|
}
|
|
|
|
func TestBuildDraftSavedOutputIncludesReferenceOnlyWhenPresent(t *testing.T) {
|
|
withReference := buildDraftSavedOutput(draftpkg.DraftResult{
|
|
DraftID: "draft_001",
|
|
Reference: "https://www.feishu.cn/mail?draftId=draft_001",
|
|
}, "me")
|
|
if withReference["draft_id"] != "draft_001" {
|
|
t.Fatalf("draft_id = %v", withReference["draft_id"])
|
|
}
|
|
if withReference["reference"] != "https://www.feishu.cn/mail?draftId=draft_001" {
|
|
t.Fatalf("reference = %v", withReference["reference"])
|
|
}
|
|
if withReference["tip"] == "" {
|
|
t.Fatalf("tip should be populated")
|
|
}
|
|
|
|
withoutReference := buildDraftSavedOutput(draftpkg.DraftResult{
|
|
DraftID: "draft_002",
|
|
}, "me")
|
|
if withoutReference["draft_id"] != "draft_002" {
|
|
t.Fatalf("draft_id = %v", withoutReference["draft_id"])
|
|
}
|
|
if _, ok := withoutReference["reference"]; ok {
|
|
t.Fatalf("reference should be omitted, got %#v", withoutReference["reference"])
|
|
}
|
|
if withoutReference["tip"] == "" {
|
|
t.Fatalf("tip should be populated")
|
|
}
|
|
}
|
|
|
|
func TestMailSendConfirmSendOutputsAutomationDisable(t *testing.T) {
|
|
f, stdout, _, reg := mailShortcutTestFactoryWithSendScope(t)
|
|
|
|
reg.Register(&httpmock.Stub{
|
|
Method: "GET",
|
|
URL: "/user_mailboxes/me/profile",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"primary_email_address": "me@example.com",
|
|
},
|
|
},
|
|
})
|
|
reg.Register(&httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/user_mailboxes/me/drafts",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"draft_id": "draft_001",
|
|
},
|
|
},
|
|
})
|
|
reg.Register(&httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/user_mailboxes/me/drafts/draft_001/send",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"message_id": "msg_001",
|
|
"thread_id": "thread_001",
|
|
"automation_send_disable": map[string]interface{}{
|
|
"reason": "Automation send is disabled by your mailbox setting",
|
|
"reference": "https://open.larksuite.com/mail/settings/automation",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
err := runMountedMailShortcut(t, MailSend, []string{
|
|
"+send",
|
|
"--to", "alice@example.com",
|
|
"--subject", "hello",
|
|
"--body", "world",
|
|
"--confirm-send",
|
|
}, f, stdout)
|
|
if err != nil {
|
|
t.Fatalf("send failed: %v", err)
|
|
}
|
|
|
|
data := decodeShortcutEnvelopeData(t, stdout)
|
|
if data["message_id"] != "msg_001" {
|
|
t.Fatalf("message_id = %v", data["message_id"])
|
|
}
|
|
if data["thread_id"] != "thread_001" {
|
|
t.Fatalf("thread_id = %v", data["thread_id"])
|
|
}
|
|
if _, ok := data["automation_send_disable"]; ok {
|
|
t.Fatalf("automation_send_disable should be omitted, got %#v", data["automation_send_disable"])
|
|
}
|
|
if data["automation_send_disable_reason"] != "Automation send is disabled by your mailbox setting" {
|
|
t.Fatalf("automation_send_disable_reason = %v", data["automation_send_disable_reason"])
|
|
}
|
|
if data["automation_send_disable_reference"] != "https://open.larksuite.com/mail/settings/automation" {
|
|
t.Fatalf("automation_send_disable_reference = %v", data["automation_send_disable_reference"])
|
|
}
|
|
}
|
|
|
|
func TestMailSendSaveDraftOutputsReference(t *testing.T) {
|
|
f, stdout, _, reg := mailShortcutTestFactoryWithSendScope(t)
|
|
|
|
reg.Register(&httpmock.Stub{
|
|
Method: "GET",
|
|
URL: "/user_mailboxes/me/profile",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"primary_email_address": "me@example.com",
|
|
},
|
|
},
|
|
})
|
|
reg.Register(&httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/user_mailboxes/me/drafts",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"draft_id": "draft_001",
|
|
"reference": "https://www.feishu.cn/mail?draftId=draft_001",
|
|
},
|
|
},
|
|
})
|
|
|
|
err := runMountedMailShortcut(t, MailSend, []string{
|
|
"+send",
|
|
"--to", "alice@example.com",
|
|
"--subject", "hello",
|
|
"--body", "world",
|
|
}, f, stdout)
|
|
if err != nil {
|
|
t.Fatalf("save draft failed: %v", err)
|
|
}
|
|
|
|
data := decodeShortcutEnvelopeData(t, stdout)
|
|
if data["draft_id"] != "draft_001" {
|
|
t.Fatalf("draft_id = %v", data["draft_id"])
|
|
}
|
|
if data["reference"] != "https://www.feishu.cn/mail?draftId=draft_001" {
|
|
t.Fatalf("reference = %v", data["reference"])
|
|
}
|
|
}
|
|
|
|
func TestMailSend_WithCalendarEventEmbedded(t *testing.T) {
|
|
f, stdout, _, reg := mailShortcutTestFactoryWithSendScope(t)
|
|
|
|
draftsStub := &httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/user_mailboxes/me/drafts",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{"draft_id": "draft_cal_001"},
|
|
},
|
|
}
|
|
reg.Register(&httpmock.Stub{
|
|
Method: "GET",
|
|
URL: "/user_mailboxes/me/profile",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{"primary_email_address": "me@example.com"},
|
|
},
|
|
})
|
|
reg.Register(draftsStub)
|
|
|
|
err := runMountedMailShortcut(t, MailSend, []string{
|
|
"+send",
|
|
"--to", "alice@example.com",
|
|
"--subject", "Team Sync",
|
|
"--body", "<p>Please join us</p>",
|
|
"--event-summary", "Team Sync",
|
|
"--event-start", "2026-05-10T10:00+08:00",
|
|
"--event-end", "2026-05-10T11:00+08:00",
|
|
}, f, stdout)
|
|
if err != nil {
|
|
t.Fatalf("mail send with calendar failed: %v", err)
|
|
}
|
|
|
|
var reqBody map[string]interface{}
|
|
if err := json.Unmarshal(draftsStub.CapturedBody, &reqBody); err != nil {
|
|
t.Fatalf("unmarshal captured body: %v", err)
|
|
}
|
|
raw, _ := reqBody["raw"].(string)
|
|
decoded, decErr := base64.URLEncoding.DecodeString(raw)
|
|
if decErr != nil {
|
|
t.Fatalf("base64url decode: %v", decErr)
|
|
}
|
|
eml := string(decoded)
|
|
if !strings.Contains(eml, "text/calendar") {
|
|
t.Errorf("expected text/calendar in EML:\n%s", eml)
|
|
}
|
|
if !strings.Contains(eml, "method=REQUEST") {
|
|
t.Errorf("expected method=REQUEST in Content-Type:\n%s", eml)
|
|
}
|
|
}
|