mirror of
https://github.com/larksuite/cli.git
synced 2026-08-03 08:32:46 +08:00
* feat(apps): read LARKSUITE_CLI_AGENT env var and pass app_source in +create
* feat(apps): add queryAppMeta shared function for app_type/arch_type lookup
* feat(apps): skip scaffold for legacy html apps, pass app_type/arch_type for arch_type=4 html in +init
* feat(apps): add zip packaging for arch_type=4 html publish path
* feat(apps): add TOS upload path for arch_type=4 html in +html-publish with arch_type-based routing
* refactor(apps): replace appMeta struct with queryAppType string for simpler routing
* refactor(apps): simplify to source_agent in +create, unified scaffold in +init, revert html-publish changes
* feat(apps): add --source-path flag to +init for existing source file incorporation
* fix(apps): align queryAppType with actual API path and response structure
* refactor(apps): use appInfo struct to parse GET /apps/{id} response
* test(apps): add full_stack scaffold test case
* feat(apps): surface sync field in +release-create response
* refactor(apps): remove --template flag from +init, derive template from queryAppType with full_stack fallback
* style(apps): fix gofmt formatting in apps_init.go
* test(apps): improve coverage for sync field, queryAppType, and scaffoldInitArgs
* chore(apps): pin miaoda-cli to alpha version 0.1.20-alpha.dd573f8
* feat(apps): add modern_html enum and pass --app-type instead of --template to miaoda-cli
* chore: add global PPE headers for testing (x-use-ppe, x-tt-env)
* feat(apps): add TOS upload path in +html-publish for modern_html, add --tos-path to +release-create
* feat(apps): unify html-publish output structure with app_id for both html and modern_html
* fix(apps): use newFileTransferClient for TOS presigned upload to satisfy forbidigo lint
* test(apps): add coverage for runHTMLPublishTOS success, errors, and upload failures
* fix(apps): change pre_release API method from POST to GET
* fix(apps): adapt pre_release response from map to list<KV> format
* fix(apps): use PUT method and Content-Length for TOS presigned upload
* fix(apps): use tos_path instead of tosPath in release-create request body
* chore(apps): add npmmirror registry for npx miaoda-cli, fix TOS upload test to expect PUT
* refactor(apps): use envvars.AgentName() for source_agent in +create
* feat(apps): integrate release-create into html-publish for modern_html, auto-detect modern_html from doubao agent env
* refactor(apps): remove --tos-path flag from +release-create (now internal to html-publish)
* refactor(apps): remove app_id from html-publish output, update skill doc
* docs(apps): update html-publish description to reflect dual return values
* refactor(apps): remove doubao app_type conversion in +create, let server decide via source_agent
* feat(apps): skip env-pull for modern_html apps in +init
* test(apps): add tests for modern_html env-pull skip in +init
* refactor(apps): introduce appTypePolicy for init control points (skipInstall, skipEnvPull, skipSkillsSync)
* feat(apps): add init step timing and default git config for +init
* feat(apps): add +get shortcut to fetch single app detail by app_id
* chore(apps): remove init step timing (not ready for production)
* test(apps): add coverage for +get shortcut
* chore: remove PPE headers and revert miaoda-cli to @latest for production
* refactor(apps): extract shared prepareHTMLPublishTarball, fix stale comments, simplify queryAppType
* fix(apps): update html-publish dry-run desc, remove hardcoded API path
* fix(apps): use rctx.IO().ErrOut instead of os.Stderr, remove unused appInfo struct
* fix(apps): restore dry-run API path output for E2E compatibility
* refactor(apps): move --source-path control char validation to Validate for dry-run coverage
* fix(apps): update stale --template comments to --app-type in init tests
* test(apps): explicitly unset agent env var for test isolation
366 lines
11 KiB
Go
366 lines
11 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package apps
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/larksuite/cli/errs"
|
|
"github.com/larksuite/cli/internal/cmdutil"
|
|
"github.com/larksuite/cli/internal/core"
|
|
"github.com/larksuite/cli/internal/httpmock"
|
|
"github.com/larksuite/cli/shortcuts/common"
|
|
)
|
|
|
|
// 测试基础设施 —— 后续 Task 2.2-2.4 / Task 3.4 复用
|
|
|
|
func newAppsExecuteFactory(t *testing.T) (*cmdutil.Factory, *bytes.Buffer, *httpmock.Registry) {
|
|
t.Helper()
|
|
t.Setenv("HOME", t.TempDir())
|
|
t.Setenv("LARKSUITE_CLI_CONFIG_DIR", t.TempDir())
|
|
cfg := &core.CliConfig{
|
|
AppID: "test-app-" + strings.ToLower(t.Name()),
|
|
AppSecret: "test-secret",
|
|
Brand: core.BrandFeishu,
|
|
UserOpenId: "ou_test",
|
|
}
|
|
factory, stdout, _, reg := cmdutil.TestFactory(t, cfg)
|
|
return factory, stdout, reg
|
|
}
|
|
|
|
func runAppsShortcut(t *testing.T, sc common.Shortcut, args []string, factory *cmdutil.Factory, stdout *bytes.Buffer) error {
|
|
t.Helper()
|
|
parent := &cobra.Command{Use: "apps"}
|
|
sc.Mount(parent, factory)
|
|
parent.SetArgs(args)
|
|
parent.SilenceErrors = true
|
|
parent.SilenceUsage = true
|
|
if stdout != nil {
|
|
stdout.Reset()
|
|
}
|
|
return parent.ExecuteContext(context.Background())
|
|
}
|
|
|
|
func requireAppsProblem(t *testing.T, err error, category errs.Category) *errs.Problem {
|
|
t.Helper()
|
|
if err == nil {
|
|
t.Fatalf("expected error")
|
|
}
|
|
p, ok := errs.ProblemOf(err)
|
|
if !ok {
|
|
t.Fatalf("expected typed problem, got %T: %v", err, err)
|
|
}
|
|
if p.Category != category {
|
|
t.Fatalf("error category = %q, want %q", p.Category, category)
|
|
}
|
|
return p
|
|
}
|
|
|
|
func requireAppsValidationProblem(t *testing.T, err error) *errs.Problem {
|
|
t.Helper()
|
|
return requireAppsProblem(t, err, errs.CategoryValidation)
|
|
}
|
|
|
|
func requireAppsAPIProblem(t *testing.T, err error) *errs.Problem {
|
|
t.Helper()
|
|
return requireAppsProblem(t, err, errs.CategoryAPI)
|
|
}
|
|
|
|
// +create 测试
|
|
|
|
func TestAppsCreate_Success(t *testing.T) {
|
|
factory, stdout, reg := newAppsExecuteFactory(t)
|
|
stub := &httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/open-apis/spark/v1/apps",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"app": map[string]interface{}{
|
|
"app_id": "app_x",
|
|
"name": "Demo",
|
|
"icon_url": "https://lf3-static.bytednsdoc.com/.../default.svg",
|
|
"created_at": "2026-05-18T10:00:00Z",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
reg.Register(stub)
|
|
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "html", "--description", "d", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("execute err=%v", err)
|
|
}
|
|
if got := stdout.String(); !strings.Contains(got, `"app_id": "app_x"`) {
|
|
t.Fatalf("stdout missing app_id: %s", got)
|
|
}
|
|
|
|
var sent map[string]interface{}
|
|
if err := json.Unmarshal(stub.CapturedBody, &sent); err != nil {
|
|
t.Fatalf("decode body: %v", err)
|
|
}
|
|
if sent["name"] != "Demo" {
|
|
t.Fatalf("body.name = %v", sent["name"])
|
|
}
|
|
if sent["app_type"] != "html" {
|
|
t.Fatalf("body.app_type = %v (want html)", sent["app_type"])
|
|
}
|
|
if sent["description"] != "d" {
|
|
t.Fatalf("body.description = %v", sent["description"])
|
|
}
|
|
if _, present := sent["icon_url"]; present {
|
|
t.Fatalf("icon_url should be omitted when not provided: %v", sent)
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_WithIconURL(t *testing.T) {
|
|
factory, stdout, reg := newAppsExecuteFactory(t)
|
|
reg.Register(&httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/open-apis/spark/v1/apps",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"app": map[string]interface{}{"app_id": "app_x", "name": "Demo"},
|
|
},
|
|
},
|
|
})
|
|
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "html", "--icon-url", "https://example.com/icon.svg", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("execute err=%v", err)
|
|
}
|
|
}
|
|
|
|
// TestAppsCreate_PrettyOutputReadsNestedAppID exercises the prettyFn callback
|
|
// passed to OutFormat (only invoked under --format pretty) so the new
|
|
// data.app.app_id nesting is actually read by the text writer. Without this,
|
|
// default --format json dumps the whole envelope and the substring assertion
|
|
// in TestAppsCreate_Success would pass even if the GetString path were wrong.
|
|
func TestAppsCreate_PrettyOutputReadsNestedAppID(t *testing.T) {
|
|
factory, stdout, reg := newAppsExecuteFactory(t)
|
|
reg.Register(&httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/open-apis/spark/v1/apps",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"app": map[string]interface{}{"app_id": "app_x", "name": "Demo"},
|
|
},
|
|
},
|
|
})
|
|
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "html", "--format", "pretty", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("execute err=%v", err)
|
|
}
|
|
if got := stdout.String(); !strings.Contains(got, "created: app_x") {
|
|
t.Fatalf("pretty output should read app_id from data.app.app_id, got: %q", got)
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_RequiresName(t *testing.T) {
|
|
factory, stdout, _ := newAppsExecuteFactory(t)
|
|
err := runAppsShortcut(t, AppsCreate, []string{"+create", "--app-type", "html", "--as", "user"}, factory, stdout)
|
|
if err == nil || !strings.Contains(err.Error(), "name") {
|
|
t.Fatalf("expected name required error, got %v", err)
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_RequiresAppType(t *testing.T) {
|
|
factory, stdout, _ := newAppsExecuteFactory(t)
|
|
err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--as", "user"}, factory, stdout)
|
|
if err == nil || !strings.Contains(err.Error(), "app-type") {
|
|
t.Fatalf("expected --app-type required error, got %v", err)
|
|
}
|
|
}
|
|
|
|
// TestAppsCreate_RejectsInvalidAppType pins that --app-type is a strict
|
|
// lowercase enum (html / full_stack). Unknown values and legacy uppercase are
|
|
// both rejected by the flag's Enum — the CLI does not normalize case; legacy
|
|
// uppercase compatibility is a server-side concern, not surfaced by the client.
|
|
func TestAppsCreate_RejectsInvalidAppType(t *testing.T) {
|
|
for _, appType := range []string{"spa", "HTML", "Full_Stack"} {
|
|
t.Run(appType, func(t *testing.T) {
|
|
factory, stdout, _ := newAppsExecuteFactory(t)
|
|
err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", appType, "--as", "user"},
|
|
factory, stdout)
|
|
if err == nil || !strings.Contains(err.Error(), "invalid value") {
|
|
t.Fatalf("expected invalid-enum error for %q, got %v", appType, err)
|
|
}
|
|
if !strings.Contains(err.Error(), "full_stack") {
|
|
t.Fatalf("expected enum error to list allowed values, got %v", err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_DryRun(t *testing.T) {
|
|
factory, stdout, _ := newAppsExecuteFactory(t)
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "html", "--dry-run", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("dry-run err=%v", err)
|
|
}
|
|
got := stdout.String()
|
|
if !strings.Contains(got, "/open-apis/spark/v1/apps") {
|
|
t.Fatalf("dry-run missing endpoint: %s", got)
|
|
}
|
|
if !strings.Contains(got, `"name": "Demo"`) {
|
|
t.Fatalf("dry-run missing body: %s", got)
|
|
}
|
|
if !strings.Contains(got, `"app_type": "html"`) {
|
|
t.Fatalf("dry-run missing app_type: %s", got)
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_FullstackSuccess(t *testing.T) {
|
|
factory, stdout, reg := newAppsExecuteFactory(t)
|
|
stub := &httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/open-apis/spark/v1/apps",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"app": map[string]interface{}{"app_id": "app_fs", "name": "Demo"},
|
|
},
|
|
},
|
|
}
|
|
reg.Register(stub)
|
|
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "full_stack", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("execute err=%v", err)
|
|
}
|
|
|
|
var sent map[string]interface{}
|
|
if err := json.Unmarshal(stub.CapturedBody, &sent); err != nil {
|
|
t.Fatalf("decode body: %v", err)
|
|
}
|
|
if sent["app_type"] != "full_stack" {
|
|
t.Fatalf("body.app_type = %v (want full_stack)", sent["app_type"])
|
|
}
|
|
if _, present := sent["message"]; present {
|
|
t.Fatalf("message should never be sent: %v", sent)
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_FullstackDryRun(t *testing.T) {
|
|
factory, stdout, _ := newAppsExecuteFactory(t)
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "full_stack", "--dry-run", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("dry-run err=%v", err)
|
|
}
|
|
got := stdout.String()
|
|
if !strings.Contains(got, `"app_type": "full_stack"`) {
|
|
t.Fatalf("dry-run missing app_type full_stack: %s", got)
|
|
}
|
|
if strings.Contains(got, `"message"`) {
|
|
t.Fatalf("dry-run should not contain message: %s", got)
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_WithAgentEnvVar(t *testing.T) {
|
|
t.Setenv("LARKSUITE_CLI_AGENT_NAME", "doubao")
|
|
factory, stdout, reg := newAppsExecuteFactory(t)
|
|
stub := &httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/open-apis/spark/v1/apps",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"app": map[string]interface{}{"app_id": "app_d", "name": "Demo"},
|
|
},
|
|
},
|
|
}
|
|
reg.Register(stub)
|
|
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "html", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("execute err=%v", err)
|
|
}
|
|
|
|
var sent map[string]interface{}
|
|
if err := json.Unmarshal(stub.CapturedBody, &sent); err != nil {
|
|
t.Fatalf("decode body: %v", err)
|
|
}
|
|
if sent["source_agent"] != "doubao" {
|
|
t.Fatalf("body.source_agent = %v, want doubao", sent["source_agent"])
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_WithoutAgentEnvVar(t *testing.T) {
|
|
t.Setenv("LARKSUITE_CLI_AGENT_NAME", "")
|
|
factory, stdout, reg := newAppsExecuteFactory(t)
|
|
stub := &httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/open-apis/spark/v1/apps",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"app": map[string]interface{}{"app_id": "app_d", "name": "Demo"},
|
|
},
|
|
},
|
|
}
|
|
reg.Register(stub)
|
|
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "html", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("execute err=%v", err)
|
|
}
|
|
|
|
var sent map[string]interface{}
|
|
if err := json.Unmarshal(stub.CapturedBody, &sent); err != nil {
|
|
t.Fatalf("decode body: %v", err)
|
|
}
|
|
if _, present := sent["source_agent"]; present {
|
|
t.Fatalf("source_agent should not be present when env var is empty: %v", sent)
|
|
}
|
|
}
|
|
|
|
func TestAppsCreate_AgentEnvVarNotSet(t *testing.T) {
|
|
t.Setenv("LARKSUITE_CLI_AGENT_NAME", "")
|
|
factory, stdout, reg := newAppsExecuteFactory(t)
|
|
stub := &httpmock.Stub{
|
|
Method: "POST",
|
|
URL: "/open-apis/spark/v1/apps",
|
|
Body: map[string]interface{}{
|
|
"code": 0,
|
|
"data": map[string]interface{}{
|
|
"app": map[string]interface{}{"app_id": "app_d", "name": "Demo"},
|
|
},
|
|
},
|
|
}
|
|
reg.Register(stub)
|
|
|
|
if err := runAppsShortcut(t, AppsCreate,
|
|
[]string{"+create", "--name", "Demo", "--app-type", "html", "--as", "user"},
|
|
factory, stdout); err != nil {
|
|
t.Fatalf("execute err=%v", err)
|
|
}
|
|
|
|
var sent map[string]interface{}
|
|
if err := json.Unmarshal(stub.CapturedBody, &sent); err != nil {
|
|
t.Fatalf("decode body: %v", err)
|
|
}
|
|
if _, present := sent["source_agent"]; present {
|
|
t.Fatalf("source_agent should not be present when env var is unset: %v", sent)
|
|
}
|
|
}
|