Bug 395191 - WebViewTest::loadSignalsChangePageTest() Compared values are not the same (qt-5.11.0)
Summary: WebViewTest::loadSignalsChangePageTest() Compared values are not the same (qt...
Status: RESOLVED FIXED
Alias: None
Product: Falkon
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: David Rosca
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-06-09 22:37 UTC by Ken Moffat
Modified: 2020-11-09 22:10 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Patch which works on both qt-5.10 and qt-5.11 (554 bytes, text/plain)
2018-06-10 20:11 UTC, Ken Moffat
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ken Moffat 2018-06-09 22:37:13 UTC
********* Start testing of WebViewTest *********
Config: Using QtTest library 5.11.0, Qt 5.11.0 (x86_64-little_endian-lp64 shared (dynamic) release build; by GCC 8.1.0)
PASS   : WebViewTest::initTestCase()
FAIL!  : WebViewTest::loadSignalsChangePageTest() Compared values are not the same
   Actual   (((loadFinishedSpy.count()))): 2
   Expected (loadFinishedEmitCount)      : 1
   Loc: [/tmp/falkon-3.0.1/autotests/webviewtest.cpp(87)]
PASS   : WebViewTest::cleanupTestCase()
Totals: 2 passed, 1 failed, 0 skipped, 0 blacklisted, 15276ms
********* Finished testing of WebViewTest *********
<end of output>
Test time =  15.70 sec
----------------------------------------------------------
Test Failed.
"falkon-webviewtest" end time: Jun 09 20:42 BST
"falkon-webviewtest" time elapsed: 00:00:15

Further comments:

If falkon has not yet been installed on a qt-5.11.0 system, 6 out of 10 of the tests fail. But after installation on at qt-5.11.0 system only this test fails.

On a slightly older system, with qt-5.10 and falkon-3.0.0 already installed, all 10 tests passed.

Diffing falkon-3.0.0 to 3.0.1 produced the following suspicious change (the change to 5.11 is not suspicious, the reversal of 2 : 1 to 1 : 2 is):
index a21e693..40b0a57 100644
--- a/falkon-3.0.0/autotests/webviewtest.cpp
+++ b/falkon-3.0.1/autotests/webviewtest.cpp
@@ -82,7 +82,7 @@ void WebViewTest::loadSignalsChangePageTest()
     view.setPage(page2);
 
     // WebPage: Workaround for broken load started/finished signals in QtWebEngine 5.10
-    const int loadFinishedEmitCount = qstrncmp(qVersion(), "5.10.", 5) == 0 ? 2 : 1;
+    const int loadFinishedEmitCount = qstrncmp(qVersion(), "5.11.", 5) == 0 ? 1 : 2;
 
     QTRY_COMPARE(loadFinishedSpy.count(), loadFinishedEmitCount);
     QCOMPARE(loadStartedSpy.count(), 0);


Editing that line to

    const int loadFinishedEmitCount = qstrncmp(qVersion(), "5.11.", 5) == 0 ? 2 : 1;

all the tests pass on the 5.11.0 system.
Comment 1 Ken Moffat 2018-06-10 20:11:09 UTC
Created attachment 113205 [details]
Patch which works on both qt-5.10 and qt-5.11

Patch which works on both qt-5.10 and qt-5.11
Comment 2 Ken Moffat 2018-06-10 20:13:27 UTC
Hmm, the bug system lost the comment I put in before attaching a patch.

What I put in originally works on qt-5.11 but not on 5.10. I think the correct fix is to test for 5.10, not 5.11, with an operand of greater than or equal.
Comment 3 Justin Zobel 2020-10-25 04:10:35 UTC
Ken can you please re-test with current Qt and Falkon and confirm if this is still an issue, if not we can close this bug report, thanks.
Comment 4 Bug Janitor Service 2020-11-09 04:33:51 UTC
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!
Comment 5 Ken Moffat 2020-11-09 18:09:28 UTC
I think this was fixed by December 2018, my notes show that I stopped sedding that test when I was using qt-5.12.0.(In reply to Justin Zobel from comment #3)
> Ken can you please re-test with current Qt and Falkon and confirm if this is
> still an issue, if not we can close this bug report, thanks.

I think this was fixed by December 2018, my notes show that I stopped sedding that test when I was using qt-5.12.0.

With 3.1.0 plus fixes to include headers which moved in qt, all 11 tests pass.

I could not see a link at github to get a current snapshot of falkon.
Comment 6 Justin Zobel 2020-11-09 21:30:00 UTC
Thanks for the update Ken.

Are you happy then for me to resolve this bug report?
Comment 7 Ken Moffat 2020-11-09 21:55:21 UTC
(In reply to Justin Zobel from comment #6)
> Thanks for the update Ken.
> 
> Are you happy then for me to resolve this bug report?

Sure.