File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
integration-tests/src/test
java/oracle/kubernetes/operator
resources/sitconfig/scripts Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ public class SitConfig extends BaseTest {
44
44
private static String mysqlYamlFile = "" ;
45
45
private static String domainYaml ;
46
46
private static String JDBC_RES_SCRIPT ;
47
- private static String oldSecret = "test-secrets" ;
48
- private static String newSecret = "test-secrets-new" ;
47
+ private static final String oldSecret = "test-secrets" ;
48
+ private static final String newSecret = "test-secrets-new" ;
49
49
50
50
/**
51
51
* This method gets called only once before any of the test methods are executed. It does the
@@ -577,6 +577,7 @@ private void transferTests() throws Exception {
577
577
"runSitConfigTests.sh" ,
578
578
ADMINPODNAME ,
579
579
domain .getDomainNs ());
580
+ TestUtils .exec ("kubectl get all --all-namespaces" , true );
580
581
}
581
582
582
583
/**
Original file line number Diff line number Diff line change 15
15
16
16
source $ORACLE_HOME /wlserver/server/bin/setWLSEnv.sh
17
17
javac -d . SitConfigTests.java
18
+
19
+ domaindir=" notexisting"
20
+ if [ -d " /shared/domains/customsitconfigdomain/optconfig" ]
21
+ then
22
+ domaindir=" /shared/domains/customsitconfigdomain/optconfig"
23
+ else
24
+ domaindir=" /u01/oracle/user_projects/domains/customsitconfigdomain/optconfig"
25
+ fi
26
+
27
+ cat $domaindir /introspector-situational-config.xml
28
+ cat $domaindir /custom-situational-config.xml
29
+ cat $domaindir /jms/*
30
+ cat $domaindir /jdbc/*
31
+ cat $domaindir /diagnostics/*
32
+
18
33
java -ea -cp $ORACLE_HOME :$CLASSPATH oracle.kubernetes.operator.SitConfigTests $@
19
34
You can’t perform that action at this time.
0 commit comments