[PR #1021] [CLOSED] Implement llama cloud testing utilities and tests #1022

Closed
opened 2026-02-16 00:19:52 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/llama_cloud_services/pull/1021
Author: @adrianlyjak
Created: 11/23/2025
Status: Closed

Base: adrian/testing-utilsHead: cursor/implement-llama-cloud-testing-utilities-and-tests-gpt-5.1-codex-high-ae1a


📝 Commits (2)

  • 79f5501 feat: Add fake LlamaCloud server for testing extract API
  • 238d4ba feat: Add fake LlamaCloud server for local testing

📊 Changes

7 files changed (+941 additions, -0 deletions)

View changed files

📝 py/README.md (+74 -0)
py/llama_cloud_services/testing_utils/__init__.py (+17 -0)
py/llama_cloud_services/testing_utils/llama_cloud/__init__.py (+14 -0)
py/llama_cloud_services/testing_utils/llama_cloud/extract.py (+497 -0)
py/llama_cloud_services/testing_utils/llama_cloud/matchers.py (+64 -0)
py/llama_cloud_services/testing_utils/llama_cloud/server.py (+185 -0)
py/unit_tests/testing_utils/test_fake_extract.py (+90 -0)

📄 Description

Add LlamaCloud SDK testing utilities and a fake extract API to enable offline, deterministic, and stubbable testing of extraction flows.


Open in Cursor Open in Web


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/llama_cloud_services/pull/1021 **Author:** [@adrianlyjak](https://github.com/adrianlyjak) **Created:** 11/23/2025 **Status:** ❌ Closed **Base:** `adrian/testing-utils` ← **Head:** `cursor/implement-llama-cloud-testing-utilities-and-tests-gpt-5.1-codex-high-ae1a` --- ### 📝 Commits (2) - [`79f5501`](https://github.com/run-llama/llama_cloud_services/commit/79f550107310f99a9c7ea1f8b766f325ac1aec36) feat: Add fake LlamaCloud server for testing extract API - [`238d4ba`](https://github.com/run-llama/llama_cloud_services/commit/238d4ba45ce013ac87078f6d16307b891558475b) feat: Add fake LlamaCloud server for local testing ### 📊 Changes **7 files changed** (+941 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `py/README.md` (+74 -0) ➕ `py/llama_cloud_services/testing_utils/__init__.py` (+17 -0) ➕ `py/llama_cloud_services/testing_utils/llama_cloud/__init__.py` (+14 -0) ➕ `py/llama_cloud_services/testing_utils/llama_cloud/extract.py` (+497 -0) ➕ `py/llama_cloud_services/testing_utils/llama_cloud/matchers.py` (+64 -0) ➕ `py/llama_cloud_services/testing_utils/llama_cloud/server.py` (+185 -0) ➕ `py/unit_tests/testing_utils/test_fake_extract.py` (+90 -0) </details> ### 📄 Description Add LlamaCloud SDK testing utilities and a fake extract API to enable offline, deterministic, and stubbable testing of extraction flows. --- <a href="https://cursor.com/background-agent?bcId=bc-2ec77378-36c3-42d2-92d1-89963eafeee9"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/open-in-cursor-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/open-in-cursor-light.svg"><img alt="Open in Cursor" src="https://cursor.com/open-in-cursor.svg"></picture></a>&nbsp;<a href="https://cursor.com/agents?id=bc-2ec77378-36c3-42d2-92d1-89963eafeee9"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/open-in-web-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/open-in-web-light.svg"><img alt="Open in Web" src="https://cursor.com/open-in-web.svg"></picture></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 00:19:52 -05:00
yindo closed this issue 2026-02-16 00:19:52 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/llama_cloud_services#1022