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