Bug 52296 - [Qt]Add local storage settings to QtTestBrowser option menu
Summary: [Qt]Add local storage settings to QtTestBrowser option menu
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P5 Enhancement
Assignee: Nobody
URL:
Keywords: EasyFix, Qt, QtTriaged
Depends on: 53844
Blocks:
  Show dependency treegraph
 
Reported: 2011-01-12 07:00 PST by suchi
Modified: 2011-03-16 17:20 PDT (History)
9 users (show)

See Also:


Attachments
Local Storage settings can be enable/disable from "Develop" menu (7.64 KB, patch)
2011-01-14 10:57 PST, suchi
no flags Details | Formatted Diff | Diff
updated patch (7.64 KB, patch)
2011-01-14 11:07 PST, suchi
hausmann: review-
hausmann: commit-queue-
Details | Formatted Diff | Diff
Modified the patch to take care of compiler issue (7.77 KB, patch)
2011-01-17 11:32 PST, suchi
kling: review-
Details | Formatted Diff | Diff
Updated the patch according to suggested change (7.67 KB, patch)
2011-01-22 08:47 PST, suchi
kling: review-
Details | Formatted Diff | Diff
Modified code with QInputDialog::getInt() function call (6.84 KB, patch)
2011-02-03 09:03 PST, suchi
kling: review-
Details | Formatted Diff | Diff
Took care of the indentation issue and also modified the maxsize to unsigned int (6.92 KB, patch)
2011-02-03 13:06 PST, suchi
no flags Details | Formatted Diff | Diff
Conflict removed from launcherwindow.h (6.89 KB, patch)
2011-02-04 12:23 PST, suchi
no flags Details | Formatted Diff | Diff
QT_NO_INPUTDIALOG guard is in place (6.98 KB, patch)
2011-02-08 04:40 PST, suchi
kling: review+
kling: commit-queue-
Details | Formatted Diff | Diff
local variable needs to be inside the QT_NO_INPUTDIALOG guard (7.00 KB, patch)
2011-02-08 08:01 PST, suchi
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description suchi 2011-01-12 07:00:15 PST
Following local storage settings can be enable/disable from option menu (under Developer menu)for QtTestBrowser: 

LocalStorage

OfflineStorageDatabase

OfflineWebApplicationCache

setOfflineStorageDefaultQuota(maxsize): provides an input box to enter the maxsize for default quota.
Comment 1 suchi 2011-01-14 10:57:23 PST
Created attachment 78963 [details]
Local Storage settings can be enable/disable from "Develop" menu

Following local storage settings can be enable/disable from option menu (under "Develop" menu)for QtTestBrowser, also if these settings value are passed from command line the values(enable/disable) will reflect in option menu  : 

LocalStorage

OfflineStorageDatabase

OfflineWebApplicationCache

setOfflineStorageDefaultQuota(maxsize): provides an input box/dialog to enter the maxsize for default quota, if the value is passed from command line we won't show the dialog to enter the maxsize.
Comment 2 WebKit Review Bot 2011-01-14 10:59:29 PST
Attachment 78963 [details] did not pass style-queue:

Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Tools/ChangeLog', u'Tools/QtTestBrowser/la..." exit_code: 1

