Source code for stepler.horizon.fixtures.app
"""
-----------------------------------------------------
Fixtures to run horizon, login, create demo user, etc
-----------------------------------------------------
"""
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pytest
from stepler import config
from stepler.horizon import app as horizon_app
from stepler.horizon import steps
__all__ = [
'auth_steps',
'horizon',
'login',
]
@pytest.fixture(scope="module")
[docs]def horizon():
"""Function fixture to launch browser and open horizon page.
It launches browser before tests and closes after.
Yields:
stepler.horizon.app.Horizon: instantiated horizon web application
"""
app = horizon_app.Horizon(config.OS_DASHBOARD_URL)
yield app
app.quit()
@pytest.fixture
[docs]def auth_steps(horizon):
"""Function fixture to get auth steps.
Args:
horizon (object): instantiated horizon web application
Returns:
stepler.horizon.steps.AuthSteps: instantiated auth steps
"""
return steps.AuthSteps(horizon)
@pytest.fixture
[docs]def login(auth_steps, credentials):
"""Function fixture to log in horizon.
Logs in horizon UI before test.
Logs out after test.
Args:
auth_steps (AuthSteps): instantiated auth steps
"""
auth_steps.login(credentials.username, credentials.password)
auth_steps.switch_project(credentials.project_name)
yield
# reload page to be sure that modal form doesn't prevent to logout
auth_steps.app.current_page.refresh()
auth_steps.logout()