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
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package platform_test
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/larksuite/cli/extension/platform"
|
|
)
|
|
|
|
func TestCommandDeniedError_messageFormats(t *testing.T) {
|
|
withReason := &platform.CommandDeniedError{
|
|
Path: "docs/+update",
|
|
Layer: "policy",
|
|
ReasonCode: "write_not_allowed",
|
|
Reason: "write disabled by policy",
|
|
}
|
|
if got := withReason.Error(); got != `command "docs/+update" denied: write disabled by policy` {
|
|
t.Fatalf("Error() with Reason = %q", got)
|
|
}
|
|
|
|
noReason := &platform.CommandDeniedError{
|
|
Path: "docs/+update",
|
|
Layer: "strict_mode",
|
|
ReasonCode: "identity_not_supported",
|
|
}
|
|
if got := noReason.Error(); got != `command "docs/+update" denied (strict_mode/identity_not_supported)` {
|
|
t.Fatalf("Error() without Reason = %q", got)
|
|
}
|
|
}
|
|
|
|
// errors.As must work so consumers can type-assert without unwrap gymnastics.
|
|
func TestCommandDeniedError_satisfiesErrorsAs(t *testing.T) {
|
|
var err error = &platform.CommandDeniedError{Path: "x"}
|
|
var target *platform.CommandDeniedError
|
|
if !errors.As(err, &target) {
|
|
t.Fatalf("errors.As should match CommandDeniedError")
|
|
}
|
|
if target.Path != "x" {
|
|
t.Fatalf("target.Path = %q, want %q", target.Path, "x")
|
|
}
|
|
}
|