Two journeys against a live server + Postgres: - `group_module_is_lexically_sealed_under_inheritance`: a group module + a group endpoint that imports it, inherited by an app — proves the §5.5 trust boundary (a leaf's same-named module does NOT shadow the inherited endpoint's import) and app-origin CoW (an app endpoint's import resolves the app's module). - `dangling_import_is_rejected_by_plan`: a manifest script importing a non-existent module is a `pic plan` error. Docs: mark §5.5 residual resolved + §11 Phase 4b ✅ in the design doc; update CLAUDE.md current-focus (extension points are the remaining §5.5 piece). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
45 lines
930 B
Rust
45 lines
930 B
Rust
//! Integration-test binary for the `pic` CLI.
|
|
//!
|
|
//! Every `#[test]` in this binary routes through `common::fixture()`, a
|
|
//! `LazyLock` that spawns picloud once on a private port and reuses it
|
|
//! across all journey modules. Mirrors the dashboard Playwright suite,
|
|
//! which spins backend + Vite up once for 63 specs.
|
|
//!
|
|
//! Gated on `DATABASE_URL`. To run:
|
|
//!
|
|
//! docker compose up -d postgres
|
|
//! DATABASE_URL=postgres://picloud:picloud@127.0.0.1:15432/picloud \
|
|
//! cargo test -p picloud-cli --test cli -- --include-ignored
|
|
|
|
mod common;
|
|
|
|
mod admins;
|
|
mod api_keys;
|
|
mod apply;
|
|
mod apps;
|
|
mod auth;
|
|
mod config;
|
|
mod dead_letters;
|
|
mod email_queue;
|
|
mod enabled;
|
|
mod env_overlay;
|
|
mod group_modules;
|
|
mod group_scripts;
|
|
mod group_secrets;
|
|
mod groups;
|
|
mod init;
|
|
mod invoke;
|
|
mod logs;
|
|
mod output;
|
|
mod plan;
|
|
mod prune;
|
|
mod pull;
|
|
mod roles;
|
|
mod routes;
|
|
mod scripts;
|
|
mod secrets;
|
|
mod staleness;
|
|
mod tree;
|
|
mod triggers;
|
|
mod vars;
|