Closed Bug 901085 Opened 11 years ago Closed 11 years ago

Test for UserAgentOverrides.jsm (bug 782453)

Categories

(Core :: Networking: HTTP, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla26

People

(Reporter: jchen, Assigned: jchen)

References

Details

Attachments

(1 file, 4 obsolete files)

As part of the work for bug 897221, I'm writing an automated test for UserAgentOverrides.jsm.
Attached patch Add test for UserAgentOverrides.jsm (v1) (obsolete) (deleted) — Splinter Review
This patch uses an SJS file to return the user agent string to the test. The test then compares the user agent strings before and after setting override prefs Dão, do you think you can review this? Or do I need a networking peer?
Attachment #785196 - Flags: review?(dao)
This pref is needed to enable this test on Android, but otherwise has no effect on Fennec
Attachment #785200 - Flags: review?(blassey.bugs)
Attachment #785200 - Flags: review?(blassey.bugs) → review+
Comment on attachment 785196 [details] [diff] [review] Add test for UserAgentOverrides.jsm (v1) >+const PREF_OVERRIDES_ENABLED = "general.useragent.enable_overrides"; Sigh. This pref was added in bug 835584 and it should only affect the preloading behavior. It's poorly named, we should rename it, and we should not read it in tests. Thanks for starting this, it's good to finally have tests for this.
Attachment #785196 - Flags: review?(dao) → review-
Attached patch Add test for UserAgentOverrides.jsm (v2) (obsolete) (deleted) — Splinter Review
(In reply to Dão Gottwald [:dao] from comment #3) > Comment on attachment 785196 [details] [diff] [review] > Add test for UserAgentOverrides.jsm (v1) > > >+const PREF_OVERRIDES_ENABLED = "general.useragent.enable_overrides"; > > Sigh. This pref was added in bug 835584 and it should only affect the > preloading behavior. It's poorly named, we should rename it, and we should > not read it in tests. > > Thanks for starting this, it's good to finally have tests for this. I didn't realize I could load UserAgentOverrides directly in the test. That's why I checked for that pref. Now I changed the test to load the module directly and not check the pref. The test should now work on all platforms (except the https test on Android because https is not supported in Android mochitests). I have a try run here, https://tbpl.mozilla.org/?tree=Try&rev=2be5fba26eed I think the test is pretty comprehensive. It tests for header UA, navigator.userAgent, subdomain support, UA regexp replacements, and enabled pref.
Attachment #786125 - Flags: review?(dao)
Attachment #785196 - Attachment is obsolete: true
Attached patch Add test for UserAgentOverrides.jsm (v3) (obsolete) (deleted) — Splinter Review
Final revision of the test
Attachment #785200 - Attachment is obsolete: true
Attachment #786125 - Attachment is obsolete: true
Attachment #786125 - Flags: review?(dao)
Attachment #788322 - Flags: review?(dao)
Blocks: 897221
Comment on attachment 788322 [details] [diff] [review] Add test for UserAgentOverrides.jsm (v3) >+// mochitests on Android appear to have trouble with https >+// but when it eventually works, we should re-enable the test >+var skipHttps = /android/i.test(DEFAULT_UA); Is there a bug filed on this? >+skipHttps && SimpleTest.doesThrow( >+ function () getUA('https://example.com'), 'Re-enable https test'); Convert "skipHttps &&" to an if-statement. >+// test that UA is not overridden when the 'site_specific_overrides' pref is off >+function testInactive(callback) { >+ return function () { >+ SpecialPowers.pushPrefEnv({ >+ set: [ >+ [PREF_OVERRIDES_ENABLED, false], >+ [PREF_OVERRIDES_BRANCH + location.hostname, UA_WHOLE_OVERRIDE] >+ ] >+ }, function () { >+ isnot(navigator.userAgent, UA_WHOLE_OVERRIDE, >+ 'Failed to disable navigator UA override'); >+ isnot(getUA(location.origin), UA_WHOLE_OVERRIDE, >+ 'Failed to disable header UA override'); >+ SpecialPowers.pushPrefEnv({ >+ clear: [ >+ [PREF_OVERRIDES_ENABLED], >+ [PREF_OVERRIDES_BRANCH + location.hostname] >+ ] >+ }, callback); >+ }); >+ }; >+} >+ >+function testOverrides(callback) { >+ return function () { >+ SpecialPowers.pushPrefEnv({ >+ set: [[PREF_OVERRIDES_ENABLED, true]] >+ }, function nextTest() { >+ testUA(tests.shift(), function () tests.length ? nextTest() : callback()); >+ }); >+ }; >+} Let testOverrides and testInactive run their code directly instead of returning a function and change the following: >+testOverrides( >+ testInactive( >+ SimpleTest.finish >+ ) >+)(); to this: testOverrides(function () { testInactive(SimpleTest.finish); }); >+ let params = {}; >+ request.queryString.split('&').forEach(function (val) { >+ let sep = (val.indexOf('=') + 1) || undefined; >+ params[val.slice(0, sep - 1)] = decodeURIComponent(val.slice(sep)); >+ }); >+ >+ switch (params.response) { >+ case 'ua': >+ response.write(request.getHeader('User-Agent')); >+ break; >+ case 'echo': >+ response.write(params.value); >+ break; >+ } The echo case appears to be unused. Can you drop all of the code dealing "params"? Please use 2-space-indentation as per <https://developer.mozilla.org/en-US/docs/Developer_Guide/Coding_Style>.
Attachment #788322 - Flags: review?(dao) → review+
(In reply to Dão Gottwald [:dao] from comment #6) > Comment on attachment 788322 [details] [diff] [review] > Add test for UserAgentOverrides.jsm (v3) > > >+// mochitests on Android appear to have trouble with https > >+// but when it eventually works, we should re-enable the test > >+var skipHttps = /android/i.test(DEFAULT_UA); > > Is there a bug filed on this? Going to file one. > >+skipHttps && SimpleTest.doesThrow( > >+ function () getUA('https://example.com'), 'Re-enable https test'); > > Convert "skipHttps &&" to an if-statement. Done > Let testOverrides and testInactive run their code directly instead of > returning a function and change the following: > > >+testOverrides( > >+ testInactive( > >+ SimpleTest.finish > >+ ) > >+)(); > > to this: > > testOverrides(function () { > testInactive(SimpleTest.finish); > }); Done > >+ case 'echo': > >+ response.write(params.value); > >+ break; > >+ } > > The echo case appears to be unused. Can you drop all of the code dealing > "params"? "echo" was going to be used in the test for bug 897221, but now I'm going to put it into a different .sjs file for that test. > Please use 2-space-indentation as per > <https://developer.mozilla.org/en-US/docs/Developer_Guide/Coding_Style>. Done. Carried over r+.
Attachment #788322 - Attachment is obsolete: true
Attachment #793512 - Flags: review+
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla26
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: