feat: add search commands (task 0016) #17

Merged
alexion merged 2 commits from task-0016-search-commands into main 2026-07-14 10:24:15 -04:00
2 changed files with 23 additions and 0 deletions
Showing only changes of commit c2c5f1728c - Show all commits

View File

@@ -16,3 +16,7 @@ Fall back to `tea pr create --login alexion --base main --head <branch>` only fo
Task branches are merged into `main` on the remote, so the local `main` goes stale. Task branches are merged into `main` on the remote, so the local `main` goes stale.
Always `git fetch origin` and cut a task branch from `origin/main`, not from whatever local `main` happens to point at. Always `git fetch origin` and cut a task branch from `origin/main`, not from whatever local `main` happens to point at.
Gitea's issue/PR search endpoint (`GET /repos/issues/search`, behind `search issues`/`search prs`) is backed by an **asynchronous, eventually-consistent issue indexer** (bleve by default).
Content created moments earlier may not be searchable yet, so end-to-end assertions that create an issue/PR and then search for it must poll (e.g. `expect.poll`) until it is indexed rather than searching once.
The fixture tier is unaffected — it stubs the endpoint — so this bites only the live `test/e2e` tier.

View File

@@ -45,6 +45,16 @@ describe.skipIf(!E2E_URL)("end-to-end: search commands", () => {
}, 150_000); }, 150_000);
it("returns live issue matches under the locator schema", async () => { it("returns live issue matches under the locator schema", async () => {
// Gitea's search endpoint is backed by an eventually-consistent issue
// indexer, so poll until the seeded issue has been indexed and surfaces
// under the locator-schema header before asserting on the exact output.
await expect
.poll(
async () => (await runCliTest(["search", "issues", "issue"], { env: env() })).stdout,
{ timeout: 20_000, interval: 500 },
)
.toMatch(/^issues\[\d+\]\{number,title,state,author,created\}:$/m);
const { stdout, exitCode } = await runCliTest(["search", "issues", "issue"], { const { stdout, exitCode } = await runCliTest(["search", "issues", "issue"], {
env: env(), env: env(),
}); });
@@ -61,6 +71,15 @@ describe.skipIf(!E2E_URL)("end-to-end: search commands", () => {
}); });
it("returns live pull-request matches under the locator schema", async () => { it("returns live pull-request matches under the locator schema", async () => {
// The PR was opened moments ago in beforeAll; the indexer needs a beat to
// catch up, so poll the search until the PR surfaces before asserting.
await expect
.poll(
async () => (await runCliTest(["search", "prs", "search"], { env: env() })).stdout,
{ timeout: 20_000, interval: 500 },
)
.toMatch(/^pull_requests\[\d+\]\{number,title,state,author,created\}:$/m);
const { stdout, exitCode } = await runCliTest(["search", "prs", "search"], { const { stdout, exitCode } = await runCliTest(["search", "prs", "search"], {
env: env(), env: env(),
}); });