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 27 28 29
|
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Functional, browser based tests for storage app.
"""
import pytest
from plinth.tests import functional
pytestmark = [pytest.mark.system, pytest.mark.essential, pytest.mark.storage]
@pytest.fixture(scope='module', autouse=True)
def fixture_background(session_browser):
"""Login."""
functional.login(session_browser)
def test_list_disks(session_browser):
"""Test that root disk is shown on storage page."""
if functional.running_inside_container():
pytest.skip('Storage doesn\'t work inside a container')
else:
functional.nav_to_module(session_browser, 'storage')
assert _is_root_disk_shown(session_browser)
def _is_root_disk_shown(browser):
table_cells = browser.find_by_tag('td')
return any(cell.text.split('\n')[0] == '/' for cell in table_cells)
|