Tools/QtTestBrowser/launcherwindow.cpp:805:  Should have a space between // and comment  [whitespace/comments] [4]
Tools/QtTestBrowser/launcherwindow.cpp:806:  Missing space before ( in if(  [whitespace/parens] [5]
Total errors found: 2 in 4 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 3 suchi 2011-01-14 11:07:27 PST
Created attachment 78965 [details]
updated patch

Took care of the style( space) issue
Comment 4 Early Warning System Bot 2011-01-14 11:28:57 PST
Attachment 78963 [details] did not build on qt:
Build output: http://queues.webkit.org/results/7501046
Comment 5 Early Warning System Bot 2011-01-14 11:41:28 PST
Attachment 78965 [details] did not build on qt:
Build output: http://queues.webkit.org/results/7544057
Comment 6 Simon Hausmann 2011-01-16 23:56:37 PST
Comment on attachment 78963 [details]
Local Storage settings can be enable/disable from "Develop" menu

It appears that this attachment is obsoleted by the second attached patch.
Comment 7 Simon Hausmann 2011-01-16 23:57:20 PST
Comment on attachment 78965 [details]
updated patch

It appears that this attachment does not compile: 


cc1plus: warnings being treated as errors
../../../../Tools/QtTestBrowser/launcherwindow.cpp: In member function ‘void LauncherWindow::createChrome()’:
../../../../Tools/QtTestBrowser/launcherwindow.cpp:281: error: unused variable ‘offlineStorageDefaultQuotaAction’
Comment 8 suchi 2011-01-17 11:32:40 PST
Created attachment 79195 [details]
Modified the patch to take care of compiler issue

Compiler issue has been taken care of
Comment 9 Andreas Kling 2011-01-17 13:22:14 PST
Comment on attachment 79195 [details]
Modified the patch to take care of compiler issue

View in context: https://bugs.webkit.org/attachment.cgi?id=79195&action=review

> Tools/QtTestBrowser/launcherwindow.cpp:277
> +    QAction* toggleOfflineWebApplicationCache = toolsMenu->addAction("Enable Offline WebApplication Cache", this, SLOT(toggleOfflineWebApplicationCache(bool)));

"WebApplication" -> "Web Application"

> Tools/QtTestBrowser/launcherwindow.cpp:281
> +    QAction* offlineStorageDefaultQuotaAction = toolsMenu->addAction("Set Offline Storage Default Quota Maxsize", this, SLOT(setOfflineStorageDefaultQuota())); 

"Maxsize" -> "Max Size"

> Tools/QtTestBrowser/launcherwindow.cpp:283
> +    offlineStorageDefaultQuotaAction->setChecked((m_windowOptions.offlineStorageDefaultQuotaSize) ? true : false);

The "? true : false" is unnecessary.

> Tools/QtTestBrowser/launcherwindow.cpp:286
> +    

Whitespace.

> Tools/QtTestBrowser/launcherwindow.cpp:787
> +void LauncherWindow::toggleLocalStorage(bool toggle)

"toggle" is called "enable" in the declaration (and in the similar function above.) We should be consistent.

> Tools/QtTestBrowser/launcherwindow.cpp:793
> +void LauncherWindow::toggleOfflineStorageDatabase(bool toggle)

Ditto.

> Tools/QtTestBrowser/launcherwindow.cpp:799
> +void LauncherWindow::toggleOfflineWebApplicationCache(bool toggle)

Ditto.

> Tools/QtTestBrowser/launcherwindow.cpp:807
> +    // for command line execution, quota size is taken from command line and set it below    

Comments should start with a capital and end with a period.

> Tools/QtTestBrowser/launcherwindow.cpp:809
> +       page()->settings()->setOfflineStorageDefaultQuota(m_windowOptions.offlineStorageDefaultQuotaSize);

Coding style, indentation should be 4 spaces, not 3 (this block) or 2 (the block below.)

> Tools/QtTestBrowser/launcherwindow.cpp:811
> +      QDialog* dialog = new QDialog(this);

This variable should be on the stack.

> Tools/QtTestBrowser/launcherwindow.cpp:814
> +      dialog->setWindowTitle("Offline Storage Default Quota Maxsize");

Strange title, let's do "Maxsize" -> "Max Size" at least.

> Tools/QtTestBrowser/launcherwindow.h:121
> +    bool useLocalStorageEnabled;
> +    bool useOfflineStorageDatabaseEnabled;
> +    bool useOfflineWebApplicationCacheEnabled;
> +    quint64 offlineStorageDefaultQuotaSize;    

These variables should be initialized (in the WindowOptions constructor above.)
Also, the "Enabled" suffix on the first 3 is redundant.

> Tools/QtTestBrowser/launcherwindow.h:185
> -
> +    

Whitespace.

> Tools/QtTestBrowser/main.cpp:168
> +         

Whitespace.
Comment 10 suchi 2011-01-22 08:47:22 PST
Created attachment 79846 [details]
Updated the patch according to suggested change

Updated patch with suggested changes.
Comment 11 Andreas Kling 2011-01-27 02:19:00 PST
Comment on attachment 79846 [details]
Updated the patch according to suggested change

View in context: https://bugs.webkit.org/attachment.cgi?id=79846&action=review

> Tools/QtTestBrowser/launcherwindow.cpp:919
> +        QDialog* dialog = new QDialog(this);

This whole section could be replaced with a call to QInputDialog::getInt(), let's do that instead.

> Tools/QtTestBrowser/main.cpp:167
> +        windowOptions.useLocalStorage = true;        

Unnecessary whitespace.

> Tools/QtTestBrowser/main.cpp:178
> +        windowOptions.offlineStorageDefaultQuotaSize = maxSize;        

Ditto.
Comment 12 suchi 2011-02-03 09:03:36 PST
Created attachment 81067 [details]
Modified code with QInputDialog::getInt() function call 

Instead of using QDialog box using QInputDialog::getInt() to get the quota size entered by user.
Comment 13 Andreas Kling 2011-02-03 09:12:21 PST
Comment on attachment 81067 [details]
Modified code with QInputDialog::getInt() function call 

View in context: https://bugs.webkit.org/attachment.cgi?id=81067&action=review

Much better, some small things remaining:

> Tools/QtTestBrowser/launcherwindow.cpp:923
> +            page()->settings()->setOfflineStorageDefaultQuota(quotaSize);       

What if 'quotaSize' is negative?

> Tools/QtTestBrowser/launcherwindow.cpp:924
> +        }

This } is wrongly indented.

> Tools/QtTestBrowser/main.cpp:177
>          int maxSize = takeOptionValue(&args, setOfflineStorageDefaultQuotaIndex).toInt();

'maxSize' should be of an unsigned type, to match WindowOptions::offlineStorageDefaultQuotaSize.
Comment 14 suchi 2011-02-03 13:06:47 PST
Created attachment 81103 [details]
Took care of the indentation issue and also modified the maxsize to unsigned int 

Thanks for the review. To answer your question about "quotaSize negative", as I have made the min value to be zero, user can not enter a negative value for quotaSize. Please let me know if you have any other question about this value.
Comment 15 Andreas Kling 2011-02-03 14:29:45 PST
Comment on attachment 81103 [details]
Took care of the indentation issue and also modified the maxsize to unsigned int 

Beautiful! r=me
Comment 16 WebKit Commit Bot 2011-02-03 21:21:17 PST
Comment on attachment 81103 [details]
Took care of the indentation issue and also modified the maxsize to unsigned int 

Rejecting attachment 81103 [details] from commit-queue.

Failed to run "['./Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '--bot-id=cr-jail-8', 'apply-..." exit_code: 2

Last 500 characters of output:
 Tools/QtTestBrowser/launcherwindow.cpp
Hunk #1 succeeded at 264 (offset 5 lines).
Hunk #2 succeeded at 920 (offset 28 lines).
patching file Tools/QtTestBrowser/launcherwindow.h
patch: **** malformed patch at line 38:  

patching file Tools/QtTestBrowser/main.cpp
Hunk #1 FAILED at 164.
1 out of 1 hunk FAILED -- saving rejects to file Tools/QtTestBrowser/main.cpp.rej

Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', u'--reviewer', u'Andreas Kling', u'--fo..." exit_code: 1

Full output: http://queues.webkit.org/results/7699045
Comment 17 suchi 2011-02-04 12:23:07 PST
Created attachment 81262 [details]
Conflict removed from launcherwindow.h

I  had forgot to run svn update before I created the patch as a result there was conflict on launcherwindow.h.
Comment 18 WebKit Commit Bot 2011-02-04 19:12:02 PST
Comment on attachment 81262 [details]
Conflict removed from launcherwindow.h

Clearing flags on attachment: 81262

Committed r77725: <http://trac.webkit.org/changeset/77725>
Comment 19 WebKit Review Bot 2011-02-04 19:40:05 PST
http://trac.webkit.org/changeset/77725 might have broken Qt Linux Release minimal
Comment 20 Csaba Osztrogonác 2011-02-04 23:44:14 PST
(In reply to comment #19)
> http://trac.webkit.org/changeset/77725 might have broken Qt Linux Release minimal

error message:
../../../Tools/QtTestBrowser/launcherwindow.cpp: In member function ‘void LauncherWindow::setOfflineStorageDefaultQuota()’:
../../../Tools/QtTestBrowser/launcherwindow.cpp:949: error: ‘QInputDialog’ has not been declared

It seems you missed to add a QT_NO_INPUTDIALOG guard.
Comment 21 Csaba Osztrogonác 2011-02-05 00:04:13 PST
It was rolled out by http://trac.webkit.org/changeset/77737 to make buildbot happy for this weekend.
Comment 22 suchi 2011-02-08 04:40:14 PST
Created attachment 81620 [details]
QT_NO_INPUTDIALOG guard is in place

Modified code with QT_NO_INPUTDIALOG guard to resolve Qt Linux Release minimal build issue.
Comment 23 Andreas Kling 2011-02-08 07:03:08 PST
Comment on attachment 81620 [details]
QT_NO_INPUTDIALOG guard is in place

View in context: https://bugs.webkit.org/attachment.cgi?id=81620&action=review

r=me, one thing:

> Tools/QtTestBrowser/launcherwindow.cpp:947
> +        bool ok;

Should be inside the QT_NO_INPUTDIALOG guard.
Comment 24 suchi 2011-02-08 08:01:55 PST
Created attachment 81636 [details]
local variable needs to be inside the QT_NO_INPUTDIALOG guard

Silly mistake, forgot to put local boolean variable inside the QT_NO_INPUTDIALOG guard
Comment 25 Laszlo Gombos 2011-02-08 08:31:12 PST
Comment on attachment 81636 [details]
local variable needs to be inside the QT_NO_INPUTDIALOG guard

r=me.
Comment 26 WebKit Commit Bot 2011-02-08 09:20:38 PST
The commit-queue encountered the following flaky tests while processing attachment 81636 [details]:

http/tests/websocket/tests/handshake-challenge-randomness.html bug 53738 (author: abarth@webkit.org)
The commit-queue is continuing to process your patch.
Comment 27 WebKit Commit Bot 2011-02-08 09:21:55 PST
Comment on attachment 81636 [details]
local variable needs to be inside the QT_NO_INPUTDIALOG guard

Clearing flags on attachment: 81636

Committed r77947: <http://trac.webkit.org/changeset/77947>
Comment 28 Laszlo Gombos 2011-03-16 17:20:50 PDT
Closing as it has been landed.