mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
Some checks failed
SqlStore Integration Tests / test-postgres (3.12) (push) Failing after 1s
Integration Auth Tests / test-matrix (oauth2_token) (push) Failing after 1s
Integration Tests (Replay) / generate-matrix (push) Successful in 5s
SqlStore Integration Tests / test-postgres (3.13) (push) Failing after 6s
Test Llama Stack Build / generate-matrix (push) Successful in 3s
Test External Providers Installed via Module / test-external-providers-from-module (venv) (push) Has been skipped
Test llama stack list-deps / generate-matrix (push) Successful in 3s
Python Package Build Test / build (3.13) (push) Failing after 3s
API Conformance Tests / check-schema-compatibility (push) Successful in 13s
Python Package Build Test / build (3.12) (push) Failing after 7s
Test llama stack list-deps / show-single-provider (push) Successful in 28s
Test llama stack list-deps / list-deps-from-config (push) Successful in 33s
Test External API and Providers / test-external (venv) (push) Failing after 33s
Vector IO Integration Tests / test-matrix (push) Failing after 43s
Test llama stack list-deps / list-deps (push) Failing after 34s
Test Llama Stack Build / build-single-provider (push) Successful in 46s
Test Llama Stack Build / build (push) Successful in 55s
UI Tests / ui-tests (22) (push) Successful in 1m17s
Test Llama Stack Build / build-ubi9-container-distribution (push) Successful in 1m37s
Unit Tests / unit-tests (3.12) (push) Failing after 1m32s
Unit Tests / unit-tests (3.13) (push) Failing after 2m12s
Test Llama Stack Build / build-custom-container-distribution (push) Successful in 2m21s
Integration Tests (Replay) / Integration Tests (, , , client=, ) (push) Failing after 2m46s
Pre-commit / pre-commit (push) Successful in 3m7s
These primitives (used both by the Stack as well as provider implementations) can be thought of fruitfully as internal-only APIs which can themselves have multiple implementations. We use the new `llama_stack_api.internal` namespace for this. In addition: the change moves kv/sql store impls, configs, and dependency helpers under `core/storage` ## Testing `pytest tests/unit/utils/test_authorized_sqlstore.py`, other existing CI
88 lines
4.1 KiB
Python
88 lines
4.1 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the terms described in the LICENSE file in
|
|
# the root directory of this source tree.
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from llama_stack.core.datatypes import User
|
|
from llama_stack.providers.remote.files.s3.files import S3FilesImpl
|
|
from llama_stack_api import OpenAIFilePurpose, ResourceNotFoundError
|
|
|
|
|
|
async def test_listing_hides_other_users_file(s3_provider, sample_text_file):
|
|
"""Listing should not show files uploaded by other users."""
|
|
user_a = User("user-a", {"roles": ["team-a"]})
|
|
user_b = User("user-b", {"roles": ["team-b"]})
|
|
|
|
with patch("llama_stack.core.storage.sqlstore.authorized_sqlstore.get_authenticated_user") as mock_get_user:
|
|
mock_get_user.return_value = user_a
|
|
uploaded = await s3_provider.openai_upload_file(file=sample_text_file, purpose=OpenAIFilePurpose.ASSISTANTS)
|
|
|
|
with patch("llama_stack.core.storage.sqlstore.authorized_sqlstore.get_authenticated_user") as mock_get_user:
|
|
mock_get_user.return_value = user_b
|
|
listed = await s3_provider.openai_list_files()
|
|
assert all(f.id != uploaded.id for f in listed.data)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"op",
|
|
[S3FilesImpl.openai_retrieve_file, S3FilesImpl.openai_retrieve_file_content, S3FilesImpl.openai_delete_file],
|
|
ids=["retrieve", "content", "delete"],
|
|
)
|
|
async def test_cannot_access_other_user_file(s3_provider, sample_text_file, op):
|
|
"""Operations (metadata/content/delete) on another user's file should raise ResourceNotFoundError.
|
|
|
|
`op` is an async callable (provider, file_id) -> awaits the requested operation.
|
|
"""
|
|
user_a = User("user-a", {"roles": ["team-a"]})
|
|
user_b = User("user-b", {"roles": ["team-b"]})
|
|
|
|
with patch("llama_stack.core.storage.sqlstore.authorized_sqlstore.get_authenticated_user") as mock_get_user:
|
|
mock_get_user.return_value = user_a
|
|
uploaded = await s3_provider.openai_upload_file(file=sample_text_file, purpose=OpenAIFilePurpose.ASSISTANTS)
|
|
|
|
with patch("llama_stack.core.storage.sqlstore.authorized_sqlstore.get_authenticated_user") as mock_get_user:
|
|
mock_get_user.return_value = user_b
|
|
with pytest.raises(ResourceNotFoundError):
|
|
await op(s3_provider, uploaded.id)
|
|
|
|
|
|
async def test_shared_role_allows_listing(s3_provider, sample_text_file):
|
|
"""Listing should show files uploaded by other users when roles are shared."""
|
|
user_a = User("user-a", {"roles": ["shared-role"]})
|
|
user_b = User("user-b", {"roles": ["shared-role"]})
|
|
|
|
with patch("llama_stack.core.storage.sqlstore.authorized_sqlstore.get_authenticated_user") as mock_get_user:
|
|
mock_get_user.return_value = user_a
|
|
uploaded = await s3_provider.openai_upload_file(file=sample_text_file, purpose=OpenAIFilePurpose.ASSISTANTS)
|
|
|
|
with patch("llama_stack.core.storage.sqlstore.authorized_sqlstore.get_authenticated_user") as mock_get_user:
|
|
mock_get_user.return_value = user_b
|
|
listed = await s3_provider.openai_list_files()
|
|
assert any(f.id == uploaded.id for f in listed.data)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"op",
|
|
[S3FilesImpl.openai_retrieve_file, S3FilesImpl.openai_retrieve_file_content, S3FilesImpl.openai_delete_file],
|
|
ids=["retrieve", "content", "delete"],
|
|
)
|
|
async def test_shared_role_allows_access(s3_provider, sample_text_file, op):
|
|
"""Operations (metadata/content/delete) on another user's file should succeed when users share a role.
|
|
|
|
`op` is an async callable (provider, file_id) -> awaits the requested operation.
|
|
"""
|
|
user_x = User("user-x", {"roles": ["shared-role"]})
|
|
user_y = User("user-y", {"roles": ["shared-role"]})
|
|
|
|
with patch("llama_stack.core.storage.sqlstore.authorized_sqlstore.get_authenticated_user") as mock_get_user:
|
|
mock_get_user.return_value = user_x
|
|
uploaded = await s3_provider.openai_upload_file(file=sample_text_file, purpose=OpenAIFilePurpose.ASSISTANTS)
|
|
|
|
with patch("llama_stack.core.storage.sqlstore.authorized_sqlstore.get_authenticated_user") as mock_get_user:
|
|
mock_get_user.return_value = user_y
|
|
await op(s3_provider, uploaded.id)
|