|
1 # This Source Code Form is subject to the terms of the Mozilla Public |
|
2 # License, v. 2.0. If a copy of the MPL was not distributed with this |
|
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
|
4 |
|
5 scenario BridgeWithAIA |
|
6 |
|
7 entity Army |
|
8 type Root |
|
9 |
|
10 entity Navy |
|
11 type Root |
|
12 |
|
13 entity Bridge |
|
14 type Bridge |
|
15 issuer Army |
|
16 issuer Navy |
|
17 |
|
18 entity CA1 |
|
19 type Intermediate |
|
20 issuer Bridge |
|
21 aia Bridge |
|
22 |
|
23 entity EE1 |
|
24 type EE |
|
25 issuer CA1 |
|
26 |
|
27 testdb EE1 |
|
28 |
|
29 verify EE1:CA1 |
|
30 cert CA1:Bridge |
|
31 trust Army: |
|
32 result fail |
|
33 |
|
34 verify EE1:CA1 |
|
35 cert CA1:Bridge |
|
36 trust Army: |
|
37 fetch |
|
38 # should pass, bug 435314 |
|
39 # temporary result - test fails only with dbm cert db |
|
40 result dbm:fail all:pass |
|
41 |
|
42 verify EE1:CA1 |
|
43 cert CA1:Bridge |
|
44 trust Navy: |
|
45 fetch |
|
46 result pass |
|
47 |
|
48 verify EE1:CA1 |
|
49 cert CA1:Bridge |
|
50 cert Bridge:Army |
|
51 trust Navy: |
|
52 fetch |
|
53 result pass |
|
54 |