| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274 |
- """Integration tests for ownership-based permission system.
- Tests the ownership permission model where users can have:
- - *_all permissions: can modify any item
- - *_own permissions: can only modify items they created
- - Ownerless items (created_by_id = null) require *_all permission
- """
- import pytest
- from httpx import AsyncClient
- class TestOwnershipPermissionsSetup:
- """Helper fixture class for ownership permission tests."""
- @pytest.fixture
- async def auth_setup(self, async_client: AsyncClient):
- """Setup auth with admin, create test users with different permission levels."""
- # Enable auth with admin user
- await async_client.post(
- "/api/v1/auth/setup",
- json={
- "auth_enabled": True,
- "admin_username": "ownershipadmin",
- "admin_password": "AdminPass1!",
- },
- )
- # Login as admin
- admin_login = await async_client.post(
- "/api/v1/auth/login",
- json={"username": "ownershipadmin", "password": "AdminPass1!"},
- )
- admin_token = admin_login.json()["access_token"]
- admin_user = admin_login.json()["user"]
- # Get group IDs
- groups_response = await async_client.get(
- "/api/v1/groups/",
- headers={"Authorization": f"Bearer {admin_token}"},
- )
- groups = groups_response.json()
- operators_group = next(g for g in groups if g["name"] == "Operators")
- viewers_group = next(g for g in groups if g["name"] == "Viewers")
- # Create operator user (has *_own permissions)
- operator_response = await async_client.post(
- "/api/v1/users/",
- headers={"Authorization": f"Bearer {admin_token}"},
- json={
- "username": "operator1",
- "password": "Operatorpass1!",
- "group_ids": [operators_group["id"]],
- },
- )
- operator_user = operator_response.json()
- # Login as operator
- operator_login = await async_client.post(
- "/api/v1/auth/login",
- json={"username": "operator1", "password": "Operatorpass1!"},
- )
- operator_token = operator_login.json()["access_token"]
- # Create second operator (for cross-user tests)
- operator2_response = await async_client.post(
- "/api/v1/users/",
- headers={"Authorization": f"Bearer {admin_token}"},
- json={
- "username": "operator2",
- "password": "Operatorpass1!",
- "group_ids": [operators_group["id"]],
- },
- )
- operator2_user = operator2_response.json()
- operator2_login = await async_client.post(
- "/api/v1/auth/login",
- json={"username": "operator2", "password": "Operatorpass1!"},
- )
- operator2_token = operator2_login.json()["access_token"]
- # Create viewer user (has no update/delete permissions)
- await async_client.post(
- "/api/v1/users/",
- headers={"Authorization": f"Bearer {admin_token}"},
- json={
- "username": "viewer1",
- "password": "Viewerpass1!",
- "group_ids": [viewers_group["id"]],
- },
- )
- viewer_login = await async_client.post(
- "/api/v1/auth/login",
- json={"username": "viewer1", "password": "Viewerpass1!"},
- )
- viewer_token = viewer_login.json()["access_token"]
- return {
- "admin_token": admin_token,
- "admin_user": admin_user,
- "operator_token": operator_token,
- "operator_user": operator_user,
- "operator2_token": operator2_token,
- "operator2_user": operator2_user,
- "viewer_token": viewer_token,
- }
- class TestArchiveOwnershipPermissions(TestOwnershipPermissionsSetup):
- """Tests for archive ownership-based permissions."""
- # ========================================================================
- # DELETE permissions
- # ========================================================================
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_admin_can_delete_any_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Admin with *_all permissions can delete any archive."""
- printer = await printer_factory()
- # Create archive owned by operator
- archive = await archive_factory(
- printer.id,
- print_name="Operator Archive",
- created_by_id=auth_setup["operator_user"]["id"],
- )
- # Admin deletes it
- response = await async_client.delete(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_delete_own_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Operator with *_own permissions can delete their own archive."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- print_name="My Archive",
- created_by_id=auth_setup["operator_user"]["id"],
- )
- response = await async_client.delete(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_delete_others_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Operator with *_own permissions cannot delete another user's archive."""
- printer = await printer_factory()
- # Archive created by operator2
- archive = await archive_factory(
- printer.id,
- print_name="Other's Archive",
- created_by_id=auth_setup["operator2_user"]["id"],
- )
- # operator1 tries to delete it
- response = await async_client.delete(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- assert "your own" in response.json()["detail"].lower()
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_delete_ownerless_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Operator with *_own permissions cannot delete ownerless archive."""
- printer = await printer_factory()
- # Archive with no owner (legacy data)
- archive = await archive_factory(
- printer.id,
- print_name="Ownerless Archive",
- created_by_id=None,
- )
- response = await async_client.delete(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_viewer_cannot_delete_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Viewer with no delete permissions cannot delete any archive."""
- printer = await printer_factory()
- archive = await archive_factory(printer.id, print_name="Any Archive")
- response = await async_client.delete(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['viewer_token']}"},
- )
- assert response.status_code == 403
- # ========================================================================
- # UPDATE permissions
- # ========================================================================
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_admin_can_update_any_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Admin can update any archive."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- print_name="Original Name",
- created_by_id=auth_setup["operator_user"]["id"],
- )
- response = await async_client.patch(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- json={"print_name": "Admin Updated"},
- )
- assert response.status_code == 200
- assert response.json()["print_name"] == "Admin Updated"
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_update_own_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Operator can update their own archive."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- print_name="Original Name",
- created_by_id=auth_setup["operator_user"]["id"],
- )
- response = await async_client.patch(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"print_name": "Operator Updated"},
- )
- assert response.status_code == 200
- assert response.json()["print_name"] == "Operator Updated"
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_update_others_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Operator cannot update another user's archive."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- print_name="Other's Archive",
- created_by_id=auth_setup["operator2_user"]["id"],
- )
- response = await async_client.patch(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"print_name": "Attempted Update"},
- )
- assert response.status_code == 403
- # ========================================================================
- # Legacy reprint endpoint
- # ========================================================================
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_reprint_endpoint_is_gone_for_all_callers(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Direct archive reprint no longer exists; callers must use the queue."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- created_by_id=auth_setup["operator2_user"]["id"],
- )
- response = await async_client.post(
- f"/api/v1/archives/{archive.id}/reprint?printer_id={printer.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 410
- # ========================================================================
- # Queue route — archives:reprint_* gate (#1625)
- # ========================================================================
- # The unified /queue/ route replaced the legacy /reprint endpoint; the
- # reprint permission gate must move with it. Without these checks a
- # caller with QUEUE_CREATE + ARCHIVES_READ_OWN could reprint their own
- # archives even if explicitly denied ARCHIVES_REPRINT_OWN.
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_queue_route_operator_can_reprint_own_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Operator with REPRINT_OWN can queue their own archive."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- created_by_id=auth_setup["operator_user"]["id"],
- )
- response = await async_client.post(
- "/api/v1/queue/",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"printer_id": printer.id, "archive_id": archive.id},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_queue_route_user_without_reprint_gets_403(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """User with QUEUE_CREATE + ARCHIVES_READ_OWN but no reprint perm → 403.
- Custom group mirrors a real operator policy where someone is allowed
- to enqueue freshly-uploaded library files but explicitly NOT allowed
- to re-run completed archives.
- """
- # Create custom group with queue:create + archives:read_own but no reprint perm.
- admin_headers = {"Authorization": f"Bearer {auth_setup['admin_token']}"}
- group_resp = await async_client.post(
- "/api/v1/groups/",
- headers=admin_headers,
- json={
- "name": "QueueOnlyNoReprint",
- "description": "Test group: can queue library files but not reprint",
- "permissions": [
- "queue:create",
- "queue:read_own",
- "archives:read_own",
- "library:read_own",
- "library:upload",
- "printers:read",
- ],
- },
- )
- assert group_resp.status_code in (200, 201)
- group_id = group_resp.json()["id"]
- await async_client.post(
- "/api/v1/users/",
- headers=admin_headers,
- json={
- "username": "noreprint_user",
- "password": "NoreprintPass1!",
- "group_ids": [group_id],
- },
- )
- login = await async_client.post(
- "/api/v1/auth/login",
- json={"username": "noreprint_user", "password": "NoreprintPass1!"},
- )
- token = login.json()["access_token"]
- user_id = login.json()["user"]["id"]
- # Archive owned by the no-reprint user.
- printer = await printer_factory()
- archive = await archive_factory(printer.id, created_by_id=user_id)
- response = await async_client.post(
- "/api/v1/queue/",
- headers={"Authorization": f"Bearer {token}"},
- json={"printer_id": printer.id, "archive_id": archive.id},
- )
- assert response.status_code == 403
- assert "reprint" in response.json()["detail"].lower()
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_queue_route_ownerless_archive_requires_reprint_all(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Ownerless archive (created_by_id=null) requires REPRINT_ALL.
- Pre-IDOR-fix legacy data has no creator; an operator with
- REPRINT_OWN can't fall back to "I own this" — fail-closed.
- The existing IDOR check returns 404 first (operator lacks
- READ_ALL and doesn't own the row), so this is also a regression
- guard against accidentally surfacing 403-instead-of-404 if the
- IDOR check is ever loosened.
- """
- printer = await printer_factory()
- archive = await archive_factory(printer.id, created_by_id=None)
- response = await async_client.post(
- "/api/v1/queue/",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"printer_id": printer.id, "archive_id": archive.id},
- )
- # IDOR returns 404 before the new gate fires for this operator.
- assert response.status_code == 404
- class TestQueueOwnershipPermissions(TestOwnershipPermissionsSetup):
- """Tests for print queue ownership-based permissions."""
- @pytest.fixture
- async def queue_item_factory(self, db_session, printer_factory, archive_factory):
- """Factory to create test queue items."""
- async def _create_item(**kwargs):
- from backend.app.models.print_queue import PrintQueueItem
- printer = await printer_factory()
- # Create an archive to link to the queue item
- archive = await archive_factory(printer.id)
- defaults = {
- "printer_id": printer.id,
- "archive_id": archive.id,
- "status": "pending",
- "position": 0,
- }
- defaults.update(kwargs)
- item = PrintQueueItem(**defaults)
- db_session.add(item)
- await db_session.commit()
- await db_session.refresh(item)
- return item
- return _create_item
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_admin_can_delete_any_queue_item(self, async_client: AsyncClient, auth_setup, queue_item_factory):
- """Admin can delete any queue item."""
- item = await queue_item_factory(created_by_id=auth_setup["operator_user"]["id"])
- response = await async_client.delete(
- f"/api/v1/queue/{item.id}",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_delete_own_queue_item(self, async_client: AsyncClient, auth_setup, queue_item_factory):
- """Operator can delete their own queue item."""
- item = await queue_item_factory(created_by_id=auth_setup["operator_user"]["id"])
- response = await async_client.delete(
- f"/api/v1/queue/{item.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_delete_others_queue_item(
- self, async_client: AsyncClient, auth_setup, queue_item_factory
- ):
- """Operator cannot delete another user's queue item."""
- item = await queue_item_factory(created_by_id=auth_setup["operator2_user"]["id"])
- response = await async_client.delete(
- f"/api/v1/queue/{item.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_update_own_queue_item(self, async_client: AsyncClient, auth_setup, queue_item_factory):
- """Operator can update their own queue item."""
- item = await queue_item_factory(created_by_id=auth_setup["operator_user"]["id"])
- response = await async_client.patch(
- f"/api/v1/queue/{item.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"position": 10},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_update_others_queue_item(
- self, async_client: AsyncClient, auth_setup, queue_item_factory
- ):
- """Operator cannot update another user's queue item."""
- item = await queue_item_factory(created_by_id=auth_setup["operator2_user"]["id"])
- response = await async_client.patch(
- f"/api/v1/queue/{item.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"position": 10},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_cancel_others_queue_item(
- self, async_client: AsyncClient, auth_setup, queue_item_factory
- ):
- """Operator cannot cancel another user's queue item."""
- item = await queue_item_factory(created_by_id=auth_setup["operator2_user"]["id"])
- response = await async_client.post(
- f"/api/v1/queue/{item.id}/cancel",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- # ========================================================================
- # Start / Stop ownership gates (#1625-followup)
- # ========================================================================
- # Pre-fix /stop required QUEUE_UPDATE_ALL (admin-only) — operators saw the
- # Stop button in the queue UI but got 403 on click. /start required
- # QUEUE_UPDATE_OWN with no ownership check — operators could start anyone's
- # queue items via direct API. Both now use require_ownership_permission.
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_start_own_queue_item(self, async_client: AsyncClient, auth_setup, queue_item_factory):
- """Operator can start their own staged queue item."""
- item = await queue_item_factory(
- created_by_id=auth_setup["operator_user"]["id"],
- manual_start=True,
- )
- response = await async_client.post(
- f"/api/v1/queue/{item.id}/start?skip_filament_check=true",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_start_others_queue_item(
- self, async_client: AsyncClient, auth_setup, queue_item_factory
- ):
- """Operator cannot start another user's queue item."""
- item = await queue_item_factory(
- created_by_id=auth_setup["operator2_user"]["id"],
- manual_start=True,
- )
- response = await async_client.post(
- f"/api/v1/queue/{item.id}/start?skip_filament_check=true",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_start_unowned_queue_item(
- self, async_client: AsyncClient, auth_setup, queue_item_factory, db_session
- ):
- """Operator can start a NULL-owner queue item (VP-uploaded, #1670)
- and claims ownership in the process.
- Stop and Cancel reject unowned items for _OWN holders (destructive,
- no "I own it" claim available), but Start is the entry point for the
- VP-import flow where attribution happens at click-time.
- """
- from backend.app.models.print_queue import PrintQueueItem
- item = await queue_item_factory(created_by_id=None, manual_start=True)
- response = await async_client.post(
- f"/api/v1/queue/{item.id}/start?skip_filament_check=true",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- # Ownership claimed: operator is now the item's owner.
- await db_session.refresh(item)
- refetch = await db_session.get(PrintQueueItem, item.id)
- assert refetch.created_by_id == auth_setup["operator_user"]["id"]
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_stop_own_queue_item(self, async_client: AsyncClient, auth_setup, queue_item_factory):
- """Operator can stop their own currently-printing queue item."""
- item = await queue_item_factory(
- created_by_id=auth_setup["operator_user"]["id"],
- status="printing",
- )
- response = await async_client.post(
- f"/api/v1/queue/{item.id}/stop",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_stop_others_queue_item(
- self, async_client: AsyncClient, auth_setup, queue_item_factory
- ):
- """Operator cannot stop another user's printing queue item."""
- item = await queue_item_factory(
- created_by_id=auth_setup["operator2_user"]["id"],
- status="printing",
- )
- response = await async_client.post(
- f"/api/v1/queue/{item.id}/stop",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_stop_unowned_queue_item(
- self, async_client: AsyncClient, auth_setup, queue_item_factory
- ):
- """Operator cannot stop a NULL-owner printing queue item — stop mirrors
- cancel (destructive, no claim semantics). Admins with _ALL can still stop it.
- """
- item = await queue_item_factory(created_by_id=None, status="printing")
- response = await async_client.post(
- f"/api/v1/queue/{item.id}/stop",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_admin_can_stop_any_queue_item(self, async_client: AsyncClient, auth_setup, queue_item_factory):
- """Admin with _ALL can stop any printing queue item including unowned."""
- item = await queue_item_factory(created_by_id=None, status="printing")
- response = await async_client.post(
- f"/api/v1/queue/{item.id}/stop",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_bulk_update_skips_non_owned_items(self, async_client: AsyncClient, auth_setup, queue_item_factory):
- """Bulk update only updates items the user owns."""
- # Create items owned by different users
- own_item = await queue_item_factory(
- created_by_id=auth_setup["operator_user"]["id"],
- )
- other_item = await queue_item_factory(
- created_by_id=auth_setup["operator2_user"]["id"],
- )
- response = await async_client.patch(
- "/api/v1/queue/bulk",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={
- "item_ids": [own_item.id, other_item.id],
- "manual_start": True,
- },
- )
- assert response.status_code == 200
- result = response.json()
- # Should only update the owned item
- assert result["updated_count"] == 1
- assert result["skipped_count"] == 1
- class TestLibraryOwnershipPermissions(TestOwnershipPermissionsSetup):
- """Tests for library file ownership-based permissions."""
- @pytest.fixture
- async def library_file_factory(self, db_session):
- """Factory to create test library files."""
- _counter = [0]
- async def _create_file(**kwargs):
- from backend.app.models.library import LibraryFile
- _counter[0] += 1
- defaults = {
- "filename": f"test_{_counter[0]}.3mf",
- "file_path": f"library/test_{_counter[0]}.3mf",
- "file_type": "3mf",
- "file_size": 1024,
- }
- defaults.update(kwargs)
- file = LibraryFile(**defaults)
- db_session.add(file)
- await db_session.commit()
- await db_session.refresh(file)
- return file
- return _create_file
- @pytest.fixture
- async def library_folder_factory(self, db_session):
- """Factory to create test library folders."""
- _counter = [0]
- async def _create_folder(**kwargs):
- from backend.app.models.library import LibraryFolder
- _counter[0] += 1
- defaults = {
- "name": f"TestFolder_{_counter[0]}",
- }
- defaults.update(kwargs)
- folder = LibraryFolder(**defaults)
- db_session.add(folder)
- await db_session.commit()
- await db_session.refresh(folder)
- return folder
- return _create_folder
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_admin_can_delete_any_library_file(self, async_client: AsyncClient, auth_setup, library_file_factory):
- """Admin can delete any library file."""
- file = await library_file_factory(created_by_id=auth_setup["operator_user"]["id"])
- response = await async_client.delete(
- f"/api/v1/library/files/{file.id}",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_delete_own_library_file(
- self, async_client: AsyncClient, auth_setup, library_file_factory
- ):
- """Operator can delete their own library file."""
- file = await library_file_factory(created_by_id=auth_setup["operator_user"]["id"])
- response = await async_client.delete(
- f"/api/v1/library/files/{file.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_delete_others_library_file(
- self, async_client: AsyncClient, auth_setup, library_file_factory
- ):
- """Operator cannot delete another user's library file."""
- file = await library_file_factory(created_by_id=auth_setup["operator2_user"]["id"])
- response = await async_client.delete(
- f"/api/v1/library/files/{file.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_can_update_own_library_file(
- self, async_client: AsyncClient, auth_setup, library_file_factory
- ):
- """Operator can update their own library file."""
- file = await library_file_factory(created_by_id=auth_setup["operator_user"]["id"])
- response = await async_client.put(
- f"/api/v1/library/files/{file.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"filename": "renamed.3mf"},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_update_others_library_file(
- self, async_client: AsyncClient, auth_setup, library_file_factory
- ):
- """Operator cannot update another user's library file."""
- file = await library_file_factory(created_by_id=auth_setup["operator2_user"]["id"])
- response = await async_client.put(
- f"/api/v1/library/files/{file.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"filename": "renamed.3mf"},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_folders_require_all_permission(self, async_client: AsyncClient, auth_setup, library_folder_factory):
- """Folders require *_all permission (no ownership tracking on folders)."""
- folder = await library_folder_factory(name="TestFolder")
- # Operator cannot delete folder (needs *_all)
- response = await async_client.delete(
- f"/api/v1/library/folders/{folder.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 403
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_bulk_delete_skips_non_owned_files(self, async_client: AsyncClient, auth_setup, library_file_factory):
- """Bulk delete only deletes files the user owns."""
- own_file = await library_file_factory(
- filename="own.3mf",
- created_by_id=auth_setup["operator_user"]["id"],
- )
- other_file = await library_file_factory(
- filename="other.3mf",
- created_by_id=auth_setup["operator2_user"]["id"],
- )
- response = await async_client.post(
- "/api/v1/library/bulk-delete",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"file_ids": [own_file.id, other_file.id], "folder_ids": []},
- )
- assert response.status_code == 200
- result = response.json()
- # Should only delete the owned file; other_file is skipped (but skipped count not in response)
- assert result["deleted_files"] == 1
- class TestAuthDisabledPermissions:
- """Tests that verify all operations are allowed when auth is disabled."""
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_delete_archive_without_auth(
- self, async_client: AsyncClient, archive_factory, printer_factory, db_session
- ):
- """When auth is disabled, anyone can delete archives."""
- printer = await printer_factory()
- archive = await archive_factory(printer.id)
- response = await async_client.delete(f"/api/v1/archives/{archive.id}")
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_update_archive_without_auth(
- self, async_client: AsyncClient, archive_factory, printer_factory, db_session
- ):
- """When auth is disabled, anyone can update archives."""
- printer = await printer_factory()
- archive = await archive_factory(printer.id)
- response = await async_client.patch(
- f"/api/v1/archives/{archive.id}",
- json={"print_name": "Updated Name"},
- )
- assert response.status_code == 200
- class TestUserItemsCountAndDeletion(TestOwnershipPermissionsSetup):
- """Tests for user items count endpoint and deletion with items."""
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_get_user_items_count(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Verify items count endpoint returns correct counts."""
- printer = await printer_factory()
- user_id = auth_setup["operator_user"]["id"]
- # Create some items for the operator
- await archive_factory(printer.id, created_by_id=user_id)
- await archive_factory(printer.id, created_by_id=user_id)
- response = await async_client.get(
- f"/api/v1/users/{user_id}/items-count",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert response.status_code == 200
- counts = response.json()
- assert counts["archives"] >= 2
- assert "queue_items" in counts
- assert "library_files" in counts
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_delete_user_keeps_items(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Verify deleting user without delete_items keeps items (ownerless)."""
- printer = await printer_factory()
- user_id = auth_setup["operator2_user"]["id"]
- # Create archive for operator2
- archive = await archive_factory(printer.id, created_by_id=user_id)
- archive_id = archive.id
- # Delete user without deleting items
- response = await async_client.delete(
- f"/api/v1/users/{user_id}?delete_items=false",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert response.status_code == 204
- # Verify archive still exists but is now ownerless
- archive_response = await async_client.get(
- f"/api/v1/archives/{archive_id}",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert archive_response.status_code == 200
- assert archive_response.json()["created_by_id"] is None
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_delete_user_with_items(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Verify deleting user with delete_items=true removes their items."""
- printer = await printer_factory()
- # Create a new user with items
- create_response = await async_client.post(
- "/api/v1/users/",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- json={
- "username": "deletewithitems",
- "password": "Password123!",
- },
- )
- user_id = create_response.json()["id"]
- # Create archive for this user
- archive = await archive_factory(printer.id, created_by_id=user_id)
- archive_id = archive.id
- # Delete user WITH deleting items
- response = await async_client.delete(
- f"/api/v1/users/{user_id}?delete_items=true",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert response.status_code == 204
- # Verify archive was deleted
- archive_response = await async_client.get(
- f"/api/v1/archives/{archive_id}",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert archive_response.status_code == 404
- class TestReadIDORClosure(TestOwnershipPermissionsSetup):
- """Regression tests pinning maziggy/bambuddy-security #2 — IDOR on
- archives / library / queue read paths.
- Before the fix, ARCHIVES_READ / LIBRARY_READ / QUEUE_READ were flat
- "see everything" permissions even though the write side was split into
- OWN/ALL. An operator with only ARCHIVES_READ could read, download, and
- queue any user's archive via direct id reference. These tests pin the
- bambuddy_archive_idor.py and bambuddy_archive_viewer_idor.py PoC paths
- so the IDOR can't regress silently.
- """
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_get_others_archive_returns_404_not_200(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """PoC #2 read path. operator1 GET /archives/{id} where id is admin's
- archive must NOT leak the row. 404 (not 403) so the operator can't
- enumerate which ids exist — same shape as a nonexistent id."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- print_name="Admin Archive",
- created_by_id=auth_setup["admin_user"]["id"],
- )
- response = await async_client.get(
- f"/api/v1/archives/{archive.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 404
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_download_others_archive_returns_404(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Viewer-IDOR PoC path: GET /archives/{id}/download on admin's archive.
- Before the fix this streamed the 3MF body straight to a viewer-tier
- token."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- print_name="Admin Archive 2",
- created_by_id=auth_setup["admin_user"]["id"],
- )
- response = await async_client.get(
- f"/api/v1/archives/{archive.id}/download",
- headers={"Authorization": f"Bearer {auth_setup['viewer_token']}"},
- )
- assert response.status_code == 404
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_list_archives_excludes_others(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """GET /archives/ must filter to own archives only for OWN-level callers."""
- printer = await printer_factory()
- own = await archive_factory(
- printer.id, print_name="Operator's Own", created_by_id=auth_setup["operator_user"]["id"]
- )
- others = await archive_factory(printer.id, print_name="Admin's", created_by_id=auth_setup["admin_user"]["id"])
- response = await async_client.get(
- "/api/v1/archives/",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- returned_ids = {a["id"] for a in response.json()}
- assert own.id in returned_ids
- assert others.id not in returned_ids
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_admin_list_archives_includes_all(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """ARCHIVES_READ_ALL → admin sees own + every user's archives."""
- printer = await printer_factory()
- admin_archive = await archive_factory(
- printer.id, print_name="Admin's", created_by_id=auth_setup["admin_user"]["id"]
- )
- operator_archive = await archive_factory(
- printer.id, print_name="Operator's", created_by_id=auth_setup["operator_user"]["id"]
- )
- response = await async_client.get(
- "/api/v1/archives/",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- )
- assert response.status_code == 200
- returned_ids = {a["id"] for a in response.json()}
- assert admin_archive.id in returned_ids
- assert operator_archive.id in returned_ids
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_cannot_queue_others_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """PoC #2 queue path. POST /queue/ with admin's archive_id as
- operator1 must return 404, not create a queue item. Before the fix
- this returned 201 and queued the admin archive (Landon's CONFIRMED
- line in the PoC)."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- print_name="Admin Archive (queue-target)",
- created_by_id=auth_setup["admin_user"]["id"],
- )
- response = await async_client.post(
- "/api/v1/queue/",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- json={"archive_id": archive.id, "printer_id": printer.id, "quantity": 1},
- )
- assert response.status_code == 404
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_admin_can_queue_others_archive(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Belt-and-suspenders for the ALL path: admin (ARCHIVES_READ_ALL) can
- queue a user's archive on their behalf — common workshop pattern."""
- printer = await printer_factory()
- archive = await archive_factory(
- printer.id,
- print_name="Operator's archive (queue by admin)",
- created_by_id=auth_setup["operator_user"]["id"],
- )
- response = await async_client.post(
- "/api/v1/queue/",
- headers={"Authorization": f"Bearer {auth_setup['admin_token']}"},
- json={"archive_id": archive.id, "printer_id": printer.id, "quantity": 1},
- )
- assert response.status_code == 200
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_get_others_library_file_returns_404(
- self, async_client: AsyncClient, auth_setup, db_session
- ):
- """Library IDOR closure (same shape as archives — closed in the same PR
- per maziggy/bambuddy-security #2)."""
- from backend.app.models.library import LibraryFile
- admin_file = LibraryFile(
- filename="admin_secret.3mf",
- file_path="library/admin_secret.3mf",
- file_type="3mf",
- file_size=2048,
- created_by_id=auth_setup["admin_user"]["id"],
- )
- db_session.add(admin_file)
- await db_session.commit()
- await db_session.refresh(admin_file)
- response = await async_client.get(
- f"/api/v1/library/files/{admin_file.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 404
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_list_library_files_excludes_others(self, async_client: AsyncClient, auth_setup, db_session):
- from backend.app.models.library import LibraryFile
- own = LibraryFile(
- filename="my_file.3mf",
- file_path="library/my_file.3mf",
- file_type="3mf",
- file_size=1024,
- created_by_id=auth_setup["operator_user"]["id"],
- )
- others = LibraryFile(
- filename="admin_file.3mf",
- file_path="library/admin_file.3mf",
- file_type="3mf",
- file_size=1024,
- created_by_id=auth_setup["admin_user"]["id"],
- )
- db_session.add_all([own, others])
- await db_session.commit()
- await db_session.refresh(own)
- await db_session.refresh(others)
- response = await async_client.get(
- "/api/v1/library/files",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- returned_ids = {f["id"] for f in response.json()}
- assert own.id in returned_ids
- assert others.id not in returned_ids
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_queue_list_excludes_others_items(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """GET /queue/ must filter to own queue items only for OWN callers —
- same shape as the archive list."""
- from backend.app.models.print_queue import PrintQueueItem
- printer = await printer_factory()
- archive = await archive_factory(printer.id, print_name="A", created_by_id=auth_setup["operator_user"]["id"])
- own_item = PrintQueueItem(
- archive_id=archive.id,
- printer_id=printer.id,
- status="pending",
- position=1,
- created_by_id=auth_setup["operator_user"]["id"],
- )
- admin_item = PrintQueueItem(
- archive_id=archive.id,
- printer_id=printer.id,
- status="pending",
- position=2,
- created_by_id=auth_setup["admin_user"]["id"],
- )
- db_session.add_all([own_item, admin_item])
- await db_session.commit()
- await db_session.refresh(own_item)
- await db_session.refresh(admin_item)
- response = await async_client.get(
- "/api/v1/queue/",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200
- returned_ids = {q["id"] for q in response.json()}
- assert own_item.id in returned_ids
- assert admin_item.id not in returned_ids
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_operator_get_others_queue_item_returns_404(
- self, async_client: AsyncClient, auth_setup, archive_factory, printer_factory, db_session
- ):
- """Direct-id queue item access — same enumeration risk as archive get."""
- from backend.app.models.print_queue import PrintQueueItem
- printer = await printer_factory()
- archive = await archive_factory(printer.id, print_name="A", created_by_id=auth_setup["admin_user"]["id"])
- admin_item = PrintQueueItem(
- archive_id=archive.id,
- printer_id=printer.id,
- status="pending",
- position=1,
- created_by_id=auth_setup["admin_user"]["id"],
- )
- db_session.add(admin_item)
- await db_session.commit()
- await db_session.refresh(admin_item)
- response = await async_client.get(
- f"/api/v1/queue/{admin_item.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 404
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_auth_disabled_preserves_single_tenant_read_all(
- self, async_client: AsyncClient, archive_factory, printer_factory
- ):
- """With auth disabled, ARCHIVES_READ resolves to read-all (can_modify_all=True
- in require_ownership_permission's auth-disabled branch). Existing
- single-user installs see no behavior change."""
- printer = await printer_factory()
- archive = await archive_factory(printer.id, print_name="Anonymous", created_by_id=None)
- # No Authorization header — auth-disabled mode.
- response = await async_client.get(f"/api/v1/archives/{archive.id}")
- # Either 200 (auth disabled in this test session) or 401 (auth enabled
- # from a prior test) — both are acceptable; the IDOR closure does not
- # change auth-enable/disable behavior. Pin not-404 to avoid masking a
- # regression where auth-disabled callers would lose access.
- assert response.status_code in (200, 401)
|