summaryrefslogtreecommitdiffstats
path: root/dom/xul/templates/tests/chrome/test_tmpl_storage_parameters.xul
blob: 0df56188491be70241322c852915ece322980e1e (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>

<!--
    storage listbox with query parameters
-->

<window title="XUL Template Tests" width="500" height="600"
        onload="test_storage_template();"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>

  <body xmlns="http://www.w3.org/1999/xhtml" style="height: 300px; overflow: auto;"/>

  <data id="output-birds">
    <listitem anyid="true" label="Barn Owl"/>
    <listitem anyid="true" label="Emu"/>
    <listitem anyid="true" label="Raven"/>
  </data>

  <data id="output-L">
    <listitem anyid="true" label="LAMA"/>
    <listitem anyid="true" label="Lion"/>
  </data>

<script src="templates_shared.js"/>

<script>
<![CDATA[

copyToProfile('animals.sqlite');
SimpleTest.waitForExplicitFinish();


function test_storage_template()
{
  var root = document.getElementById("root1");
  expectedOutput = document.getElementById("output-birds");
  checkResults(root, 0);

root = document.getElementById("root2");
checkResults(root, 0);

root = document.getElementById("root6");
checkResults(root, 0);

root = document.getElementById("root3");
expectedOutput = document.getElementById("output-L");
checkResults(root, 0);

root = document.getElementById("root4");
checkResults(root, 0);

root = document.getElementById("root5");
checkResults(root, 0);

SimpleTest.finish();
}


var testid ="storage listbox with query parameters";
var queryType = "storage";
var isTreeBuilder = false;
var needsOpen = false;
var notWorkingYet = false;
var notWorkingYetDynamic = false;
var expectedOutput;

var changes = [];
]]>
</script>

<listbox  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="root1" 
              flex="1"  datasources="profile:animals.sqlite" ref="." querytype="storage">
    <template>
        <query>
            SELECT * FROM animals WHERE species_id = ? ORDER BY name
            <param>2</param>
        </query>
        <action>
            <listitem uri="?" label="?name"/>
        </action>
    </template>
</listbox>


<listbox  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="root2" 
              flex="1"  datasources="profile:animals.sqlite" ref="." querytype="storage">
    <template>
        <query>
            SELECT * FROM animals WHERE species_id = ? ORDER BY name
            <param type="int32">2</param>
        </query>
        <action>
            <listitem uri="?" label="?name"/>
        </action>
    </template>
</listbox>


<listbox  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="root3" 
              flex="1"  datasources="profile:animals.sqlite" ref="." querytype="storage">
    <template>
        <query>
                SELECT * FROM animals WHERE species_id = :spec AND name like ? ORDER BY name
            <param name="spec" type="int32">5</param>
            <param>L%</param>
        </query>
        <action>
            <listitem uri="?" label="?name"/>
        </action>
    </template>
</listbox>

<listbox  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="root4" 
              flex="1"  datasources="profile:animals.sqlite" ref="." querytype="storage">
    <template>
        <query>
                SELECT * FROM animals WHERE species_id = ?3 AND name like ?1 ORDER BY name
            <param index="3" type="int32">5</param>
            <param index="1">L%</param>
        </query>
        <action>
            <listitem uri="?" label="?name"/>
        </action>
    </template>
</listbox>

<listbox  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="root5" 
              flex="1"  datasources="profile:animals.sqlite" ref="." querytype="storage">
    <template>
        <query>
                SELECT * FROM animals WHERE species_id = ?3 AND name like :pattern ORDER BY name
            <param name="pattern">L%</param>
            <param index="3" type="int32">5</param>
        </query>
        <action>
            <listitem uri="?" label="?name"/>
        </action>
    </template>
</listbox>

<listbox  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="root6" 
              flex="1"  datasources="profile:animals.sqlite" ref="." querytype="storage">
    <template>
        <query>
            SELECT * FROM animals WHERE species_id = ? ORDER BY name
            <param type="int32">2qsdqsd</param>
        </query>
        <action>
            <listitem uri="?" label="?name"/>
        </action>
    </template>
</listbox>



</window>