<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import json
import pytest
import requests

from django.test import TestCase

from seahub import settings
from tests.api.apitestbase import ApiTestBase
from tests.api.urls import SERVER_INFO_URL

class MiscApiTest(ApiTestBase, TestCase):

    def test_server_info(self):
        r = requests.get(SERVER_INFO_URL)
        r.raise_for_status()
        info = r.json()
        self.assertTrue('version' in info)
        self.assertTrue('seafile-basic' in info['features'])
        self.assertFalse('disable-sync-with-any-folder' in info['features'])

    @pytest.mark.xfail
    def test_server_info_with_disable_sync(self):
        settings.DISABLE_SYNC_WITH_ANY_FOLDER = True

        resp = self.client.get('/api2/server-info/')
        info = json.loads(resp.content)
        self.assertTrue('disable-sync-with-any-folder' in info['features'])
</pre></body></html>