Best Python code snippet using pytest-django_python
test_postgres.py
Source:test_postgres.py
...8from psycopg2.sql import Composed, Identifier, SQL9from branchdb.errors import DatabaseError10from branchdb.engines.postgres import postgres_engine, PostgresEngine11from .mocking import mock_postgres_cursor, MockConnection12def test_all_databases():13 engine = PostgresEngine()14 with mock.patch.object(engine, "get_cursor") as mock_cursor:15 mock_cursor.return_value.__enter__ = mock_postgres_cursor([["db1"], ["db2"]])16 result = engine.all_databases()17 assert result == ["db1", "db2"]18@mock.patch("branchdb.engines.postgres.postgres_engine.PostgresEngine._execute")19@mock.patch("branchdb.engines.postgres.postgres_engine.PostgresEngine.database_exists")20def test_create_database(mock_exists, mock_execute):21 mock_exists.return_value = False22 engine = PostgresEngine()23 engine.connection = MockConnection()24 with mock.patch.object(engine, "get_cursor") as mock_cursor:25 cursor = mock_postgres_cursor()26 mock_cursor.return_value.__enter__ = cursor...
config.py
Source:config.py
1from django.conf import settings2FLASH = getattr(settings, 'FLASH', '.flash')3FLASH_TYPE = getattr(settings, 'FLASH_TYPE', {4 'success': '.alert-success',5 'info': '.alert-info',6 'warning': '.alert-warn',7 'error': '.alert-danger'8})9FLASH_WRAPPER = getattr(settings, 'FLASH_WRAPPER', '.msg-text')10FLASH_ICON_CLOSE = getattr(settings, 'FLASH_ICON_CLOSE', '.goog-icon-remove')11USERNAME = getattr(settings, 'USERNAME', 'username')12PASSWORD = getattr(settings, 'PASSWORD', 'password')13BTN_SUBMIT = getattr(settings, 'BTN_SUBMIT', 'button[type="submit"]')14BTN_SAVE = getattr(settings, 'BTN_SAVE', '.btn-save')15BTN_SAVE_AND_CONTINUE = getattr(settings, 'BTN_SAVE_AND_CONTINUE', '.btn-save-and-continue')16BTN_CANCEL = getattr(settings, 'BTN_CANCEL', '.btn-cancel')17MODAL_DIALOG = getattr(settings, 'MODAL_DIALOG', '.modal-dialog')18SELENIUM_TESTS_WAIT = getattr(settings, 'SELENIUM_TESTS_WAIT', 1)19SELENIUM_DISPLAY_DIMENSION = getattr(settings, 'SELENIUM_DISPLAY_DIMENSION', (1440, 900))20SELENIUM_RUN_IN_BACKGROUND = getattr(settings, 'SELENIUM_RUN_IN_BACKGROUND', False)21LOGOUT_URL = getattr(settings, 'LOGOUT_URL', '/logout')22LOGIN_URL = getattr(settings, 'LOGIN_URL', '/login')23PHANTOM_JS_BIN = getattr(settings, 'PHANTOM_JS_BIN', 'phantomjs')24WINDOW_SIZE = (1124, 850)25TURN_OFF_MAX_DIFF = getattr(settings, 'TURN_OFF_MAX_DIFF', True)...
default.py
Source:default.py
1import types2from django.conf import settings3from django.test.testcases import TestCase, SimpleTestCase4from germanium.signals import set_up, set_up_class, tear_down, tear_down_class5from germanium.config import TEST_ALL_DATABASES6class GermaniumSimpleTestCaseMixin:7 if TEST_ALL_DATABASES:8 databases = list(settings.DATABASES.keys())9 @classmethod10 def setUpClass(cls):11 set_up_class.send(sender=cls)12 super().setUpClass()13 cls.set_up_class()14 @classmethod15 def set_up_class(cls):16 pass17 @classmethod18 def tearDownClass(cls):19 tear_down_class.send(sender=cls)20 super().tearDownClass()21 cls.tear_down_class()22 @classmethod23 def tear_down_class(cls):24 pass25 def setUp(self):26 set_up.send(sender=self.__class__)27 super().setUp()28 self.set_up()29 def set_up(self):30 pass31 def tearDown(self):32 tear_down.send(sender=self.__class__)33 super().tearDown()34 self.tear_down()35 def tear_down(self):36 pass37class GermaniumTestCaseMixin(GermaniumSimpleTestCaseMixin):38 if getattr(settings, 'GERMANIUM_FIXTURES', None):39 fixtures = getattr(settings, 'GERMANIUM_FIXTURES', None)40class GermaniumTestCase(GermaniumTestCaseMixin, TestCase):41 pass42class GermaniumSimpleTestCase(GermaniumSimpleTestCaseMixin, SimpleTestCase):...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!