File size: 491 Bytes
a8b3f00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import pytest

from app_factory import create_app
from configs import dify_config

mock_user = type(
    "MockUser",
    (object,),
    {
        "is_authenticated": True,
        "id": "123",
        "is_editor": True,
        "is_dataset_editor": True,
        "status": "active",
        "get_id": "123",
        "current_tenant_id": "9d2074fc-6f86-45a9-b09d-6ecc63b9056b",
    },
)


@pytest.fixture
def app():
    app = create_app()
    dify_config.LOGIN_DISABLED = True
    return app