Best Python code snippet using lemoncheesecake
test_basic_data_struct.py
Source:test_basic_data_struct.py
...11 'str': 'Test String',12 'int': 1337,13 }14@pytest.fixture(scope='session')15def session_fixture(request):16 print("{} fixture output - start\n-----".format(request.scope))17 yield18 print("\n-----\n{} fixture output - finish".format(request.scope))19@pytest.fixture(scope='module')20def module_fixture(request):21 print("{} fixture output - start\n-----".format(request.scope))22 def module_finalizer():23 print("\n-----\n{} fixture output - finish".format(request.scope))24 request.addfinalizer(module_finalizer)25def test_1_list_length(session_fixture, module_fixture, origin_data):26 """27 Check len of given list28 :param session_fixture: fixture for test session29 :param module_fixture: fixture for the module...
test_query_generator.py
Source:test_query_generator.py
...6from tests.model import Base, User7engine = create_engine("sqlite:///:memory:", echo=True)8Session = sessionmaker(bind=engine)9@pytest.fixture(scope="function", name="session_fixture")10def _session_fixture():11 Base.metadata.create_all(engine)12 session = Session()13 yield session14 session.close()15 Base.metadata.drop_all(bind=engine)16def test_eq_operator(session_fixture):17 ed_user1 = User(name="ed", fullname="Ed Jones", nickname="edsnickname")18 ed_user2 = User(name="eds", fullname="Ed Jones", nickname="edsnickname")19 session_fixture.add(ed_user1)20 session_fixture.add(ed_user2)21 query = generate_query(22 session_fixture, User, {"name": {"op": "eq", "value": ed_user1.name}}23 )24 result = list(query)...
test_users.py
Source:test_users.py
1import pytest2from models.user import *3from tests.prep import *4class TestUser:5 @pytest.fixture(scope='function')6 def test_insert_user(self, session_fixture):7 test_user = User()8 test_user.phone = '0000000000'9 test_user.uname = 'tuser'10 test_user.fullname = 'test_user'11 test_user.type = 'base_user'12 session_fixture.add(test_user)13 session_fixture.commit()14 assert session_fixture.query(User).count() == 115 @pytest.fixture(scope='function')16 def test_insert_guest(self, session_fixture, test_insert_user):17 test_guest = Guest()18 test_guest.phone = '0000000000'19 test_guest.uname = 'tguest'20 test_guest.fullname = 'test_guest'21 test_guest.type = 'guest'22 session_fixture.add(test_guest)23 session_fixture.commit()24 assert session_fixture.query(Guest).count() == 125 assert session_fixture.query(User).count() == 226 def test_recognition(self, client_fixture, session_fixture, test_insert_guest):27 response = client_fixture.get('/signin')28 assert response.status_code == 20029 response = client_fixture.post('/signin', data={'uname': 'tuser'})30 assert 031 # TODO match on user identifier32 def test_null(user_fixture):...
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!!