OLD | NEW |
---|---|
(Empty) | |
1 The search.sqlite contains a table named |engine_data| which holds information | |
2 about search engines. The table's data has been modified for the sake of | |
3 testing. The original content of |engine_data| looked as follows: | |
4 | |
5 id engineid name value | |
6 -- ------------------------- ----- ----- | |
7 10 [app]/google.xml order 1 | |
8 11 [app]/yahoo.xml order 2 | |
9 12 [app]/amazondotcom.xml order 3 | |
10 13 [app]/answers.xml order 4 | |
11 14 [app]/creativecommons.xml order 5 | |
12 15 [app]/eBay.xml order 6 | |
13 16 [profile]/flickr-tags.xml order 7 | |
14 17 [profile]/imdb.xml order 8 | |
15 18 [profile]/webster.xml order 9 | |
16 19 [app]/wikipedia.xml order 10 | |
17 | |
18 The |engineid| contains [app]/<name>.xml or [profile]/<name>.xml where | |
19 the [app] and [profile] need to be replaced with the actual app or profile | |
20 path. The actual app or profile path varies with operating system. To make | |
Ilya Sherman
2014/06/06 04:15:42
Do the app and profile paths vary by operating sys
Tapu Ghose
2014/06/15 04:19:49
You are right. [app] and [profle] should not vary
| |
21 the browser test independant of machine's environment, [app] and [profile] | |
22 is replaced with relative path as follows: | |
23 | |
24 [app] => ./chrome/test/data/firefox3_profile/searchplugins/default | |
25 [profile] => ./chrome/test/data/firefox3_profile/searchplugins/installed | |
Ilya Sherman
2014/06/06 04:15:42
What is this path relative to? Since the test cod
Ilya Sherman
2014/06/06 04:15:42
Also, I've realized that the test code expects the
Tapu Ghose
2014/06/15 04:19:49
Completely agree with you. All search engine XML f
Tapu Ghose
2014/06/15 04:19:49
The path was relative to /src. But now I made use
| |
26 | |
27 To respect the relative path in test data, all default and installed search | |
28 engines XMLs are placed in searchplugins/default and searchplugins/installed | |
29 directory respectively. | |
OLD | NEW |