File: browser_addKeywordSearch.js

package info (click to toggle)
iceweasel 31.6.0esr-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,368,576 kB
  • sloc: cpp: 3,692,968; ansic: 1,797,194; python: 193,401; java: 180,622; asm: 133,557; xml: 89,288; sh: 71,748; perl: 22,087; makefile: 21,687; objc: 4,014; yacc: 1,995; pascal: 1,292; lex: 950; exp: 449; lisp: 228; awk: 211; php: 113; sed: 43; csh: 31; ada: 16; ruby: 3
file content (47 lines) | stat: -rw-r--r-- 1,590 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

function test() {
  waitForExplicitFinish();

  gBrowser.selectedTab = gBrowser.addTab("http://example.org/browser/browser/base/content/test/general/dummy_page.html");

  gBrowser.selectedBrowser.addEventListener("load", function runTests() {
    gBrowser.selectedBrowser.removeEventListener("load", runTests, true);

    let doc = gBrowser.contentDocument;
    let base = doc.createElement("base");
    doc.head.appendChild(base);

    let check = function (baseURI, fieldName, expected) {
      base.href = baseURI;

      let form = doc.createElement("form");
      let element = doc.createElement("input");
      element.setAttribute("type", "text");
      element.setAttribute("name", fieldName);
      form.appendChild(element);
      doc.body.appendChild(form);

      let data = GetSearchFieldBookmarkData(element);
      is(data.spec, expected, "Bookmark spec for search field named " + fieldName + " and baseURI " + baseURI + " incorrect");

      doc.body.removeChild(form);
    }

    let testData = [
    /* baseURI, field name, expected */
      [ 'http://example.com/', 'q', 'http://example.com/?q=%s' ],
      [ 'http://example.com/new-path-here/', 'q', 'http://example.com/new-path-here/?q=%s' ],
      [ '', 'q', 'http://example.org/browser/browser/base/content/test/general/dummy_page.html?q=%s' ],
    ]

    for (let data of testData) {
      check(data[0], data[1], data[2]);
    }

    // cleanup
    gBrowser.removeCurrentTab();
    finish();
  }, true);
}