Closed Bug 842058 Opened 12 years ago Closed 12 years ago

Clean up function () code blocks in the repo

Categories

(Mozilla QA Graveyard :: Mozmill Tests, defect)

defect
Not set
trivial

Tracking

(firefox22 fixed)

RESOLVED FIXED
Tracking Status
firefox22 --- fixed

People

(Reporter: jfrench, Assigned: jfrench)

References

()

Details

Attachments

(1 file, 1 obsolete file)

Begat from fixing bug 839705, I came upon functions in at least one test with closing braces not aligned to the block, similar to this

var foo = function () {
  }

..versus what the Mozmill Style Guide generally illustrates through its example code blocks.

var foo = function () {
}

In files like
tests\remote\testAddons\testSearchAddons.js

That seemed unusual to me. If you consider it a bug feel free to assign me and I will have a go at fixing it or any other tests which may have the same issue. I may be able to devise a clever way of pattern matching for them, or I may have to simply fix this one obvious test.
Looks like an oversight. So yeah, we might want to get this fixed but has low priority.
Assignee: nobody → tojonmz
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Priority: P5 → --
There were enough other functions() curly braces to tidy up, I've revised the title of the bug to be generic. As the Style Guide says, "be prepared to defend your reasons" so here are reasons for the proposed adjustments, which primarily consolidate the opening brace of the function, on to the same line as the function().

1) It reduces the number of lines in each file
2) Less likely to miss the opening brace on the same line when making edits
3) It makes these consistent in style with the other 97% of the repo
4) It makes these consistent within some individual tests, that use both styles
5) It is consistent with the Style 'Guide' examples
https://developer.mozilla.org/en-US/docs/Mozmill_Tests/Mozmill_Style_Guide#Naming

I'll attach a patch for default shortly if you wish to use it.
Summary: Clean up code blocks in testSearchAddons, others → Clean up function () code blocks in the repo
Patch "clean up function code blocks (default)" for the default branch. Thirty files modified, which include some component files in lib.

Tested with Default Nightly 22.0a1 20130220031126. Tests pass where expected.

If you don't want the patch or to make these changes, no worries it was enjoyable to do.
Attachment #716276 - Flags: review?(hskupin)
Comment on attachment 716276 [details] [diff] [review]
clean up function code blocks (default)

Review of attachment 716276 [details] [diff] [review]:
-----------------------------------------------------------------

A long overdue change. Thanks a lot for doing that! There are two nits I would like to see fixed before the check-in. r=me with those changes addressed. When you upload the new patch you can carry the r+ forward.

::: lib/software-update.js
@@ +59,5 @@
>            cancel: '{"dlgtype":"cancel"}',
>            finish: '{"dlgtype":"finish"}',
>            extra1: '{"dlgtype":"extra1"}',
>            extra2: '{"dlgtype":"extra2"}'
> +  }

Not sure why this got a 8 character indentation. Can you please also change that to our style guide which is 2 blanks?

::: tests/functional/testPrivateBrowsing/testAboutPrivateBrowsing.js
@@ +18,5 @@
>    pbWindow = new privateBrowsing.PrivateBrowsingWindow();
>  
>    prefs.preferences.setPref(PREF_PRIVATE_BROWSING_SUPPORT, LOCAL_TEST_PAGE);
>  }
> +

nit: trailing white-space issue
Attachment #716276 - Flags: review?(hskupin) → review+
Sure, no problems. I have corrected the first one for a revised patch (I wasn't sure how aggressive to be with the code changes). As for the second one, that is fascinating, that was not in my original pull, someone must have introduced that to the file very recently.
Ok, to clarify testAboutPrivateBrowsing.js, I'm thinking you may have an old pull in default or something?(perhaps). The current version of the file in default branch - actually has no blank line between the setupModule and the teardownModule and my change corrects that by placing a blank line between them, so it is the same as other tests. 

I will be uploading a patch momentarily. In the patch, one file has since been corrected by someone else; testInstallation\testBreakpadInstalled, so this new patch omits that file.
clean up function code blocks (default)

Patch "clean up function code blocks (default)" for the default branch. Twenty nine modified, which include some component files in lib. Carrying r+ review flag forward as requested.

This supersedes the originally submitted patch for default.
Attachment #716276 - Attachment is obsolete: true
Attachment #717138 - Flags: review+
Comment on attachment 717138 [details] [diff] [review]
clean up function code blocks (default)

Review of attachment 717138 [details] [diff] [review]:
-----------------------------------------------------------------

Looks fine! Landed as:

http://hg.mozilla.org/qa/mozmill-tests/rev/f1f141b9ff87 (default)

Not sure if we should spend the time on fixing that on the other branches. Looks very minor to me. Better to focus on other important bugs on default. Jonathan, if you want to backport feel free. If not we can close the bug as fixed.
Attachment #717138 - Flags: checkin+
That's fine so long as nobody ever "forward ports" files that would stomp on the fixes by porting an aurora/beta/release/esr17 file on to default? 

Does, or can that ever happen direction-wise? I don't mind doing the back port next week (after back porting bug 790597 first). Whatever you guys wish is fine though.
This will most likely never happen. We always backport, except something has to land on an older branch first for verification.

Bug 790597 is not about style changes and is worth backporting. But as discussed with Dave earlier this week, we might want to skip backports for styles from now on. There are more important other bugs to fix.

Thanks for working on that patch Jonathan!
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Great, ok that is fine then. On to 790597.
Product: Mozilla QA → Mozilla QA Graveyard
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: