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
49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package event
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/larksuite/cli/internal/output"
|
|
)
|
|
|
|
func TestExitForOrphan_Orphan(t *testing.T) {
|
|
statuses := []appStatus{
|
|
{AppID: "cli_a", State: stateRunning},
|
|
{AppID: "cli_b", State: stateOrphan, PID: 70926},
|
|
}
|
|
err := exitForOrphan(statuses, true)
|
|
if err == nil {
|
|
t.Fatal("expected error when failOnOrphan=true and orphan present")
|
|
}
|
|
var bareErr *output.BareError
|
|
if !errors.As(err, &bareErr) {
|
|
t.Fatalf("expected *output.BareError, got %T", err)
|
|
}
|
|
if bareErr.Code != output.ExitValidation {
|
|
t.Errorf("Code = %d, want %d", bareErr.Code, output.ExitValidation)
|
|
}
|
|
}
|
|
|
|
func TestExitForOrphan_NoOrphan(t *testing.T) {
|
|
statuses := []appStatus{
|
|
{AppID: "cli_a", State: stateRunning},
|
|
{AppID: "cli_b", State: stateNotRunning},
|
|
}
|
|
if err := exitForOrphan(statuses, true); err != nil {
|
|
t.Errorf("expected nil error when no orphan; got %v", err)
|
|
}
|
|
}
|
|
|
|
func TestExitForOrphan_FlagDisabled(t *testing.T) {
|
|
statuses := []appStatus{
|
|
{AppID: "cli_b", State: stateOrphan, PID: 70926},
|
|
}
|
|
if err := exitForOrphan(statuses, false); err != nil {
|
|
t.Errorf("flag off should never return error; got %v", err)
|
|
}
|
|
}
|