@@ -38,7 +38,7 @@ class TestHelmCakePHPTemplate:
38
38
def setup_method (self ):
39
39
package_name = "redhat-php-cakephp-application"
40
40
path = test_dir
41
- self .hc_api = HelmChartsAPI (path = path , package_name = package_name , tarball_dir = test_dir )
41
+ self .hc_api = HelmChartsAPI (path = path , package_name = package_name , tarball_dir = test_dir , shared_cluster = True )
42
42
self .hc_api .clone_helm_chart_repo (
43
43
repo_url = "https://github.com/sclorg/helm-charts" , repo_name = "helm-charts" ,
44
44
subdir = "charts/redhat"
@@ -48,8 +48,13 @@ def teardown_method(self):
48
48
self .hc_api .delete_project ()
49
49
50
50
def test_curl_connection (self ):
51
- if self .hc_api .oc_api .shared_cluster :
51
+ branch_to_test = "4.X"
52
+ check_msg = "Welcome to CakePHP"
53
+ if self .hc_api .shared_cluster :
52
54
pytest .skip ("Do NOT test on shared cluster" )
55
+ if VERSION .startswith ("8.2" ) or VERSION .startswith ("8.3" ):
56
+ branch_to_test = "5.X"
57
+ check_msg = "Welcome to CakePHP"
53
58
self .hc_api .package_name = "redhat-php-imagestreams"
54
59
assert self .hc_api .helm_package ()
55
60
assert self .hc_api .helm_installation ()
@@ -58,16 +63,23 @@ def test_curl_connection(self):
58
63
assert self .hc_api .helm_installation (
59
64
values = {
60
65
"php_version" : f"{ VERSION } { TAG } " ,
61
- "namespace" : self .hc_api .namespace
66
+ "namespace" : self .hc_api .namespace ,
67
+ "source_repository_ref" : branch_to_test ,
68
+ "name" : "cakephp-example"
62
69
}
63
70
)
64
71
assert self .hc_api .is_s2i_pod_running (pod_name_prefix = "cakephp-example" , timeout = 300 )
65
- assert self .hc_api .test_helm_curl_output (
66
- route_name = "cakephp-example" ,
67
- expected_str = check_msg
72
+ assert self .hc_api .oc_api . check_response_inside_cluster (
73
+ name_in_template = "cakephp-example" ,
74
+ expected_output = check_msg ,
68
75
)
69
76
70
77
def test_by_helm_test (self ):
78
+ branch_to_test = "4.X"
79
+ check_msg = "Welcome to CakePHP"
80
+ if VERSION .startswith ("8.2" ) or VERSION .startswith ("8.3" ):
81
+ branch_to_test = "5.X"
82
+ check_msg = "Welcome to CakePHP"
71
83
self .hc_api .package_name = "redhat-php-imagestreams"
72
84
assert self .hc_api .helm_package ()
73
85
assert self .hc_api .helm_installation ()
@@ -76,7 +88,9 @@ def test_by_helm_test(self):
76
88
assert self .hc_api .helm_installation (
77
89
values = {
78
90
"php_version" : f"{ VERSION } { TAG } " ,
79
- "namespace" : self .hc_api .namespace
91
+ "namespace" : self .hc_api .namespace ,
92
+ "source_repository_ref" : branch_to_test ,
93
+ "name" : "cakephp-example"
80
94
}
81
95
)
82
96
assert self .hc_api .is_s2i_pod_running (pod_name_prefix = "cakephp-example" , timeout = 300 )
0 commit comments