Commit 843279ba authored by OzzieIsaacs's avatar OzzieIsaacs

Merge remote-tracking branch 'jef/jef/download-kobo' into master

parents cf35c9dc 711a6975
...@@ -132,6 +132,7 @@ def admin(): ...@@ -132,6 +132,7 @@ def admin():
allUser = ub.session.query(ub.User).all() allUser = ub.session.query(ub.User).all()
email_settings = config.get_mail_settings() email_settings = config.get_mail_settings()
return render_title_template("admin.html", allUser=allUser, email=email_settings, config=config, commit=commit, return render_title_template("admin.html", allUser=allUser, email=email_settings, config=config, commit=commit,
feature_support=feature_support,
title=_(u"Admin page"), page="admin") title=_(u"Admin page"), page="admin")
...@@ -637,6 +638,7 @@ def _configuration_update_helper(): ...@@ -637,6 +638,7 @@ def _configuration_update_helper():
_config_checkbox_int(to_save, "config_public_reg") _config_checkbox_int(to_save, "config_public_reg")
_config_checkbox_int(to_save, "config_register_email") _config_checkbox_int(to_save, "config_register_email")
reboot_required |= _config_checkbox_int(to_save, "config_kobo_sync") reboot_required |= _config_checkbox_int(to_save, "config_kobo_sync")
_config_int(to_save, "config_external_port")
_config_checkbox_int(to_save, "config_kobo_proxy") _config_checkbox_int(to_save, "config_kobo_proxy")
_config_string(to_save, "config_upload_formats") _config_string(to_save, "config_upload_formats")
......
...@@ -57,6 +57,7 @@ class _Settings(_Base): ...@@ -57,6 +57,7 @@ class _Settings(_Base):
config_calibre_dir = Column(String) config_calibre_dir = Column(String)
config_port = Column(Integer, default=constants.DEFAULT_PORT) config_port = Column(Integer, default=constants.DEFAULT_PORT)
config_external_port = Column(Integer, default=constants.DEFAULT_PORT)
config_certfile = Column(String) config_certfile = Column(String)
config_keyfile = Column(String) config_keyfile = Column(String)
......
...@@ -129,7 +129,7 @@ def HandleSyncRequest(): ...@@ -129,7 +129,7 @@ def HandleSyncRequest():
sync_token = SyncToken.SyncToken.from_headers(request.headers) sync_token = SyncToken.SyncToken.from_headers(request.headers)
log.info("Kobo library sync request received.") log.info("Kobo library sync request received.")
if not current_app.wsgi_app.is_proxied: if not current_app.wsgi_app.is_proxied:
log.debug('Kobo: Received unproxied request, changed request port to server port') log.debug('Kobo: Received unproxied request, changed request port to external server port')
# TODO: Limit the number of books return per sync call, and rely on the sync-continuatation header # TODO: Limit the number of books return per sync call, and rely on the sync-continuatation header
# instead so that the device triggers another sync. # instead so that the device triggers another sync.
...@@ -252,7 +252,7 @@ def generate_sync_response(sync_token, sync_results): ...@@ -252,7 +252,7 @@ def generate_sync_response(sync_token, sync_results):
@download_required @download_required
def HandleMetadataRequest(book_uuid): def HandleMetadataRequest(book_uuid):
if not current_app.wsgi_app.is_proxied: if not current_app.wsgi_app.is_proxied:
log.debug('Kobo: Received unproxied request, changed request port to server port') log.debug('Kobo: Received unproxied request, changed request port to external server port')
log.info("Kobo library metadata request received for book %s" % book_uuid) log.info("Kobo library metadata request received for book %s" % book_uuid)
book = calibre_db.get_book_by_uuid(book_uuid) book = calibre_db.get_book_by_uuid(book_uuid)
if not book or not book.data: if not book or not book.data:
...@@ -269,10 +269,11 @@ def get_download_url_for_book(book, book_format): ...@@ -269,10 +269,11 @@ def get_download_url_for_book(book, book_format):
host = "".join(request.host.split(':')[:-1]) host = "".join(request.host.split(':')[:-1])
else: else:
host = request.host host = request.host
return "{url_scheme}://{url_base}:{url_port}/download/{book_id}/{book_format}".format( return "{url_scheme}://{url_base}:{url_port}/download/{book_id}/{book_format}".format(
url_scheme=request.scheme, url_scheme=request.scheme,
url_base=host, url_base=host,
url_port=config.config_port, url_port=config.config_external_port,
book_id=book.id, book_id=book.id,
book_format=book_format.lower() book_format=book_format.lower()
) )
...@@ -924,7 +925,7 @@ def HandleInitRequest(): ...@@ -924,7 +925,7 @@ def HandleInitRequest():
kobo_resources = NATIVE_KOBO_RESOURCES() kobo_resources = NATIVE_KOBO_RESOURCES()
if not current_app.wsgi_app.is_proxied: if not current_app.wsgi_app.is_proxied:
log.debug('Kobo: Received unproxied request, changed request port to server port') log.debug('Kobo: Received unproxied request, changed request port to external server port')
if ':' in request.host and not request.host.endswith(']'): if ':' in request.host and not request.host.endswith(']'):
host = "".join(request.host.split(':')[:-1]) host = "".join(request.host.split(':')[:-1])
else: else:
...@@ -932,8 +933,9 @@ def HandleInitRequest(): ...@@ -932,8 +933,9 @@ def HandleInitRequest():
calibre_web_url = "{url_scheme}://{url_base}:{url_port}".format( calibre_web_url = "{url_scheme}://{url_base}:{url_port}".format(
url_scheme=request.scheme, url_scheme=request.scheme,
url_base=host, url_base=host,
url_port=config.config_port url_port=config.config_external_port
) )
log.debug('Kobo: Received unproxied request, changed request url to %s', calibre_web_url)
kobo_resources["image_host"] = calibre_web_url kobo_resources["image_host"] = calibre_web_url
kobo_resources["image_url_quality_template"] = unquote(calibre_web_url + kobo_resources["image_url_quality_template"] = unquote(calibre_web_url +
url_for("kobo.HandleCoverImageRequest", url_for("kobo.HandleCoverImageRequest",
...@@ -942,16 +944,14 @@ def HandleInitRequest(): ...@@ -942,16 +944,14 @@ def HandleInitRequest():
width="{width}", width="{width}",
height="{height}", height="{height}",
Quality='{Quality}', Quality='{Quality}',
isGreyscale='isGreyscale' isGreyscale='isGreyscale'))
))
kobo_resources["image_url_template"] = unquote(calibre_web_url + kobo_resources["image_url_template"] = unquote(calibre_web_url +
url_for("kobo.HandleCoverImageRequest", url_for("kobo.HandleCoverImageRequest",
auth_token=kobo_auth.get_auth_token(), auth_token=kobo_auth.get_auth_token(),
book_uuid="{ImageId}", book_uuid="{ImageId}",
width="{width}", width="{width}",
height="{height}", height="{height}",
isGreyscale='false' isGreyscale='false'))
))
else: else:
kobo_resources["image_host"] = url_for("web.index", _external=True).strip("/") kobo_resources["image_host"] = url_for("web.index", _external=True).strip("/")
kobo_resources["image_url_quality_template"] = unquote(url_for("kobo.HandleCoverImageRequest", kobo_resources["image_url_quality_template"] = unquote(url_for("kobo.HandleCoverImageRequest",
...@@ -970,7 +970,6 @@ def HandleInitRequest(): ...@@ -970,7 +970,6 @@ def HandleInitRequest():
isGreyscale='false', isGreyscale='false',
_external=True)) _external=True))
response = make_response(jsonify({"Resources": kobo_resources})) response = make_response(jsonify({"Resources": kobo_resources}))
response.headers["x-kobo-apitoken"] = "e30=" response.headers["x-kobo-apitoken"] = "e30="
......
...@@ -88,6 +88,12 @@ ...@@ -88,6 +88,12 @@
<div class="col-xs-6 col-sm-6">{{_('Port')}}</div> <div class="col-xs-6 col-sm-6">{{_('Port')}}</div>
<div class="col-xs-6 col-sm-6">{{config.config_port}}</div> <div class="col-xs-6 col-sm-6">{{config.config_port}}</div>
</div> </div>
{% if feature_support['kobo'] and config.config_port != config.config_external_port %}
<div class="row">
<div class="col-xs-6 col-sm-6">{{_('External Port')}}</div>
<div class="col-xs-6 col-sm-6">{{config.config_external_port}}</div>
</div>
{% endif %}
</div> </div>
<div class="col-xs-12 col-sm-6"> <div class="col-xs-12 col-sm-6">
<div class="row"> <div class="row">
......
...@@ -194,10 +194,14 @@ ...@@ -194,10 +194,14 @@
<label for="config_kobo_sync">{{_('Enable Kobo sync')}}</label> <label for="config_kobo_sync">{{_('Enable Kobo sync')}}</label>
</div> </div>
<div data-related="kobo-settings"> <div data-related="kobo-settings">
<div class="form-group" style="text-indent:10px;"> <div class="form-group" style="margin-left:10px;">
<input type="checkbox" id="config_kobo_proxy" name="config_kobo_proxy" {% if config.config_kobo_proxy %}checked{% endif %}> <input type="checkbox" id="config_kobo_proxy" name="config_kobo_proxy" {% if config.config_kobo_proxy %}checked{% endif %}>
<label for="config_kobo_proxy">{{_('Proxy unknown requests to Kobo Store')}}</label> <label for="config_kobo_proxy">{{_('Proxy unknown requests to Kobo Store')}}</label>
</div> </div>
<div class="form-group" style="margin-left:10px;">
<label for="config_external_port">{{_('Server External Port (for port forwarded API calls)')}}</label>
<input type="number" min="1" max="65535" class="form-control" name="config_external_port" id="config_external_port" value="{% if config.config_external_port != None %}{{ config.config_external_port }}{% endif %}" autocomplete="off" required>
</div>
</div> </div>
{% endif %} {% endif %}
{% if feature_support['goodreads'] %} {% if feature_support['goodreads'] %}
......
...@@ -36,17 +36,17 @@ ...@@ -36,17 +36,17 @@
<div class="col-xs-12 col-sm-6"> <div class="col-xs-12 col-sm-6">
<div class="row"> <div class="row">
<div class="col-xs-6 col-md-6 col-sm-offset-3" style="margin-top:50px;"> <div class="col-xs-6 col-md-6 col-sm-offset-3" style="margin-top:50px;">
<p class='text-justify attribute'><strong>Start Time: </strong>2020-08-14 19:46:42</p> <p class='text-justify attribute'><strong>Start Time: </strong>2020-08-23 18:29:00</p>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col-xs-6 col-md-6 col-sm-offset-3"> <div class="col-xs-6 col-md-6 col-sm-offset-3">
<p class='text-justify attribute'><strong>Stop Time: </strong>2020-08-14 21:02:08</p> <p class='text-justify attribute'><strong>Stop Time: </strong>2020-08-23 19:44:09</p>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col-xs-6 col-md-6 col-sm-offset-3"> <div class="col-xs-6 col-md-6 col-sm-offset-3">
<p class='text-justify attribute'><strong>Duration: </strong>1h 243 min</p> <p class='text-justify attribute'><strong>Duration: </strong>1h 212 min</p>
</div> </div>
</div> </div>
</div> </div>
...@@ -955,6 +955,58 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -955,6 +955,58 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr class="result['header']['style']">
<td>test_edit_books_gdrive.test_edit_books_gdrive</td>
<td class="text-center">1</td>
<td class="text-center">0</td>
<td class="text-center">0</td>
<td class="text-center">1</td>
<td class="text-center">0</td>
<td class="text-center">
<a onclick="showClassDetail('c8', 1)">Detail</a>
</td>
</tr>
<tr id='et8.1' class='none bg-info'>
<td>
<div class='testcase'>test_config_gdrive</div>
</td>
<td colspan='6'>
<div class="text-center">
<a class="popup_link text-center" onfocus='blur()' onclick="showTestDetail('div_et8.1')">ERROR</a>
</div>
<!--css div popup start-->
<div id='div_et8.1' class="popup_window test_output" style="display:none;">
<div class='close_button pull-right'>
<button type="button" class="close" aria-label="Close" onfocus='this.blur();'
onclick="document.getElementById('div_et8.1').style.display='none'"><span
aria-hidden="true">&times;</span></button>
</div>
<div class="text-left pull-left">
<pre class="text-left">Traceback (most recent call last):
File "/home/matthias/Entwicklung/calibre-web-test/test/test_edit_books_gdrive.py", line 139, in test_config_gdrive
auth_button.click()
File "/home/matthias/Entwicklung/calibre-web-test/venv/lib/python3.8/site-packages/selenium/webdriver/remote/webelement.py", line 80, in click
self._execute(Command.CLICK_ELEMENT)
File "/home/matthias/Entwicklung/calibre-web-test/venv/lib/python3.8/site-packages/selenium/webdriver/remote/webelement.py", line 633, in _execute
return self._parent.execute(command, params)
File "/home/matthias/Entwicklung/calibre-web-test/venv/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "/home/matthias/Entwicklung/calibre-web-test/venv/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8083/gdrive/authenticate&c=UTF-8&d=Firefox%20kann%20keine%20Verbindung%20zu%20dem%20Server%20unter%20127.0.0.1%3A8083%20aufbauen.</pre>
</div>
<div class="clearfix"></div>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class="result['header']['style']"> <tr class="result['header']['style']">
<td>test_email_STARTTLS.test_STARTTLS</td> <td>test_email_STARTTLS.test_STARTTLS</td>
<td class="text-center">3</td> <td class="text-center">3</td>
...@@ -963,13 +1015,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -963,13 +1015,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c8', 3)">Detail</a> <a onclick="showClassDetail('c9', 3)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt8.1' class='hiddenRow bg-success'> <tr id='pt9.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_STARTTLS</div> <div class='testcase'>test_STARTTLS</div>
</td> </td>
...@@ -978,7 +1030,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -978,7 +1030,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt8.2' class='hiddenRow bg-success'> <tr id='pt9.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_STARTTLS_SSL_setup_error</div> <div class='testcase'>test_STARTTLS_SSL_setup_error</div>
</td> </td>
...@@ -987,7 +1039,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -987,7 +1039,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt8.3' class='hiddenRow bg-success'> <tr id='pt9.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_STARTTLS_resend_password</div> <div class='testcase'>test_STARTTLS_resend_password</div>
</td> </td>
...@@ -1005,13 +1057,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1005,13 +1057,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c9', 4)">Detail</a> <a onclick="showClassDetail('c10', 4)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt9.1' class='hiddenRow bg-success'> <tr id='pt10.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_SSL_None_setup_error</div> <div class='testcase'>test_SSL_None_setup_error</div>
</td> </td>
...@@ -1020,7 +1072,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1020,7 +1072,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt9.2' class='hiddenRow bg-success'> <tr id='pt10.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_SSL_STARTTLS_setup_error</div> <div class='testcase'>test_SSL_STARTTLS_setup_error</div>
</td> </td>
...@@ -1029,7 +1081,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1029,7 +1081,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt9.3' class='hiddenRow bg-success'> <tr id='pt10.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_SSL_logging_email</div> <div class='testcase'>test_SSL_logging_email</div>
</td> </td>
...@@ -1038,7 +1090,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1038,7 +1090,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt9.4' class='hiddenRow bg-success'> <tr id='pt10.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_SSL_only</div> <div class='testcase'>test_SSL_only</div>
</td> </td>
...@@ -1056,13 +1108,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1056,13 +1108,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c10', 3)">Detail</a> <a onclick="showClassDetail('c11', 3)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt10.1' class='hiddenRow bg-success'> <tr id='pt11.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_author_page</div> <div class='testcase'>test_author_page</div>
</td> </td>
...@@ -1071,7 +1123,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1071,7 +1123,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt10.2' class='hiddenRow bg-success'> <tr id='pt11.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_author_page_invalid</div> <div class='testcase'>test_author_page_invalid</div>
</td> </td>
...@@ -1080,7 +1132,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1080,7 +1132,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt10.3' class='hiddenRow bg-success'> <tr id='pt11.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_goodreads_about</div> <div class='testcase'>test_goodreads_about</div>
</td> </td>
...@@ -1092,19 +1144,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1092,19 +1144,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr class="result['header']['style']"> <tr class="result['header']['style']">
<td>test_helper.CalibreHelper</td> <td>test_helper.CalibreHelper</td>
<td class="text-center">15</td> <td class="text-center">16</td>
<td class="text-center">15</td> <td class="text-center">16</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c11', 15)">Detail</a> <a onclick="showClassDetail('c12', 16)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt11.1' class='hiddenRow bg-success'> <tr id='pt12.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_author_sort</div> <div class='testcase'>test_author_sort</div>
</td> </td>
...@@ -1113,7 +1165,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1113,7 +1165,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.2' class='hiddenRow bg-success'> <tr id='pt12.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_author_sort_comma</div> <div class='testcase'>test_author_sort_comma</div>
</td> </td>
...@@ -1122,7 +1174,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1122,7 +1174,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.3' class='hiddenRow bg-success'> <tr id='pt12.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_author_sort_junior</div> <div class='testcase'>test_author_sort_junior</div>
</td> </td>
...@@ -1131,7 +1183,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1131,7 +1183,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.4' class='hiddenRow bg-success'> <tr id='pt12.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_author_sort_oneword</div> <div class='testcase'>test_author_sort_oneword</div>
</td> </td>
...@@ -1140,7 +1192,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1140,7 +1192,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.5' class='hiddenRow bg-success'> <tr id='pt12.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_author_sort_roman</div> <div class='testcase'>test_author_sort_roman</div>
</td> </td>
...@@ -1149,7 +1201,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1149,7 +1201,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.6' class='hiddenRow bg-success'> <tr id='pt12.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_Limit_Length</div> <div class='testcase'>test_check_Limit_Length</div>
</td> </td>
...@@ -1158,7 +1210,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1158,7 +1210,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.7' class='hiddenRow bg-success'> <tr id='pt12.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_char_replacement</div> <div class='testcase'>test_check_char_replacement</div>
</td> </td>
...@@ -1167,7 +1219,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1167,7 +1219,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.8' class='hiddenRow bg-success'> <tr id='pt12.8' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_chinese_Characters</div> <div class='testcase'>test_check_chinese_Characters</div>
</td> </td>
...@@ -1176,7 +1228,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1176,7 +1228,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.9' class='hiddenRow bg-success'> <tr id='pt12.9' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_deg_eur_replacement</div> <div class='testcase'>test_check_deg_eur_replacement</div>
</td> </td>
...@@ -1185,7 +1237,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1185,7 +1237,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.10' class='hiddenRow bg-success'> <tr id='pt12.10' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_doubleS</div> <div class='testcase'>test_check_doubleS</div>
</td> </td>
...@@ -1194,7 +1246,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1194,7 +1246,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.11' class='hiddenRow bg-success'> <tr id='pt12.11' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_finish_Dot</div> <div class='testcase'>test_check_finish_Dot</div>
</td> </td>
...@@ -1203,7 +1255,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1203,7 +1255,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.12' class='hiddenRow bg-success'> <tr id='pt12.12' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_high23</div> <div class='testcase'>test_check_high23</div>
</td> </td>
...@@ -1212,7 +1264,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1212,7 +1264,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.13' class='hiddenRow bg-success'> <tr id='pt12.13' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_umlauts</div> <div class='testcase'>test_check_umlauts</div>
</td> </td>
...@@ -1221,7 +1273,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1221,7 +1273,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.14' class='hiddenRow bg-success'> <tr id='pt12.14' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_random_password</div> <div class='testcase'>test_random_password</div>
</td> </td>
...@@ -1230,98 +1282,87 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1230,98 +1282,87 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt11.15' class='hiddenRow bg-success'> <tr id='pt12.15' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_whitespaces</div> <div class='testcase'>test_split_authors</div>
</td> </td>
<td colspan='6' align='center'>PASS</td> <td colspan='6' align='center'>PASS</td>
</tr> </tr>
<tr id='pt12.16' class='hiddenRow bg-success'>
<tr class="result['header']['style']">
<td>test_kobo_sync.TestKoboSync</td>
<td class="text-center">8</td>
<td class="text-center">8</td>
<td class="text-center">0</td>
<td class="text-center">0</td>
<td class="text-center">0</td>
<td class="text-center">
<a onclick="showClassDetail('c12', 8)">Detail</a>
</td>
</tr>
<tr id='pt12.1' class='hiddenRow bg-success'>
<td>
<div class='testcase'>test_kobo_about</div>
</td>
<td colspan='6' align='center'>PASS</td>
</tr>
<tr id='pt12.2' class='hiddenRow bg-success'>
<td>
<div class='testcase'>test_shelves_add_remove_books</div>
</td>
<td colspan='6' align='center'>PASS</td>
</tr>
<tr id='pt12.3' class='hiddenRow bg-success'>
<td>
<div class='testcase'>test_sync_changed_book</div>
</td>
<td colspan='6' align='center'>PASS</td>
</tr>
<tr id='pt12.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_sync_invalid</div> <div class='testcase'>test_whitespaces</div>
</td> </td>
<td colspan='6' align='center'>PASS</td> <td colspan='6' align='center'>PASS</td>
</tr> </tr>
<tr id='pt12.5' class='hiddenRow bg-success'>
<td>
<div class='testcase'>test_sync_reading_state</div>
</td>
<td colspan='6' align='center'>PASS</td>
</tr>
<tr class="result['header']['style']">
<tr id='pt12.6' class='hiddenRow bg-success'> <td>unittest.loader._FailedTest</td>
<td> <td class="text-center">1</td>
<div class='testcase'>test_sync_shelf</div> <td class="text-center">0</td>
<td class="text-center">0</td>
<td class="text-center">1</td>
<td class="text-center">0</td>
<td class="text-center">
<a onclick="showClassDetail('c13', 1)">Detail</a>
</td> </td>
<td colspan='6' align='center'>PASS</td>
</tr> </tr>
<tr id='pt12.7' class='hiddenRow bg-success'> <tr id='et13.1' class='none bg-info'>
<td> <td>
<div class='testcase'>test_sync_unchanged</div> <div class='testcase'>unittestloader_FailedTest)</div>
</td> </td>
<td colspan='6' align='center'>PASS</td> <td colspan='6'>
</tr> <div class="text-center">
<a class="popup_link text-center" onfocus='blur()' onclick="showTestDetail('div_et13.1')">ERROR</a>
</div>
<!--css div popup start-->
<tr id='pt12.8' class='hiddenRow bg-success'> <div id='div_et13.1' class="popup_window test_output" style="display:none;">
<td> <div class='close_button pull-right'>
<div class='testcase'>test_sync_upload</div> <button type="button" class="close" aria-label="Close" onfocus='this.blur();'
onclick="document.getElementById('div_et13.1').style.display='none'"><span
aria-hidden="true">&times;</span></button>
</div>
<div class="text-left pull-left">
<pre class="text-left">ImportError: Failed to import test module: test_kobo_sync
Traceback (most recent call last):
File "/usr/lib/python3.8/unittest/loader.py", line 436, in _find_test_path
module = self._get_module_from_name(name)
File "/usr/lib/python3.8/unittest/loader.py", line 377, in _get_module_from_name
__import__(name)
File "/home/matthias/Entwicklung/calibre-web-test/test/test_kobo_sync.py", line 228
session.close()'''
def test_sync_unchanged(self):
self.inital_sync()
# append synctoken to headers and start over again
newSession = requests.session()
r = newSession.get(self.kobo_adress+'/v1/initialization', headers=TestKoboSync.header)
self.assertEqual(r.status_code, 200)
params = {'Filter': 'All', 'DownloadUrlFilter': 'Generic,Android', 'PrioritizeRecentReads':'true'}
r = newSession.get(self.kobo_adress+'/v1/library/sync', params=params, headers=TestKoboSync.syncToken)
self.assertEqual(r.status_code, 200)
self.assertEqual(r.json(), [])
newSession.close()
TestKoboSync.syncToken = {'x-kobo-synctoken': r.headers['x-kobo-synctoken']}
'''def test_sync_upload(self):
^
SyntaxError: invalid syntax</pre>
</div>
<div class="clearfix"></div>
</div>
<!--css div popup end-->
</td> </td>
<td colspan='6' align='center'>PASS</td>
</tr> </tr>
...@@ -1335,13 +1376,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1335,13 +1376,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c13', 10)">Detail</a> <a onclick="showClassDetail('c14', 10)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt13.1' class='hiddenRow bg-success'> <tr id='pt14.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_LDAP_SSL</div> <div class='testcase'>test_LDAP_SSL</div>
</td> </td>
...@@ -1350,7 +1391,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1350,7 +1391,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.2' class='hiddenRow bg-success'> <tr id='pt14.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_LDAP_STARTTLS</div> <div class='testcase'>test_LDAP_STARTTLS</div>
</td> </td>
...@@ -1359,7 +1400,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1359,7 +1400,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.3' class='hiddenRow bg-success'> <tr id='pt14.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_LDAP_fallback_Login</div> <div class='testcase'>test_LDAP_fallback_Login</div>
</td> </td>
...@@ -1368,7 +1409,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1368,7 +1409,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.4' class='hiddenRow bg-success'> <tr id='pt14.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_LDAP_import</div> <div class='testcase'>test_LDAP_import</div>
</td> </td>
...@@ -1377,7 +1418,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1377,7 +1418,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.5' class='hiddenRow bg-success'> <tr id='pt14.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_LDAP_login</div> <div class='testcase'>test_LDAP_login</div>
</td> </td>
...@@ -1386,7 +1427,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1386,7 +1427,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.6' class='hiddenRow bg-success'> <tr id='pt14.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_invalid_LDAP</div> <div class='testcase'>test_invalid_LDAP</div>
</td> </td>
...@@ -1395,7 +1436,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1395,7 +1436,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.7' class='hiddenRow bg-success'> <tr id='pt14.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_ldap_about</div> <div class='testcase'>test_ldap_about</div>
</td> </td>
...@@ -1404,7 +1445,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1404,7 +1445,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.8' class='hiddenRow bg-success'> <tr id='pt14.8' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_ldap_authentication</div> <div class='testcase'>test_ldap_authentication</div>
</td> </td>
...@@ -1413,7 +1454,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1413,7 +1454,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.9' class='hiddenRow bg-success'> <tr id='pt14.9' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_ldap_kobo_sync</div> <div class='testcase'>test_ldap_kobo_sync</div>
</td> </td>
...@@ -1422,7 +1463,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1422,7 +1463,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt13.10' class='hiddenRow bg-success'> <tr id='pt14.10' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_ldap_opds_download_book</div> <div class='testcase'>test_ldap_opds_download_book</div>
</td> </td>
...@@ -1440,13 +1481,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1440,13 +1481,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">1</td> <td class="text-center">1</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c14', 7)">Detail</a> <a onclick="showClassDetail('c15', 7)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt14.1' class='hiddenRow bg-success'> <tr id='pt15.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_access_log_recover</div> <div class='testcase'>test_access_log_recover</div>
</td> </td>
...@@ -1455,7 +1496,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1455,7 +1496,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt14.2' class='hiddenRow bg-success'> <tr id='pt15.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_debug_log</div> <div class='testcase'>test_debug_log</div>
</td> </td>
...@@ -1464,7 +1505,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1464,7 +1505,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt14.3' class='hiddenRow bg-success'> <tr id='pt15.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_failed_login</div> <div class='testcase'>test_failed_login</div>
</td> </td>
...@@ -1473,19 +1514,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1473,19 +1514,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='st14.4' class='none bg-warning'> <tr id='st15.4' class='none bg-warning'>
<td> <td>
<div class='testcase'>test_failed_register</div> <div class='testcase'>test_failed_register</div>
</td> </td>
<td colspan='6'> <td colspan='6'>
<div class="text-center"> <div class="text-center">
<a class="popup_link text-center" onfocus='blur()' onclick="showTestDetail('div_st14.4')">SKIP</a> <a class="popup_link text-center" onfocus='blur()' onclick="showTestDetail('div_st15.4')">SKIP</a>
</div> </div>
<!--css div popup start--> <!--css div popup start-->
<div id='div_st14.4' class="popup_window test_output" style="display:none;"> <div id='div_st15.4' class="popup_window test_output" style="display:none;">
<div class='close_button pull-right'> <div class='close_button pull-right'>
<button type="button" class="close" aria-label="Close" onfocus='this.blur();' <button type="button" class="close" aria-label="Close" onfocus='this.blur();'
onclick="document.getElementById('div_st14.4').style.display='none'"><span onclick="document.getElementById('div_st15.4').style.display='none'"><span
aria-hidden="true">&times;</span></button> aria-hidden="true">&times;</span></button>
</div> </div>
<div class="text-left pull-left"> <div class="text-left pull-left">
...@@ -1499,7 +1540,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1499,7 +1540,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt14.5' class='hiddenRow bg-success'> <tr id='pt15.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_logfile_change</div> <div class='testcase'>test_logfile_change</div>
</td> </td>
...@@ -1508,7 +1549,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1508,7 +1549,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt14.6' class='hiddenRow bg-success'> <tr id='pt15.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_logfile_recover</div> <div class='testcase'>test_logfile_recover</div>
</td> </td>
...@@ -1517,7 +1558,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1517,7 +1558,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt14.7' class='hiddenRow bg-success'> <tr id='pt15.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_logviewer</div> <div class='testcase'>test_logviewer</div>
</td> </td>
...@@ -1535,13 +1576,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1535,13 +1576,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c15', 11)">Detail</a> <a onclick="showClassDetail('c16', 11)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt15.1' class='hiddenRow bg-success'> <tr id='pt16.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_digest_login</div> <div class='testcase'>test_digest_login</div>
</td> </td>
...@@ -1550,7 +1591,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1550,7 +1591,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.2' class='hiddenRow bg-success'> <tr id='pt16.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_capital_letters_user_unicode_password</div> <div class='testcase'>test_login_capital_letters_user_unicode_password</div>
</td> </td>
...@@ -1559,7 +1600,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1559,7 +1600,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.3' class='hiddenRow bg-success'> <tr id='pt16.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_delete_admin</div> <div class='testcase'>test_login_delete_admin</div>
</td> </td>
...@@ -1568,7 +1609,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1568,7 +1609,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.4' class='hiddenRow bg-success'> <tr id='pt16.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_empty_password</div> <div class='testcase'>test_login_empty_password</div>
</td> </td>
...@@ -1577,7 +1618,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1577,7 +1618,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.5' class='hiddenRow bg-success'> <tr id='pt16.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_locale_select</div> <div class='testcase'>test_login_locale_select</div>
</td> </td>
...@@ -1586,7 +1627,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1586,7 +1627,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.6' class='hiddenRow bg-success'> <tr id='pt16.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_protected</div> <div class='testcase'>test_login_protected</div>
</td> </td>
...@@ -1595,7 +1636,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1595,7 +1636,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.7' class='hiddenRow bg-success'> <tr id='pt16.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_remember_me</div> <div class='testcase'>test_login_remember_me</div>
</td> </td>
...@@ -1604,7 +1645,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1604,7 +1645,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.8' class='hiddenRow bg-success'> <tr id='pt16.8' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_rename_user</div> <div class='testcase'>test_login_rename_user</div>
</td> </td>
...@@ -1613,7 +1654,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1613,7 +1654,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.9' class='hiddenRow bg-success'> <tr id='pt16.9' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_unicode_user_space_end_password</div> <div class='testcase'>test_login_unicode_user_space_end_password</div>
</td> </td>
...@@ -1622,7 +1663,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1622,7 +1663,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.10' class='hiddenRow bg-success'> <tr id='pt16.10' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_login_user_with_space_password_end_space</div> <div class='testcase'>test_login_user_with_space_password_end_space</div>
</td> </td>
...@@ -1631,7 +1672,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1631,7 +1672,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt15.11' class='hiddenRow bg-success'> <tr id='pt16.11' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_robots</div> <div class='testcase'>test_robots</div>
</td> </td>
...@@ -1649,13 +1690,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1649,13 +1690,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c16', 2)">Detail</a> <a onclick="showClassDetail('c17', 2)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt16.1' class='hiddenRow bg-success'> <tr id='pt17.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_oauth_about</div> <div class='testcase'>test_oauth_about</div>
</td> </td>
...@@ -1664,7 +1705,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1664,7 +1705,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt16.2' class='hiddenRow bg-success'> <tr id='pt17.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_visible_oauth</div> <div class='testcase'>test_visible_oauth</div>
</td> </td>
...@@ -1682,13 +1723,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1682,13 +1723,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c17', 20)">Detail</a> <a onclick="showClassDetail('c18', 20)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt17.1' class='hiddenRow bg-success'> <tr id='pt18.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds</div> <div class='testcase'>test_opds</div>
</td> </td>
...@@ -1697,7 +1738,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1697,7 +1738,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.2' class='hiddenRow bg-success'> <tr id='pt18.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_author</div> <div class='testcase'>test_opds_author</div>
</td> </td>
...@@ -1706,7 +1747,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1706,7 +1747,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.3' class='hiddenRow bg-success'> <tr id='pt18.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_calibre_companion</div> <div class='testcase'>test_opds_calibre_companion</div>
</td> </td>
...@@ -1715,7 +1756,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1715,7 +1756,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.4' class='hiddenRow bg-success'> <tr id='pt18.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_cover</div> <div class='testcase'>test_opds_cover</div>
</td> </td>
...@@ -1724,7 +1765,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1724,7 +1765,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.5' class='hiddenRow bg-success'> <tr id='pt18.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_download_book</div> <div class='testcase'>test_opds_download_book</div>
</td> </td>
...@@ -1733,7 +1774,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1733,7 +1774,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.6' class='hiddenRow bg-success'> <tr id='pt18.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_formats</div> <div class='testcase'>test_opds_formats</div>
</td> </td>
...@@ -1742,7 +1783,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1742,7 +1783,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.7' class='hiddenRow bg-success'> <tr id='pt18.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_guest_user</div> <div class='testcase'>test_opds_guest_user</div>
</td> </td>
...@@ -1751,7 +1792,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1751,7 +1792,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.8' class='hiddenRow bg-success'> <tr id='pt18.8' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_hot</div> <div class='testcase'>test_opds_hot</div>
</td> </td>
...@@ -1760,7 +1801,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1760,7 +1801,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.9' class='hiddenRow bg-success'> <tr id='pt18.9' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_language</div> <div class='testcase'>test_opds_language</div>
</td> </td>
...@@ -1769,7 +1810,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1769,7 +1810,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.10' class='hiddenRow bg-success'> <tr id='pt18.10' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_non_admin</div> <div class='testcase'>test_opds_non_admin</div>
</td> </td>
...@@ -1778,7 +1819,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1778,7 +1819,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.11' class='hiddenRow bg-success'> <tr id='pt18.11' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_publisher</div> <div class='testcase'>test_opds_publisher</div>
</td> </td>
...@@ -1787,7 +1828,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1787,7 +1828,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.12' class='hiddenRow bg-success'> <tr id='pt18.12' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_random</div> <div class='testcase'>test_opds_random</div>
</td> </td>
...@@ -1796,7 +1837,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1796,7 +1837,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.13' class='hiddenRow bg-success'> <tr id='pt18.13' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_ratings</div> <div class='testcase'>test_opds_ratings</div>
</td> </td>
...@@ -1805,7 +1846,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1805,7 +1846,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.14' class='hiddenRow bg-success'> <tr id='pt18.14' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_read_unread</div> <div class='testcase'>test_opds_read_unread</div>
</td> </td>
...@@ -1814,7 +1855,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1814,7 +1855,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.15' class='hiddenRow bg-success'> <tr id='pt18.15' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_search</div> <div class='testcase'>test_opds_search</div>
</td> </td>
...@@ -1823,7 +1864,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1823,7 +1864,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.16' class='hiddenRow bg-success'> <tr id='pt18.16' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_series</div> <div class='testcase'>test_opds_series</div>
</td> </td>
...@@ -1832,7 +1873,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1832,7 +1873,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.17' class='hiddenRow bg-success'> <tr id='pt18.17' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_shelf_access</div> <div class='testcase'>test_opds_shelf_access</div>
</td> </td>
...@@ -1841,7 +1882,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1841,7 +1882,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.18' class='hiddenRow bg-success'> <tr id='pt18.18' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_tags</div> <div class='testcase'>test_opds_tags</div>
</td> </td>
...@@ -1850,7 +1891,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1850,7 +1891,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.19' class='hiddenRow bg-success'> <tr id='pt18.19' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_opds_top_rated</div> <div class='testcase'>test_opds_top_rated</div>
</td> </td>
...@@ -1859,7 +1900,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1859,7 +1900,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt17.20' class='hiddenRow bg-success'> <tr id='pt18.20' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_recently_added</div> <div class='testcase'>test_recently_added</div>
</td> </td>
...@@ -1877,13 +1918,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1877,13 +1918,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c18', 7)">Detail</a> <a onclick="showClassDetail('c19', 7)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt18.1' class='hiddenRow bg-success'> <tr id='pt19.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_forgot_password</div> <div class='testcase'>test_forgot_password</div>
</td> </td>
...@@ -1892,7 +1933,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1892,7 +1933,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt18.2' class='hiddenRow bg-success'> <tr id='pt19.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_limit_domain</div> <div class='testcase'>test_limit_domain</div>
</td> </td>
...@@ -1901,7 +1942,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1901,7 +1942,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt18.3' class='hiddenRow bg-success'> <tr id='pt19.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_register_no_server</div> <div class='testcase'>test_register_no_server</div>
</td> </td>
...@@ -1910,7 +1951,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1910,7 +1951,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt18.4' class='hiddenRow bg-success'> <tr id='pt19.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_registering_only_email</div> <div class='testcase'>test_registering_only_email</div>
</td> </td>
...@@ -1919,7 +1960,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1919,7 +1960,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt18.5' class='hiddenRow bg-success'> <tr id='pt19.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_registering_user</div> <div class='testcase'>test_registering_user</div>
</td> </td>
...@@ -1928,7 +1969,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1928,7 +1969,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt18.6' class='hiddenRow bg-success'> <tr id='pt19.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_registering_user_fail</div> <div class='testcase'>test_registering_user_fail</div>
</td> </td>
...@@ -1937,7 +1978,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1937,7 +1978,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt18.7' class='hiddenRow bg-success'> <tr id='pt19.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_user_change_password</div> <div class='testcase'>test_user_change_password</div>
</td> </td>
...@@ -1955,13 +1996,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1955,13 +1996,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">1</td> <td class="text-center">1</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c19', 10)">Detail</a> <a onclick="showClassDetail('c20', 10)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt19.1' class='hiddenRow bg-success'> <tr id='pt20.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_add_shelf_from_search</div> <div class='testcase'>test_add_shelf_from_search</div>
</td> </td>
...@@ -1970,7 +2011,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1970,7 +2011,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt19.2' class='hiddenRow bg-success'> <tr id='pt20.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_arrange_shelf</div> <div class='testcase'>test_arrange_shelf</div>
</td> </td>
...@@ -1979,7 +2020,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1979,7 +2020,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt19.3' class='hiddenRow bg-success'> <tr id='pt20.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_delete_book_of_shelf</div> <div class='testcase'>test_delete_book_of_shelf</div>
</td> </td>
...@@ -1988,7 +2029,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1988,7 +2029,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt19.4' class='hiddenRow bg-success'> <tr id='pt20.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_private_shelf</div> <div class='testcase'>test_private_shelf</div>
</td> </td>
...@@ -1997,7 +2038,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -1997,7 +2038,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt19.5' class='hiddenRow bg-success'> <tr id='pt20.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_public_private_shelf</div> <div class='testcase'>test_public_private_shelf</div>
</td> </td>
...@@ -2006,7 +2047,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2006,7 +2047,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt19.6' class='hiddenRow bg-success'> <tr id='pt20.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_public_shelf</div> <div class='testcase'>test_public_shelf</div>
</td> </td>
...@@ -2015,7 +2056,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2015,7 +2056,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt19.7' class='hiddenRow bg-success'> <tr id='pt20.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_rename_shelf</div> <div class='testcase'>test_rename_shelf</div>
</td> </td>
...@@ -2024,7 +2065,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2024,7 +2065,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt19.8' class='hiddenRow bg-success'> <tr id='pt20.8' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_shelf_action_non_shelf_edit_role</div> <div class='testcase'>test_shelf_action_non_shelf_edit_role</div>
</td> </td>
...@@ -2033,19 +2074,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2033,19 +2074,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='st19.9' class='none bg-warning'> <tr id='st20.9' class='none bg-warning'>
<td> <td>
<div class='testcase'>test_shelf_database_change</div> <div class='testcase'>test_shelf_database_change</div>
</td> </td>
<td colspan='6'> <td colspan='6'>
<div class="text-center"> <div class="text-center">
<a class="popup_link text-center" onfocus='blur()' onclick="showTestDetail('div_st19.9')">SKIP</a> <a class="popup_link text-center" onfocus='blur()' onclick="showTestDetail('div_st20.9')">SKIP</a>
</div> </div>
<!--css div popup start--> <!--css div popup start-->
<div id='div_st19.9' class="popup_window test_output" style="display:none;"> <div id='div_st20.9' class="popup_window test_output" style="display:none;">
<div class='close_button pull-right'> <div class='close_button pull-right'>
<button type="button" class="close" aria-label="Close" onfocus='this.blur();' <button type="button" class="close" aria-label="Close" onfocus='this.blur();'
onclick="document.getElementById('div_st19.9').style.display='none'"><span onclick="document.getElementById('div_st20.9').style.display='none'"><span
aria-hidden="true">&times;</span></button> aria-hidden="true">&times;</span></button>
</div> </div>
<div class="text-left pull-left"> <div class="text-left pull-left">
...@@ -2059,7 +2100,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2059,7 +2100,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt19.10' class='hiddenRow bg-success'> <tr id='pt20.10' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_shelf_long_name</div> <div class='testcase'>test_shelf_long_name</div>
</td> </td>
...@@ -2077,13 +2118,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2077,13 +2118,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">1</td> <td class="text-center">1</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c20', 8)">Detail</a> <a onclick="showClassDetail('c21', 8)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt20.1' class='hiddenRow bg-success'> <tr id='pt21.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_update_nightly_errors</div> <div class='testcase'>test_check_update_nightly_errors</div>
</td> </td>
...@@ -2092,7 +2133,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2092,7 +2133,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt20.2' class='hiddenRow bg-success'> <tr id='pt21.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_update_nightly_request_errors</div> <div class='testcase'>test_check_update_nightly_request_errors</div>
</td> </td>
...@@ -2101,7 +2142,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2101,7 +2142,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt20.3' class='hiddenRow bg-success'> <tr id='pt21.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_update_stable_errors</div> <div class='testcase'>test_check_update_stable_errors</div>
</td> </td>
...@@ -2110,7 +2151,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2110,7 +2151,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt20.4' class='hiddenRow bg-success'> <tr id='pt21.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_check_update_stable_versions</div> <div class='testcase'>test_check_update_stable_versions</div>
</td> </td>
...@@ -2119,7 +2160,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2119,7 +2160,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt20.5' class='hiddenRow bg-success'> <tr id='pt21.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_perform_update</div> <div class='testcase'>test_perform_update</div>
</td> </td>
...@@ -2128,7 +2169,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2128,7 +2169,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt20.6' class='hiddenRow bg-success'> <tr id='pt21.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_perform_update_stable_errors</div> <div class='testcase'>test_perform_update_stable_errors</div>
</td> </td>
...@@ -2137,19 +2178,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2137,19 +2178,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='st20.7' class='none bg-warning'> <tr id='st21.7' class='none bg-warning'>
<td> <td>
<div class='testcase'>test_perform_update_timeout</div> <div class='testcase'>test_perform_update_timeout</div>
</td> </td>
<td colspan='6'> <td colspan='6'>
<div class="text-center"> <div class="text-center">
<a class="popup_link text-center" onfocus='blur()' onclick="showTestDetail('div_st20.7')">SKIP</a> <a class="popup_link text-center" onfocus='blur()' onclick="showTestDetail('div_st21.7')">SKIP</a>
</div> </div>
<!--css div popup start--> <!--css div popup start-->
<div id='div_st20.7' class="popup_window test_output" style="display:none;"> <div id='div_st21.7' class="popup_window test_output" style="display:none;">
<div class='close_button pull-right'> <div class='close_button pull-right'>
<button type="button" class="close" aria-label="Close" onfocus='this.blur();' <button type="button" class="close" aria-label="Close" onfocus='this.blur();'
onclick="document.getElementById('div_st20.7').style.display='none'"><span onclick="document.getElementById('div_st21.7').style.display='none'"><span
aria-hidden="true">&times;</span></button> aria-hidden="true">&times;</span></button>
</div> </div>
<div class="text-left pull-left"> <div class="text-left pull-left">
...@@ -2163,7 +2204,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2163,7 +2204,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt20.8' class='hiddenRow bg-success'> <tr id='pt21.8' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_reconnect_database</div> <div class='testcase'>test_reconnect_database</div>
</td> </td>
...@@ -2181,13 +2222,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2181,13 +2222,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c21', 19)">Detail</a> <a onclick="showClassDetail('c22', 19)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt21.1' class='hiddenRow bg-success'> <tr id='pt22.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_allow_column_restriction</div> <div class='testcase'>test_allow_column_restriction</div>
</td> </td>
...@@ -2196,7 +2237,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2196,7 +2237,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.2' class='hiddenRow bg-success'> <tr id='pt22.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_allow_tag_restriction</div> <div class='testcase'>test_allow_tag_restriction</div>
</td> </td>
...@@ -2205,7 +2246,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2205,7 +2246,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.3' class='hiddenRow bg-success'> <tr id='pt22.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_archived_format_template</div> <div class='testcase'>test_archived_format_template</div>
</td> </td>
...@@ -2214,7 +2255,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2214,7 +2255,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.4' class='hiddenRow bg-success'> <tr id='pt22.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_author_user_template</div> <div class='testcase'>test_author_user_template</div>
</td> </td>
...@@ -2223,7 +2264,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2223,7 +2264,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.5' class='hiddenRow bg-success'> <tr id='pt22.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_best_user_template</div> <div class='testcase'>test_best_user_template</div>
</td> </td>
...@@ -2232,7 +2273,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2232,7 +2273,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.6' class='hiddenRow bg-success'> <tr id='pt22.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_category_user_template</div> <div class='testcase'>test_category_user_template</div>
</td> </td>
...@@ -2241,7 +2282,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2241,7 +2282,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.7' class='hiddenRow bg-success'> <tr id='pt22.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_deny_column_restriction</div> <div class='testcase'>test_deny_column_restriction</div>
</td> </td>
...@@ -2250,7 +2291,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2250,7 +2291,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.8' class='hiddenRow bg-success'> <tr id='pt22.8' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_deny_tag_restriction</div> <div class='testcase'>test_deny_tag_restriction</div>
</td> </td>
...@@ -2259,7 +2300,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2259,7 +2300,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.9' class='hiddenRow bg-success'> <tr id='pt22.9' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_detail_random_user_template</div> <div class='testcase'>test_detail_random_user_template</div>
</td> </td>
...@@ -2268,7 +2309,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2268,7 +2309,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.10' class='hiddenRow bg-success'> <tr id='pt22.10' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_format_user_template</div> <div class='testcase'>test_format_user_template</div>
</td> </td>
...@@ -2277,7 +2318,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2277,7 +2318,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.11' class='hiddenRow bg-success'> <tr id='pt22.11' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_hot_user_template</div> <div class='testcase'>test_hot_user_template</div>
</td> </td>
...@@ -2286,7 +2327,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2286,7 +2327,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.12' class='hiddenRow bg-success'> <tr id='pt22.12' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_language_user_template</div> <div class='testcase'>test_language_user_template</div>
</td> </td>
...@@ -2295,7 +2336,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2295,7 +2336,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.13' class='hiddenRow bg-success'> <tr id='pt22.13' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_limit_book_languages</div> <div class='testcase'>test_limit_book_languages</div>
</td> </td>
...@@ -2304,7 +2345,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2304,7 +2345,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.14' class='hiddenRow bg-success'> <tr id='pt22.14' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_publisher_user_template</div> <div class='testcase'>test_publisher_user_template</div>
</td> </td>
...@@ -2313,7 +2354,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2313,7 +2354,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.15' class='hiddenRow bg-success'> <tr id='pt22.15' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_random_user_template</div> <div class='testcase'>test_random_user_template</div>
</td> </td>
...@@ -2322,7 +2363,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2322,7 +2363,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.16' class='hiddenRow bg-success'> <tr id='pt22.16' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_read_user_template</div> <div class='testcase'>test_read_user_template</div>
</td> </td>
...@@ -2331,7 +2372,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2331,7 +2372,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.17' class='hiddenRow bg-success'> <tr id='pt22.17' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_recent_user_template</div> <div class='testcase'>test_recent_user_template</div>
</td> </td>
...@@ -2340,7 +2381,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2340,7 +2381,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.18' class='hiddenRow bg-success'> <tr id='pt22.18' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_series_user_template</div> <div class='testcase'>test_series_user_template</div>
</td> </td>
...@@ -2349,7 +2390,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2349,7 +2390,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt21.19' class='hiddenRow bg-success'> <tr id='pt22.19' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_ui_language_settings</div> <div class='testcase'>test_ui_language_settings</div>
</td> </td>
...@@ -2367,13 +2408,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2367,13 +2408,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center">0</td> <td class="text-center">0</td>
<td class="text-center"> <td class="text-center">
<a onclick="showClassDetail('c22', 30)">Detail</a> <a onclick="showClassDetail('c23', 30)">Detail</a>
</td> </td>
</tr> </tr>
<tr id='pt22.1' class='hiddenRow bg-success'> <tr id='pt23.1' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_about</div> <div class='testcase'>test_about</div>
</td> </td>
...@@ -2382,7 +2423,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2382,7 +2423,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.2' class='hiddenRow bg-success'> <tr id='pt23.2' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_SMTP_Settings</div> <div class='testcase'>test_admin_SMTP_Settings</div>
</td> </td>
...@@ -2391,7 +2432,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2391,7 +2432,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.3' class='hiddenRow bg-success'> <tr id='pt23.3' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_add_user</div> <div class='testcase'>test_admin_add_user</div>
</td> </td>
...@@ -2400,7 +2441,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2400,7 +2441,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.4' class='hiddenRow bg-success'> <tr id='pt23.4' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_password</div> <div class='testcase'>test_admin_change_password</div>
</td> </td>
...@@ -2409,7 +2450,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2409,7 +2450,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.5' class='hiddenRow bg-success'> <tr id='pt23.5' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_archived</div> <div class='testcase'>test_admin_change_visibility_archived</div>
</td> </td>
...@@ -2418,7 +2459,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2418,7 +2459,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.6' class='hiddenRow bg-success'> <tr id='pt23.6' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_authors</div> <div class='testcase'>test_admin_change_visibility_authors</div>
</td> </td>
...@@ -2427,7 +2468,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2427,7 +2468,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.7' class='hiddenRow bg-success'> <tr id='pt23.7' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_category</div> <div class='testcase'>test_admin_change_visibility_category</div>
</td> </td>
...@@ -2436,7 +2477,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2436,7 +2477,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.8' class='hiddenRow bg-success'> <tr id='pt23.8' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_file_formats</div> <div class='testcase'>test_admin_change_visibility_file_formats</div>
</td> </td>
...@@ -2445,7 +2486,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2445,7 +2486,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.9' class='hiddenRow bg-success'> <tr id='pt23.9' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_hot</div> <div class='testcase'>test_admin_change_visibility_hot</div>
</td> </td>
...@@ -2454,7 +2495,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2454,7 +2495,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.10' class='hiddenRow bg-success'> <tr id='pt23.10' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_language</div> <div class='testcase'>test_admin_change_visibility_language</div>
</td> </td>
...@@ -2463,7 +2504,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2463,7 +2504,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.11' class='hiddenRow bg-success'> <tr id='pt23.11' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_publisher</div> <div class='testcase'>test_admin_change_visibility_publisher</div>
</td> </td>
...@@ -2472,7 +2513,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2472,7 +2513,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.12' class='hiddenRow bg-success'> <tr id='pt23.12' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_random</div> <div class='testcase'>test_admin_change_visibility_random</div>
</td> </td>
...@@ -2481,7 +2522,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2481,7 +2522,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.13' class='hiddenRow bg-success'> <tr id='pt23.13' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_rated</div> <div class='testcase'>test_admin_change_visibility_rated</div>
</td> </td>
...@@ -2490,7 +2531,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2490,7 +2531,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.14' class='hiddenRow bg-success'> <tr id='pt23.14' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_rating</div> <div class='testcase'>test_admin_change_visibility_rating</div>
</td> </td>
...@@ -2499,7 +2540,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2499,7 +2540,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.15' class='hiddenRow bg-success'> <tr id='pt23.15' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_read</div> <div class='testcase'>test_admin_change_visibility_read</div>
</td> </td>
...@@ -2508,7 +2549,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2508,7 +2549,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.16' class='hiddenRow bg-success'> <tr id='pt23.16' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_admin_change_visibility_series</div> <div class='testcase'>test_admin_change_visibility_series</div>
</td> </td>
...@@ -2517,7 +2558,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2517,7 +2558,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.17' class='hiddenRow bg-success'> <tr id='pt23.17' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_allow_columns</div> <div class='testcase'>test_allow_columns</div>
</td> </td>
...@@ -2526,7 +2567,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2526,7 +2567,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.18' class='hiddenRow bg-success'> <tr id='pt23.18' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_allow_tags</div> <div class='testcase'>test_allow_tags</div>
</td> </td>
...@@ -2535,7 +2576,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2535,7 +2576,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.19' class='hiddenRow bg-success'> <tr id='pt23.19' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_archive_books</div> <div class='testcase'>test_archive_books</div>
</td> </td>
...@@ -2544,7 +2585,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2544,7 +2585,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.20' class='hiddenRow bg-success'> <tr id='pt23.20' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_authors_max_settings</div> <div class='testcase'>test_authors_max_settings</div>
</td> </td>
...@@ -2553,7 +2594,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2553,7 +2594,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.21' class='hiddenRow bg-success'> <tr id='pt23.21' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_checked_logged_in</div> <div class='testcase'>test_checked_logged_in</div>
</td> </td>
...@@ -2562,7 +2603,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2562,7 +2603,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.22' class='hiddenRow bg-success'> <tr id='pt23.22' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_hide_custom_column</div> <div class='testcase'>test_hide_custom_column</div>
</td> </td>
...@@ -2571,7 +2612,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2571,7 +2612,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.23' class='hiddenRow bg-success'> <tr id='pt23.23' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_link_column_to_read_status</div> <div class='testcase'>test_link_column_to_read_status</div>
</td> </td>
...@@ -2580,7 +2621,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2580,7 +2621,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.24' class='hiddenRow bg-success'> <tr id='pt23.24' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_random_books_available</div> <div class='testcase'>test_random_books_available</div>
</td> </td>
...@@ -2589,7 +2630,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2589,7 +2630,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.25' class='hiddenRow bg-success'> <tr id='pt23.25' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_restrict_columns</div> <div class='testcase'>test_restrict_columns</div>
</td> </td>
...@@ -2598,7 +2639,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2598,7 +2639,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.26' class='hiddenRow bg-success'> <tr id='pt23.26' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_restrict_tags</div> <div class='testcase'>test_restrict_tags</div>
</td> </td>
...@@ -2607,7 +2648,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2607,7 +2648,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.27' class='hiddenRow bg-success'> <tr id='pt23.27' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_search_functions</div> <div class='testcase'>test_search_functions</div>
</td> </td>
...@@ -2616,7 +2657,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2616,7 +2657,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.28' class='hiddenRow bg-success'> <tr id='pt23.28' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_search_string</div> <div class='testcase'>test_search_string</div>
</td> </td>
...@@ -2625,7 +2666,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2625,7 +2666,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.29' class='hiddenRow bg-success'> <tr id='pt23.29' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_user_email_available</div> <div class='testcase'>test_user_email_available</div>
</td> </td>
...@@ -2634,7 +2675,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2634,7 +2675,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='pt22.30' class='hiddenRow bg-success'> <tr id='pt23.30' class='hiddenRow bg-success'>
<td> <td>
<div class='testcase'>test_user_visibility_sidebar</div> <div class='testcase'>test_user_visibility_sidebar</div>
</td> </td>
...@@ -2645,10 +2686,10 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2645,10 +2686,10 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr id='total_row' class="text-center bg-grey"> <tr id='total_row' class="text-center bg-grey">
<td>Total</td> <td>Total</td>
<td>228</td> <td>223</td>
<td>219</td> <td>212</td>
<td>3</td> <td>3</td>
<td>0</td> <td>2</td>
<td>6</td> <td>6</td>
<td>&nbsp;</td> <td>&nbsp;</td>
</tr> </tr>
...@@ -2767,7 +2808,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2767,7 +2808,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr> <tr>
<th>SQLAlchemy</th> <th>SQLAlchemy</th>
<td>1.3.18</td> <td>1.3.19</td>
<td>Basic</td> <td>Basic</td>
</tr> </tr>
...@@ -2838,15 +2879,39 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2838,15 +2879,39 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
</tr> </tr>
<tr> <tr>
<th>goodreads</th> <th>google-api-python-client</th>
<td>0.3.2</td> <td>1.10.0</td>
<td>TestGoodreads</td> <td>test_edit_books_gdrive</td>
</tr> </tr>
<tr> <tr>
<th>jsonschema</th> <th>httplib2</th>
<td>3.2.0</td> <td>0.18.1</td>
<td>TestKoboSync</td> <td>test_edit_books_gdrive</td>
</tr>
<tr>
<th>oauth2client</th>
<td>4.1.3</td>
<td>test_edit_books_gdrive</td>
</tr>
<tr>
<th>PyDrive</th>
<td>1.3.1</td>
<td>test_edit_books_gdrive</td>
</tr>
<tr>
<th>PyYAML</th>
<td>5.3.1</td>
<td>test_edit_books_gdrive</td>
</tr>
<tr>
<th>goodreads</th>
<td>0.3.2</td>
<td>TestGoodreads</td>
</tr> </tr>
<tr> <tr>
...@@ -2887,7 +2952,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye ...@@ -2887,7 +2952,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
</div> </div>
<script> <script>
drawCircle(219, 3, 0, 6); drawCircle(212, 3, 2, 6);
</script> </script>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment