1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Test installing remote libraries with the library manager
"""
def test(librepcb, helpers):
"""
Install some remote libraries
"""
with librepcb.open() as app:
# Open library manager
app.widget('controlPanelOpenLibraryManagerButton').click()
assert app.widget('libraryManager').properties()['visible'] is True
# Make sure there is only one entry ("New Library") in the libraries list
library_count_before = 1
library_list = app.widget('libraryManagerInstalledLibrariesList')
helpers.wait_for_model_items_count(library_list, library_count_before,
library_count_before)
# Wait until all libraries are fetched and check the count of them
remote_library_count = 3 # The dummy API provides 3 libraries
remote_library_list = app.widget('libraryManagerInstallLibrariesLibraryList')
helpers.wait_for_model_items_count(remote_library_list,
remote_library_count,
remote_library_count)
# Get the required widgets of all libraries and check their initial state
statuslabels = list()
checkboxes = list()
progressbars = list()
for i in range(0, remote_library_count):
suffix = "-{}".format(i) if i > 0 else ''
item_path = app.aliases['libraryManagerInstallLibrariesLibraryListItem'] + suffix
statuslabel = app.widget(path=item_path + '::lblInstalledVersion')
assert statuslabel.properties()['text'] == 'Recommended'
statuslabels.append(statuslabel)
checkbox = app.widget(path=item_path + '::cbxDownload')
assert checkbox.properties()['checked'] is True # Recommended
checkboxes.append(checkbox)
progressbar = app.widget(path=item_path + '::prgProgress', wait_active=False)
assert progressbar.properties()['value'] == 0
progressbars.append(progressbar)
# Deselect first library to install -> this must also uncheck the
# other libraries because it's a dependency!
checkboxes[0].set_property('checked', False)
# Verify checked state of all libraries
for i in range(0, remote_library_count):
assert checkboxes[i].properties()['checked'] is False
# Select second library to install -> this must also check the first
# library because it's a dependency!
checkboxes[1].set_property('checked', True)
# Verify checked state of all libraries
for i in range(0, remote_library_count):
assert checkboxes[i].properties()['checked'] is (True if i <= 1 else False)
# Install selected libraries
app.widget('libraryManagerInstallLibrariesDownloadButton').click()
# Check if two libraries were added
library_count_after = library_count_before + 2
helpers.wait_for_model_items_count(library_list, library_count_after,
library_count_after)
# Wait until progress bars are at 100% and hidden (i.e. installation finished)
for i in range(0, remote_library_count):
props = {'value': 100 if i <= 1 else 0, 'visible': False}
progressbars[i].wait_for_properties(props=props)
# Check installed status of libraries in remote library list
for i in range(0, remote_library_count):
if i <= 1:
# The downloaded libraries are outdated, thus the installed
# version number is displayed.
assert statuslabels[i].properties()['text'].startswith('v')
else:
assert statuslabels[i].properties()['text'] == 'Recommended'
|