-
Notifications
You must be signed in to change notification settings - Fork 2
/
testplan_explorer.html
64 lines (61 loc) · 2.3 KB
/
testplan_explorer.html
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
<h1>Cinema Explorer URL Test Plan</h1>
The following links test attribute passing over URL:
<p></p>
<h3>No server</h3>
<table>
<tr>
<td>Normal behavior</td>
<td><a href="cinema_explorer.html">
cinema_explorer.html</a></td>
</tr>
<tr>
<td>Passing a database.json file</td>
<td><a href="cinema_explorer.html?databases=testing/explorer/small.json">
cinema_explorer.html?databases=testing/explorer/small.json</a></td>
</tr>
<tr>
<td>Passing a single database</td>
<td><a href="cinema_explorer.html?databases=data/sphere_multi-image.cdb">
cinema_explorer.html?databases=data/sphere_multi-image.cdb</a></td>
</tr>
<tr>
<td>Passing multiple databases</td>
<td><a href="cinema_explorer.html?databases=data/sphere_multi-image.cdb,data/sphere.cdb">
cinema_explorer.html?databases=data/sphere_multi-image.cdb,data/sphere.cdb</a></td>
</tr>
<tr>
<td>Passing ParaView database</td>
<td><a href="cinema_explorer.html?databases=data/test_paraview.cdb">
cinema_explorer.html?databases=data/test_paraview.cdb</a></td>
</tr>
</table>
<h3>With server</h3>
Run server at <code>testing/explorer/server.py</code>
<p></p>
<table>
<tr>
<td>Normal behavior</td>
<td><a href="http://127.0.0.1:8000/cinema_explorer.html">
cinema_explorer.html</a></td>
</tr>
<tr>
<td>Passing a database.json file</td>
<td><a href="http://127.0.0.1:8000/cinema_explorer.html?databases=testing/explorer/small.json">
cinema_explorer.html?databases=testing/explorer/small.json</a></td>
</tr>
<tr>
<td>Passing a single database</td>
<td><a href="http://127.0.0.1:8000/cinema_explorer.html?databases=data/sphere_multi-image.cdb">
cinema_explorer.html?databases=data/sphere_multi-image.cdb</a></td>
</tr>
<tr>
<td>Passing multiple databases</td>
<td><a href="http://127.0.0.1:8000/cinema_explorer.html?databases=data/sphere_multi-image.cdb,data/sphere.cdb">
cinema_explorer.html?databases=data/sphere_multi-image.cdb,data/sphere.cdb</a></td>
</tr>
<tr>
<td>Passing ParaView database</td>
<td><a href="http://127.0.0.1:8000/cinema_explorer.html?databases=data/test_paraview.cdb">
cinema_explorer.html?databases=data/test_paraview.cdb</a></td>
</tr>
</table>