Skip to content

Commit e4a469b

Browse files
author
OpenShift Bot
authored
Merge pull request #11981 from juanvallejo/jvallejo/update-config-test-to-write-to-tmp
Merged by openshift-bot
2 parents 79a743f + 9889011 commit e4a469b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/cmd/config.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,13 @@ os::cmd::expect_success_and_not_text 'oc get bc' 'does not exist'
3535

3636
os::cmd::expect_failure_and_text 'oc get bc --config=missing' 'missing: no such file or directory'
3737

38+
# define temp location for new config
39+
NEW_CONFIG_LOC="${BASETMPDIR}/new-config.yaml"
40+
3841
# make sure non-existing --cluster and --user can still be set
39-
os::cmd::expect_success_and_text 'oc config set-context new-context-name --cluster=missing-cluster --user=missing-user --namespace=default --config=new-config.yaml' 'context "new-context-name" set'
40-
# os::cmd::expect_failure_and_text "env -u KUBECONFIG -u KUBERNETES_MASTER oc get bc --config=new-config.yaml" 'Missing or incomplete configuration info'
41-
os::cmd::expect_failure_and_text "oc get bc --config=new-config.yaml" 'Missing or incomplete configuration info'
42+
os::cmd::expect_success_and_text "oc config set-context new-context-name --cluster=missing-cluster --user=missing-user --namespace=default --config='${NEW_CONFIG_LOC}'" 'context "new-context-name" set'
43+
os::cmd::expect_failure_and_text "env -u KUBECONFIG -u KUBERNETES_MASTER oc get bc --config='${NEW_CONFIG_LOC}'" 'Missing or incomplete configuration info'
44+
os::cmd::expect_failure_and_text "oc get bc --config='${NEW_CONFIG_LOC}'" 'Missing or incomplete configuration info'
4245
)
4346
echo "config error handling: ok"
4447
os::test::junit::declare_suite_end

0 commit comments

Comments
 (0)