How to use upload_index_file method in SeleniumBase

Best Python code snippet using SeleniumBase

6192_nightly-build.py

Source:6192_nightly-build.py Github

copy

Full Screen

...31 print_heading('Building {}'.format(path_to_package))32 check_call('python setup.py bdist_wheel -d {0} sdist -d {0}'.format(dist_dir).split(), cwd=path_to_package)33 print_heading('Built {}'.format(path_to_package))34UPLOADED_PACKAGE_LINKS = []35def upload_index_file(service, blob_name, title, links):36 service.create_blob_from_text(37 container_name=CONTAINER_NAME,38 blob_name=blob_name,39 text="<html><head><title>{0}</title></head><body><h1>{0}</h1>{1}</body></html>".format(title, '\n'.join(['<a href="{0}">{0}</a><br/>'.format(link) for link in links])),40 content_settings=ContentSettings(41 content_type='text/html',42 content_disposition=None,43 content_encoding=None,44 content_language=None,45 content_md5=None,46 cache_control=None47 )48 )49def gen_pkg_index_html(service, pkg_name):50 links = []51 index_file_name = pkg_name+'/'52 for blob in list(service.list_blobs(CONTAINER_NAME, prefix=index_file_name)):53 if blob.name == index_file_name:54 # Exclude the index file from being added to the list55 continue56 links.append(blob.name.replace(index_file_name, ''))57 upload_index_file(service, index_file_name, 'Links for {}'.format(pkg_name), links)58 UPLOADED_PACKAGE_LINKS.append(index_file_name)59def upload_package(service, file_path):60 print_heading('Uploading {}'.format(file_path))61 file_name = os.path.basename(file_path)62 norm_file_name = file_name.replace('_', '-') if file_name.endswith('.whl') else file_name63 pkg_name = re.match(PATTERN_PKG_NAME, norm_file_name).group(1)64 blob_name = '{}/{}'.format(pkg_name, file_name)65 service.create_blob_from_path(66 container_name=CONTAINER_NAME,67 blob_name=blob_name,68 file_path=file_path69 )70 gen_pkg_index_html(service, pkg_name)71 print_heading('Uploaded {}'.format(file_path))72all_command_modules = get_all_command_modules()73pkg_dir = tempfile.mkdtemp()74# Build the packages75build_package(PATH_TO_AZURE_CLI, pkg_dir)76build_package(PATH_TO_AZURE_CLI_CORE, pkg_dir)77build_package(PATH_TO_AZURE_CLI_NSPKG, pkg_dir)78build_package(PATH_TO_AZURE_CLI_COMMAND_MODS_NSPKG, pkg_dir)79for name, fullpath in all_command_modules:80 build_package(fullpath, pkg_dir)81# Upload packages as blobs82blob_service = BlockBlobService(connection_string=BLOB_SERVICE_CONNECTION_STRING)83for pkg in os.listdir(pkg_dir):84 upload_package(blob_service, os.path.join(pkg_dir, pkg))85# Upload the final index file...

Full Screen

Full Screen

nightly-build.py

Source:nightly-build.py Github

copy

Full Screen

...30 print_heading('Building {}'.format(path_to_package))31 check_call('python setup.py sdist -d {}'.format(dist_dir).split(), cwd=path_to_package)32 print_heading('Built {}'.format(path_to_package))33UPLOADED_PACKAGE_LINKS = []34def upload_index_file(service, blob_name, title, links):35 service.create_blob_from_text(36 container_name=CONTAINER_NAME,37 blob_name=blob_name,38 text="<html><head><title>{0}</title></head><body><h1>{0}</h1>{1}</body></html>".format(title, '\n'.join(['<a href="{0}">{0}</a><br/>'.format(link) for link in links])),39 content_settings=ContentSettings(40 content_type='text/html',41 content_disposition=None,42 content_encoding=None,43 content_language=None,44 content_md5=None,45 cache_control=None46 )47 )48def gen_pkg_index_html(service, pkg_name):49 links = []50 index_file_name = pkg_name+'/'51 for blob in list(service.list_blobs(CONTAINER_NAME, prefix=index_file_name)):52 if blob.name == index_file_name:53 # Exclude the index file from being added to the list54 continue55 links.append(blob.name.replace(index_file_name, ''))56 upload_index_file(service, index_file_name, 'Links for {}'.format(pkg_name), links)57 UPLOADED_PACKAGE_LINKS.append(index_file_name)58def upload_package(service, file_path):59 print_heading('Uploading {}'.format(file_path))60 file_name = os.path.basename(file_path)61 pkg_name = re.match(PATTERN_PKG_NAME, file_name).group(1)62 blob_name = '{}/{}'.format(pkg_name, file_name)63 service.create_blob_from_path(64 container_name=CONTAINER_NAME,65 blob_name=blob_name,66 file_path=file_path67 )68 gen_pkg_index_html(service, pkg_name)69 print_heading('Uploaded {}'.format(file_path))70all_command_modules = get_all_command_modules()71pkg_dir = tempfile.mkdtemp()72# Build the packages73build_package(PATH_TO_AZURE_CLI, pkg_dir)74build_package(PATH_TO_AZURE_CLI_CORE, pkg_dir)75build_package(PATH_TO_AZURE_CLI_NSPKG, pkg_dir)76for name, fullpath in all_command_modules:77 build_package(fullpath, pkg_dir)78# Upload packages as blobs79blob_service = BlockBlobService(connection_string=BLOB_SERVICE_CONNECTION_STRING)80for pkg in os.listdir(pkg_dir):81 upload_package(blob_service, os.path.join(pkg_dir, pkg))82# Upload the final index file...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run SeleniumBase automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful