#384 C3I-97: Avoid too long route
Merged 3 years ago by lholecek. Opened 3 years ago by mkovarik.
mkovarik/waiverdb c3i-97  into  master

@@ -195,8 +195,12 @@ 

                c3i.deployAndWait(script: this, objs: models, timeout: 15)

                def appPod = openshift.selector('pods', ['environment': env.ENVIRONMENT_LABEL, 'service': 'web']).object()

                env.IMAGE_DIGEST = appPod.status.containerStatuses[0].imageID.split('@')[1]

+               // Create route with short name

+               openshift.create('route', 'edge', 'waiverdb', "--service=waiverdb-test-${env.TEST_ID}-web")

+               // Give some time to active the route

+               sh 'sleep 5'

                // Run functional tests

-               def route_hostname = openshift.selector('routes', ['environment': env.ENVIRONMENT_LABEL]).object().spec.host

+               def route_hostname = openshift.selector('routes', 'waiverdb').object().spec.host

                echo "Running tests against https://${route_hostname}/"

                withEnv(["WAIVERDB_TEST_URL=https://${route_hostname}/"]) {

                  sh 'py.test-3 -v --junitxml=junit-functional-tests.xml functional-tests/'

Combination of namespace name and route name could result in very long
dns which is not accepted.
Creating additional route for test with static route name 'waiverdb' -
namespace is dedicated for this run - no collisions.

Build 60edc9c6db67a243b745854687ce1a893eaa1977 FAILED!
Rebase or make new commits to rebuild.

Build 60edc9c6db67a243b745854687ce1a893eaa1977 FAILED!
Rebase or make new commits to rebuild.

rebased onto cbe96ff

3 years ago

Pull-Request has been merged by lholecek

3 years ago