config file is web only

This commit is contained in:
msramalho
2025-02-11 19:13:33 +00:00
parent f24f88c44b
commit 606e69587b
12 changed files with 15 additions and 15 deletions

View File

@@ -2,7 +2,7 @@ import os
from fastapi.testclient import TestClient
import pytest
from unittest.mock import patch
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
from app.shared.settings import Settings
from app.web.db.user_state import UserState

View File

@@ -63,7 +63,7 @@ def test_data(db_session):
def test_get_archive(test_data, db_session):
from app.web.db import crud
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
# each author's archives work
assert (a0 := crud.get_archive(db_session, "archive-id-456-0", authors[0])) is not None
@@ -92,7 +92,7 @@ def test_get_archive(test_data, db_session):
def test_search_archives_by_url(test_data, db_session):
from app.web.db import crud
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
# rick's archives are private
assert len(crud.search_archives_by_url(db_session, "https://example-0.com", "rick@example.com")) == 34
@@ -138,7 +138,7 @@ def test_search_archives_by_url(test_data, db_session):
def test_search_archives_by_email(test_data, db_session):
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
from app.web.db import crud
# lower/upper case
@@ -161,7 +161,7 @@ def test_search_archives_by_email(test_data, db_session):
@patch("app.web.db.crud.DATABASE_QUERY_LIMIT", new=25)
def test_max_query_limit(test_data, db_session):
from app.web.db import crud
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
assert len(crud.search_archives_by_url(db_session, "https://example", ALLOW_ANY_EMAIL)) == 25
assert len(crud.search_archives_by_url(db_session, "https://example", ALLOW_ANY_EMAIL, limit=1000)) == 25
@@ -233,7 +233,7 @@ def test_count_by_users_since(test_data, db_session):
def test_is_user_in_group(test_data, db_session):
from app.web.db import crud
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
# see user-groups.test.yaml
test_pairs = [

View File

@@ -1,7 +1,7 @@
from unittest.mock import AsyncMock, MagicMock, patch
from fastapi.testclient import TestClient
import pytest
from app.shared.config import VERSION
from app.web.config import VERSION
from app.tests.web.db.test_crud import test_data

View File

@@ -2,7 +2,7 @@ from datetime import datetime
import json
from unittest.mock import MagicMock, patch
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
from app.web.db import crud

View File

@@ -4,7 +4,7 @@ from fastapi import HTTPException
from fastapi.security import HTTPAuthorizationCredentials
import pytest
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
def test_secure_compare():

View File

@@ -6,7 +6,7 @@ from loguru import logger
from datetime import datetime, timedelta
from sqlalchemy.ext.asyncio import AsyncSession
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
from app.shared.db.database import get_db
from app.shared.db import models
from app.shared.settings import get_settings

View File

@@ -3,7 +3,7 @@ from typing import Dict
from fastapi import APIRouter, Depends, Request, HTTPException
from fastapi.responses import FileResponse, JSONResponse
from app.shared.config import VERSION, BREAKING_CHANGES
from app.web.config import VERSION, BREAKING_CHANGES
from app.shared.log import log_error
from app.web.db import crud
from app.shared.schemas import ActiveUser, UsageResponse

View File

@@ -7,7 +7,7 @@ from auto_archiver import Metadata
from sqlalchemy.orm import Session
from app.shared.aa_utils import get_all_urls
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
from app.shared import business_logic, schemas
from app.shared.db import worker_crud
from app.shared.db.database import get_db_dependency

View File

@@ -5,7 +5,7 @@ from datetime import datetime
from loguru import logger
from sqlalchemy.orm import Session
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
from app.shared import schemas
from app.shared.task_messaging import get_celery
from app.web.security import get_token_or_user_auth, get_user_state

View File

@@ -17,7 +17,7 @@ from app.shared.task_messaging import get_celery
from app.web.db import crud
from app.web.security import get_user_auth, token_api_key_auth, get_token_or_user_auth
from app.shared.config import VERSION, API_DESCRIPTION
from app.web.config import VERSION, API_DESCRIPTION
from app.shared.db.database import get_db_dependency
from app.web.events import lifespan
from app.shared.settings import get_settings

View File

@@ -3,7 +3,7 @@ import requests, secrets
from fastapi import HTTPException, status, Depends
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
from app.shared.config import ALLOW_ANY_EMAIL
from app.web.config import ALLOW_ANY_EMAIL
from app.shared.settings import get_settings
from app.shared.db.database import get_db
from app.web.db.user_state import UserState