Best Python code snippet using tempest_python
shows_controller.py
Source: shows_controller.py
1import datetime2from flask import render_template, Blueprint, request, redirect, url_for3from flask_login import login_required4from app import Session5from service import show_service, ticket_service, movie_service, room_service6shows = Blueprint('shows', __name__)7@shows.route('/shows')8@login_required9def get_shows():10 date_str = request.args.get('for_date') or datetime.datetime.now().date().__str__()11 date = datetime.datetime.strptime(date_str, '%Y-%m-%d').date()12 session = Session()13 shows_list = show_service.get_shows(date, session=session)14 for show in shows_list:15 show.left_tickets = ticket_service.count_left(show, session=session)16 return render_template('shows.html', shows=shows_list, for_date=date)17@shows.route('/shows/<show_id>')18@login_required19def get_show(show_id):20 session = Session()21 show = show_service.get_show(show_id, session)22 movies = movie_service.get_movies(session)23 rooms = room_service.get_rooms(session)24 sits = show.room.sits25 for ticket in ticket_service.get_by_show_and_sits(show, sits, session=session):26 for sit in sits:27 if ticket.sit_id == sit.id:28 sit.ticket = ticket29 return render_template('show.html', show=show, movies=movies, rooms=rooms)30@shows.route('/shows/create')31@login_required32def create_show():33 movies = movie_service.get_movies()34 rooms = room_service.get_rooms()35 return render_template('shows-create.html', movies=movies, rooms=rooms)36@shows.route('/shows/create', methods=['POST'])37@login_required38def create_show_post():39 movie_id = request.form.get('movie')40 room_id = request.form.get('room')41 date_time = datetime.datetime.strptime(request.form.get('date_time'), '%Y-%m-%d %H:%M')42 show = show_service.create(movie_id, room_id, date_time)43 return redirect(url_for('shows.get_show', show_id=show.id))44@shows.route('/shows/update/<show_id>', methods=['POST'])45@login_required46def update_show(show_id):47 movie_id = request.form.get('movie')48 room_id = request.form.get('room')49 date_time = datetime.datetime.strptime(request.form.get('date_time'), '%Y-%m-%d %H:%M')50 show = show_service.update(show_id, movie_id, room_id, date_time)51 return redirect(url_for('shows.get_show', show_id=show.id))52@shows.route('/shows/archive_switch/<show_id>', methods=['POST'])53@login_required54def archive_show_switch(show_id):55 show_service.archive_switch(show_id)...
get_apis.py
Source: get_apis.py
1#!/usr/bin/python32# Import modules3import argparse4import fnmatch5import json6import os7# Handle parameters8param_parser = argparse.ArgumentParser(description='Search json file for all APIs provided and throw out the service file too.')9param_parser.add_argument("--infile", "-i", action="store", dest="infile", help="File to work on")10param_parser.add_argument("--provides", "-p", action="store_true", dest="provides", help="Only show provides")11param_parser.add_argument("--requires", "-r", action="store_true", dest="requires", help="Only show requirements")12param_parser.add_argument("--show-service", "-s", action="store_true", dest="show_service", help="Add the servicefile name")13args = param_parser.parse_args()14# Prepare variables15infile = args.infile16provides = args.provides17requires = args.requires18show_service = args.show_service19# Handle arguments20if provides == True and requires == True:21 print("'--provides' and '--requires' are mutually exclusive!")22 exit(1)23elif provides == True:24 show_provides = True25 show_requires = False26 omit_title = True27elif requires == True:28 show_provides = False29 show_requires = True30 omit_title = True31else:32 show_provides = True33 show_requires = True34 omit_title = False35# Check if files exist36if not os.path.isfile(infile):37 print("No such file: " + infile)38 exit(1)39if show_service == True:40 if fnmatch.filter(os.listdir(os.path.dirname(infile)), '*.service'):41 servicefile = fnmatch.filter(os.listdir(os.path.dirname(infile)), '*.service')[0]42 else:43 print("Can't find the service file!")44 exit(1)45# Check for the 46# Read the file47moddesc_data = json.load(open(infile, 'r'))48# Print out all provided APIs49if show_provides == True:50 if not omit_title == True:51 print("Provided APIs:")52 for api in moddesc_data['provides']:53 if show_service == True:54 print(api['id'] + " " + servicefile)55 else:56 print(api['id'])57if show_provides == True and show_requires == True:58 print("")59# Print out all required APIs60if show_requires == True:61 if not omit_title == True:62 print("Required APIs:")63 if "requires" in moddesc_data:64 for api in moddesc_data['requires']:65 if show_service == True:66 print(api['id'] + " " + servicefile)67 else:68 print(api['id'])69 else:70 print("<--No requirements-->")71# Exit...
auto_service.py
Source: auto_service.py
1desired_service = input('Enter desired auto service:\n')2services_offered = ['Oil change', 'Tire rotation', 'Car wash']3prices = [35, 19, 7]4if desired_service in services_offered:5 print('You entered: %s' % desired_service)6 show_service = desired_service.lower()7 n = services_offered.index(desired_service)8 cost = prices[n]9 print('Cost of %s: $%d' % (show_service, cost))10else:...
Check out the latest blogs from LambdaTest on this topic:
These days, development teams depend heavily on feedback from automated tests to evaluate the quality of the system they are working on.
I think that probably most development teams describe themselves as being “agile” and probably most development teams have standups, and meetings called retrospectives.There is also a lot of discussion about “agile”, much written about “agile”, and there are many presentations about “agile”. A question that is often asked is what comes after “agile”? Many testers work in “agile” teams so this question matters to us.
I routinely come across test strategy documents when working with customers. They are lengthy—100 pages or more—and packed with monotonous text that is routinely reused from one project to another. Yawn once more— the test halt and resume circumstances, the defect management procedure, entrance and exit criteria, unnecessary generic risks, and in fact, one often-used model replicates the requirements of textbook testing, from stress to systems integration.
To understand the agile testing mindset, we first need to determine what makes a team “agile.” To me, an agile team continually focuses on becoming self-organized and cross-functional to be able to complete any challenge they may face during a project.
When working on web automation with Selenium, I encountered scenarios where I needed to refresh pages from time to time. When does this happen? One scenario is that I needed to refresh the page to check that the data I expected to see was still available even after refreshing. Another possibility is to clear form data without going through each input individually.
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!!