-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathtestGenericWrapper.sh
executable file
·958 lines (822 loc) · 26.5 KB
/
testGenericWrapper.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
#!/usr/bin/env bash
#
#===================================================================================
# NAME: testGenericWrapper.sh
#
# DESCRIPTION: This script is running zowe cli to run a suite of tests for the wrapper scripts.
#
# OPTIONS:
# commandInterface
#
# 'testGenericWrapper.sh zowe' submits the commands via the configured Zowe cli profile
# 'testGenericWrapper.sh ssh ' submits the commands via opens a remote ssh session for each invocation
#
# NOTE(S):
# - Review the test script configuration section to specify:
# . dbbBuildRootDir to specify the UNIX System Services directory as the workspace
#
# - Recommeded to use the DBB File Metadatastore in .dbb
#
#
# CONFIGURATION:
# - See user
#
# MAINTENANCE LOG:
#
# Date Who Vers Description
# ---------- --- ----- --------------------------------------------------------------
# 2023/07/27 DN 1.0.0 Initial release of the test script
#====================================================================================
#====================================================================================
## script configuration
#====================================================================================
# build workspace directory for test
# e.g. dbbBuildRootDir="/u/ibmuser/backendWorkspace"
dbbBuildRootDir=""
# ssh connection
# e.g. sshConnection="ibmuser@dev-lpar"
sshConnection=""
# ssh environment profile to execute for non-conversational ssh sessions
# e.g. sshEnvironmentProfile="/u/ibmuser/.profile"
sshEnvironmentProfile=""
# MortageApplication Artifact repository properties for UCD
# e.g. artifactRepoConfig="/var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties"
artifactRepoConfig=""
#====================================================================================
# Test repository
#====================================================================================
repo="https://github.com/dennis-behm/MortgageApplication.git" # the test repo
application="MortgageApplication"
#====================================================================================
# flags which pipeline steps should be executed in test process
# e.g. for instance if you don't want to run a test for UCD
# please pay to attention to dependencies between steps -
# e.g. you cannot request a deployment without packaging
#====================================================================================
executeClone="true" # required
executeBuild="true" # required
executePackageBuildOutputs="true" # optional
executePublishLogs="true" # optional
executeUcdPackaging="true" # optional
executeUcdDeploy="true" # optional
executeDeleteWorkspace="true" # optional, depending on test scenario
#====================================================================================
## script configuration - end
#====================================================================================
# local variables
PGM=$(basename "$0")
uniqueWorkspaceId="" # calculated
pipelineType="" # pipeline type - either build or release
branch="" # branch
verbose="" # Verbose logging flag
buildTypeOverride="" # Override of zAppBuild build type
ucdVersionName="" # UCD component version name
timestamp="" # timestamp for ucd version name or package build outputs
testSummary="" # String to collect the overall test summary
rc=0 # Internal RC
commandInterface=$1 #
if [ -z "${commandInterface}" ]; then
ERRMSG=$PGM": [INFO] Command interface not specified. Ussing ssh configuruation".
echo $ERRMSG
fi
if [ -z "${dbbBuildRootDir}" ]; then
rc=12
ERRMSG=$PGM": [ERROR] dbbBuildRootDir not specified. Please review configuration. Exiting. rc="$rc
echo $ERRMSG
exit $rc
fi
echo "$PGM: [INFO] Running test script using $commandInterface."
# Function that submits the commands
submitCmd() {
if [ "${commandInterface}" == "zowe" ]; then
echo "$PGM: [COMMAND] zowe zos-uss issue ssh \"${cmdStr}\""
zowe zos-uss issue ssh "${cmdStr}"
else
# Check configuration
if [ -z "${sshConnection}" ]; then
rc=12
ERRMSG=$PGM": [ERROR] SSH connection details not configured in test script. Exiting. rc="$rc
echo $ERRMSG
fi
if [ -z "${sshEnvironmentProfile}" ]; then
rc=12
ERRMSG=$PGM": [ERROR] SSH environment profiles not set. Required to run test script. Exiting. rc="$rc
echo $ERRMSG
fi
if [ $rc -eq 0 ]; then
echo "$PGM: [COMMAND] ssh $sshConnection \". $sshEnvironmentProfile && ${cmdStr}\""
ssh $sshConnection ". $sshEnvironmentProfile && ${cmdStr}"
fi
fi
}
# Reset environment
# deletes the build workspaces, drops DBB collections and DBB build results from Metadatastore
resetWorkspace() {
echo "$PGM: [INFO] Reset workspace folder $dbbBuildRootDir."
# cleanup
cmdStr="rm -Rf $dbbBuildRootDir"
submitCmd
cmdStr="mkdir $dbbBuildRootDir"
submitCmd
echo "$PGM: Reset dbb collections in File Metadatastore."
cmdStr="dbb collection list --type file"
submitCmd
cmdStr="dbb collection delete MortgageApplication-hotfix/rel-1.0.0/myfix --type file"
submitCmd
cmdStr="dbb collection delete MortgageApplication-hotfix/rel-1.0.0/myfix-outputs --type file"
submitCmd
cmdStr="dbb collection delete MortgageApplication-feature/setmainbuildbranch --type file"
submitCmd
cmdStr="dbb collection delete MortgageApplication-feature/setmainbuildbranch-outputs --type file"
submitCmd
cmdStr="dbb collection delete MortgageApplication-epic/implementAI --type file"
submitCmd
cmdStr="dbb collection delete MortgageApplication-epic/implementAI-outputs --type file"
submitCmd
cmdStr="dbb build-group delete MortgageApplication-hotfix/rel-1.0.0/myfix --type file"
submitCmd
cmdStr="dbb build-group delete MortgageApplication-feature/setmainbuildbranch --type file"
submitCmd
cmdStr="dbb build-group delete MortgageApplication-epic/implementAI --type file"
submitCmd
cmdStr="dbb collection list --type file"
submitCmd
}
# Clone step
cloneApplicationRepository() {
cmdStr="gitClone.sh -w $dbbBuildRootDir/$uniqueWorkspaceId -r $repo -b $branch"
if [ "$executeClone" == "true" ]; then
submitCmd
else
echo "$PGM: [INFO] Git Clone skipped based on configuration."
fi
}
# InvokeBuild
runDBBBuild() {
cmdStr="dbbBuild.sh -w $dbbBuildRootDir/$uniqueWorkspaceId -a ${application} -b $branch $verbose"
if [ ! -z "${pipelineType}" ]; then
cmdStr="${cmdStr} -p ${pipelineType}"
fi
if [ ! -z "${buildTypeOverride}" ]; then
cmdStr="${cmdStr} -t '${buildTypeOverride}'"
fi
if [ "$executeBuild" == "true" ]; then
submitCmd
else
echo "$PGM: [INFO] Build skipped based on configuration."
fi
}
# a method to get unique ucd component version names ...
setTimestamp() {
timestamp=$(date +"%Y-%m-%d_%H-%M-%S")
}
# Invoke UCD packaging script
runUcdPackaging() {
# application name is also the UCD component name
# couple of comments / future feature of the script :
# - version name could be calculated in the backend script
# - artifactRepoConfig file could be calculated to a path from application-conf
cmdStr="ucdPackaging.sh -v $ucdVersionName.$timestamp -c $application -w $dbbBuildRootDir/$uniqueWorkspaceId -b $branch -u http://acme.pipeline.org/$ucdVersionName -e $artifactRepoConfig"
if [ "$executeUcdPackaging" == "true" ]; then
submitCmd
else
echo "$PGM: [INFO] UCD Packaging skipped based on configuration."
fi
}
# Run package build outputs script
runPackageBuildOutputs() {
# application name is also the UCD component name
# couple of comments / future feature of the script :
# packageBuildOutputs.sh -w MortApp/main/build-1 -t rel-1.0.0.tar -a MortgageApplication -b feature/myCoolFeature -u -v rel-1.0.0.2023-09-21-xx.xx.xx
# TODO - do we want to compute the new release?
# - do we want to read it from a properties file?
cmdStr="packageBuildOutputs.sh -w $dbbBuildRootDir/$uniqueWorkspaceId -a $application -t package.tar -b $branch -u -v $application.$timestamp"
if [ ! -z "${pipelineType}" ]; then
cmdStr="${cmdStr} -p ${pipelineType}"
fi
if [ "$executePackageBuildOutputs" == "true" ]; then
submitCmd
else
echo "$PGM: [INFO] Package Build Outputs skipped based on configuration."
fi
}
# Request UCD Deployment
# requires JAVA11
runUcdDeployment() {
# some parameters could be better centrally managed (like -p process).
cmdStr="ucdDeploy.sh -a $application -p appDeployment -e Integration-Test -d $application:latest -k"
if [ "$executeUcdDeploy" == "true" ]; then
submitCmd
else
echo "$PGM: [INFO] UCD Deploy skipped based on configuration."
fi
}
# Prepare Logs
pullLogs() {
cmdStr="prepareLogs.sh -w $dbbBuildRootDir/$uniqueWorkspaceId"
if [ "$executePublishLogs" == "true" ]; then
submitCmd | tee prepareLogsOutput.txt
# read logs
logsTar=$(cat prepareLogsOutput.txt | grep "Logs successfully stored at " | awk -F "stored at " ' { print $2 }')
if [ ! -z "${logsTar}" ]; then
zowe zos-files download uss-file "$logsTar" -f ./logs/$uniqueWorkspaceId/logs.tar -b
else
rc=4
echo "[WARNING] Tar file containing the logs was not found. rc="$rc
fi
else
echo "$PGM: [INFO] Prepare Logs skipped based on configuration."
fi
}
# delete workspace
deleteWorkspace(){
cmdStr="deleteWorkspace.sh -w $dbbBuildRootDir/$uniqueWorkspaceId"
if [ "$executeDeleteWorkspace" == "true" ]; then
submitCmd
else
echo "$PGM: [INFO] Workspace Cleanup skipped based on configuration."
fi
}
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
############# MortgageApplication
#====================================================================================
# Functions representing and controlling the various test scenarios
#====================================================================================
pipelineType=""
############# MortgageApplication MortApp/build-1
testMortgageApplication-Main-Bld-Build-0() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Main-Bld-Build-0."
# test configuration
branch="main"
uniqueWorkspaceId="MortApp/${branch}/build-0"
pipelineType="build"
buildTypeOverride="--fullBuild"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="false"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
# reset
buildTypeOverride=""
}
############# MortgageApplication MortApp/build-1
testMortgageApplication-Main-Bld-Build-1() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Main-Bld-Build-1."
# test configuration
branch="main"
uniqueWorkspaceId="MortApp/${branch}/build-1"
pipelineType="build"
verbose="-v"
ucdVersionName="${application}.build-1"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - UCD Packaging"
echo "-------------"
runUcdPackaging
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - PackageBuildOutputs"
echo "-------------"
runPackageBuildOutputs
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Run Deployment"
echo "-------------"
runUcdDeployment
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="true"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
#unset variables
verbose=""
}
testMortgageApplication-Main-Rel-Build-2() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Main-Rel-Build-2."
############# MortgageApplication MortApp/build-2
branch="main"
uniqueWorkspaceId="MortApp/${branch}/build-2"
pipelineType="release"
ucdVersionName="${application}.build-2"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - UCD Packaging"
echo "-------------"
runUcdPackaging
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - PackageBuildOutputs"
echo "-------------"
runPackageBuildOutputs
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="true"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
}
testMortgageApplication-Main-Prev-Build-3() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Main-Prev-Build-3."
branch="main"
uniqueWorkspaceId="MortApp/${branch}/build-3"
pipelineType="preview"
#ucdVersionName="${application}.build-3"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
# no packaging because preview!
# if [ $rc -eq 0 ]; then
# echo "Package Build outputs"
# echo "-------------"
# runUcdPackaging
# rc=$?
# echo "rc=$rc"
# fi
if [ $rc -eq 0 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="true"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
}
############# MortgageApplication release maintenance leg MortApp/build-3
testMortgageApplication-Release-Rel100-Build-1() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Release-Rel100-Build-1."
branch="release/rel-1.0.0"
uniqueWorkspaceId="MortApp/${branch}/build-1"
pipelineType=""
ucdVersionName="${application}.rel-1.0.0.fix-1.build-1"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - UCD Packaging"
echo "-------------"
runUcdPackaging
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - PackageBuildOutputs"
echo "-------------"
runPackageBuildOutputs
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="true"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
}
############# MortgageApplication release maintenance leg MortApp/build-3
testMortgageApplication-Hotfix-Release-Rel100-Build-1() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Hotfix-Release-Rel100-Build-1."
branch="hotfix/rel-1.0.0/myfix"
uniqueWorkspaceId="MortApp/${branch}/build-1"
ucdVersionName="prelim_${application}.rel-1.0.0.myfix.build-1"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - UCD Packaging"
echo "-------------"
runUcdPackaging
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - PackageBuildOutputs"
echo "-------------"
runPackageBuildOutputs
rc=$?
echo "rc=$rc"
fi
# load logs even with RC=4 (Warning)
if [ $rc -eq 4 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="true"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
rc=0 #msg will be RC=4 because no files to be build
}
############# MortgageApplication contibution to the next release
testMortgageApplication-Feature-Setmainbuildbranch-Build-1() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Feature-Setmainbuildbranch-Build-1."
branch="feature/setmainbuildbranch"
uniqueWorkspaceId="MortApp/${branch}/build-1"
pipelineType=""
ucdVersionName="prelim_${application}.feature.setmainbuildbranch.build-1"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - UCD Packaging"
echo "-------------"
runUcdPackaging
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - PackageBuildOutputs"
echo "-------------"
runPackageBuildOutputs
rc=$?
echo "rc=$rc"
fi
# load logs even with RC=4 (Warning)
if [ $rc -eq 4 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="true"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
rc=0 #msg will be RC=4 because no files to be build
}
############# MortgageApplication contibution to the next release
testMortgageApplication-Epic-implementAI-Build-1() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Epic-implementAI-Build-1."
branch="epic/implementAI"
uniqueWorkspaceId="MortApp/${branch}/build-1"
ucdVersionName="prelim_${application}.epic.implementAI.build-1"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - UCD Packaging"
echo "-------------"
runUcdPackaging
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - PackageBuildOutputs"
echo "-------------"
runPackageBuildOutputs
rc=$?
echo "rc=$rc"
fi
# load logs even with RC=4 (Warning)
if [ $rc -eq 4 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="true"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
}
############# MortgageApplication contibution to the next release
testMortgageApplication-Epic-Feature-implementAI-Build-1() {
echo "$PGM: [TEST] Executing test scenario testMortgageApplication-Epic-Feature-implementAI-Build-1."
branch="feature/implementAI/myFeatureImpl"
uniqueWorkspaceId="MortApp/${branch}/build-1"
ucdVersionName="prelim_${application}.epic.implementAI.build-1"
# set timestamp
setTimestamp
if [ $rc -eq 0 ]; then
echo "cloneApplicationRepository"
echo "-------------"
cloneApplicationRepository
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Perform Build"
echo "-------------"
runDBBBuild
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - UCD Packaging"
echo "-------------"
runUcdPackaging
rc=$?
echo "rc=$rc"
fi
if [ $rc -eq 0 ]; then
echo "Package Step - PackageBuildOutputs"
echo "-------------"
runPackageBuildOutputs
rc=$?
echo "rc=$rc"
fi
# load logs even with RC=4 (Warning)
if [ $rc -eq 4 ]; then
echo "Pull Logs"
echo "-------------"
pullLogs
rc=$?
echo "rc=$rc"
fi
executeDeleteWorkspace="true"
if [ $rc -eq 0 ] ; then
echo "Delete Workspace"
echo "-------------"
deleteWorkspace
rc=$?
echo "rc=$rc"
fi
}
#====================================================================================
# Functions representing and controlling the various test scenarios
#====================================================================================
if [ $rc -eq 0 ]; then
resetWorkspace
rc=$?
echo "rc=$rc"
fi
# Main branch pipelines
if [ $rc -eq 0 ]; then
testMortgageApplication-Main-Bld-Build-0
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Main-Bld-Build-0 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Main-Bld-Build-0 \t failed , rc=$rc\n"
fi
fi
if [ $rc -eq 0 ]; then
testMortgageApplication-Main-Bld-Build-1
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Main-Bld-Build-1 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Main-Bld-Build-1 \t failed , rc=$rc\n"
fi
fi
if [ $rc -eq 0 ]; then
testMortgageApplication-Main-Rel-Build-2
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Main-Rel-Build-2 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Main-Rel-Build-2 \t failed , rc=$rc\n"
fi
fi
if [ $rc -eq 0 ]; then
testMortgageApplication-Main-Prev-Build-3
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Main-Prev-Build-3 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Main-Prev-Build-3 \t failed , rc=$rc\n"
fi
fi
# Feature branch pipeline
if [ $rc -eq 0 ]; then
testMortgageApplication-Feature-Setmainbuildbranch-Build-1
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Feature-Setmainbuildbranch-Build-1 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Feature-Setmainbuildbranch-Build-1 \t failed , rc=$rc\n"
fi
fi
# release maintenance pipeline
if [ $rc -eq 0 ]; then
testMortgageApplication-Release-Rel100-Build-1
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Release-Rel100-Build-1 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Release-Rel100-Build-1 \t failed , rc=$rc\n"
fi
fi
# feature branch for release maintenance
if [ $rc -eq 0 ]; then
testMortgageApplication-Hotfix-Release-Rel100-Build-1
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Hotfix-Release-Rel100-Build-1 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Hotfix-Release-Rel100-Build-1 \t failed , rc=$rc\n"
fi
fi
# epic branch
if [ $rc -eq 0 ]; then
testMortgageApplication-Epic-implementAI-Build-1
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Epic-implementAI-Build-1 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Epic-implementAI-Build-1 \t failed , rc=$rc\n"
fi
fi
# epic feature branch
if [ $rc -eq 0 ]; then
testMortgageApplication-Epic-Feature-implementAI-Build-1
if [ $rc -eq 0 ]; then
testSummary="${testSummary} testMortgageApplication-Epic-Feature-implementAI-Build-1 \t passed , rc=$rc\n"
else
testSummary="${testSummary} testMortgageApplication-Epic-Feature-implementAI-Build-1 \t failed , rc=$rc\n"
fi
fi
# print test summary
printf "Test Summary\n"
printf "============\n"
printf "$testSummary"