github.com/opendevstack/tailor@v1.3.5-0.20220119161809-cab064e60a67/internal/test/e2e/testdata/route/steps.json (about) 1 [ 2 { 3 "command": "apply route", 4 "wantStdout": true, 5 "wantResources": { 6 "route/foo": true 7 }, 8 "wantFields": { 9 "route/foo": { 10 ".spec.tls.insecureEdgeTerminationPolicy": "Redirect" 11 } 12 } 13 }, 14 { 15 "command": "apply route", 16 "wantStdout": true, 17 "wantResources": { 18 "route/foo": true 19 }, 20 "wantFields": { 21 "route/foo": { 22 ".spec.tls.insecureEdgeTerminationPolicy": "None" 23 } 24 } 25 }, 26 { 27 "command": "apply route", 28 "wantStdout": true, 29 "wantErr": true, 30 "wantResources": { 31 "route/foo": true 32 } 33 }, 34 { 35 "command": "apply route --force", 36 "wantStdout": true, 37 "wantResources": { 38 "route/foo": false 39 } 40 } 41 ]