forked from cloudfoundry/cf-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-operations.sh
executable file
·76 lines (62 loc) · 4.83 KB
/
test-operations.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
#!/bin/bash
test_standard_ops() {
# Padded for pretty output
suite_name="STANDARD "
pushd ${home} > /dev/null
pushd operations > /dev/null
if interpolate ""; then
pass "cf-deployment.yml"
else
fail "cf-deployment.yml"
fi
check_interpolation "aws.yml"
check_interpolation "azure.yml"
check_interpolation "bosh-lite.yml"
check_interpolation "cf-syslog-skip-cert-verify.yml"
check_interpolation "configure-default-router-group.yml" "-v default_router_group_reservable_ports=1234-2024"
check_interpolation "disable-router-tls-termination.yml"
check_interpolation "enable-cc-rate-limiting.yml" "-v cc_rate_limiter_general_limit=blah" "-v cc_rate_limiter_unauthenticated_limit=something"
check_interpolation "name: enable-nfs-ldap.yml" "enable-nfs-volume-service.yml -o enable-nfs-ldap.yml -l example-vars-files/vars-enable-nfs-ldap.yml"
check_interpolation "enable-nfs-volume-service.yml"
check_interpolation "enable-privileged-container-support.yml"
check_interpolation "enable-routing-integrity.yml"
check_interpolation "enable-service-discovery.yml"
check_interpolation "migrate-cf-mysql-to-pxc.yml"
check_interpolation "openstack.yml"
check_interpolation "override-app-domains.yml" "-l example-vars-files/vars-override-app-domains.yml"
check_interpolation "rename-network-and-deployment.yml" "-v deployment_name=renamed_deployment -v network_name=renamed_network"
check_interpolation "scale-database-cluster.yml"
check_interpolation "scale-to-one-az.yml"
check_interpolation "set-bbs-active-key.yml" "-v diego_bbs_active_key_label=my_key_name"
check_interpolation "set-router-static-ips.yml" "-v router_static_ips=[10.0.16.4,10.0.47.5]"
check_interpolation "stop-skipping-tls-validation.yml"
check_interpolation "name: use-alicloud-oss-blobstore.yml" "use-external-blobstore.yml -o use-alicloud-oss-blobstore.yml -l example-vars-files/vars-use-alicloud-oss-blobstore.yml"
check_interpolation "name: use-azure-storage-blobstore.yml" "use-external-blobstore.yml -o use-azure-storage-blobstore.yml -l example-vars-files/vars-use-azure-storage-blobstore.yml"
check_interpolation "use-blobstore-cdn.yml" "-l example-vars-files/vars-use-blobstore-cdn.yml"
check_interpolation "use-compiled-releases.yml"
check_interpolation "use-external-blobstore.yml" "-l example-vars-files/vars-use-external-blobstore.yml"
check_interpolation "use-external-dbs.yml" "-l example-vars-files/vars-use-external-dbs.yml"
check_interpolation "name: use-gcs-blobstore-service-account.yml" "use-external-blobstore.yml -o use-gcs-blobstore-service-account.yml -l example-vars-files/vars-use-gcs-blobstore-service-account.yml"
check_interpolation "name: use-gcs-blobstore-access-key.yml" "use-external-blobstore.yml -o use-gcs-blobstore-access-key.yml
-v blobstore_access_key_id=TEST_ACCESS_KEY -v blobstore_secret_access_key=TEST_SECRET_ACCESS_KEY -l example-vars-files/vars-use-gcs-blobstore-access-key.yml"
check_interpolation "use-haproxy.yml" "-v haproxy_private_ip=10.0.10.10"
check_interpolation "name: use-haproxy-public-network.yml" "use-haproxy.yml" "-o use-haproxy-public-network.yml -v haproxy_public_network_name=public -v haproxy_public_ip=6.7.8.9"
check_latest "use-latest-stemcell.yml" "default"
check_latest "use-latest-windows1803-stemcell.yml" "windows1803" "-o windows1803-cell.yml"
check_latest "use-latest-windows2012R2-stemcell.yml" "windows2012R2" "-o windows2012R2-cell.yml"
check_latest "use-latest-windows2016-stemcell.yml" "windows2016" "-o windows2016-cell.yml"
check_interpolation "name: use-offline-windows2016fs.yml" "windows2016-cell.yml" "-o use-offline-windows2016fs.yml"
check_interpolation "use-postgres.yml"
check_interpolation "use-pxc.yml"
check_interpolation "name: use-pxc-for-nfs-volume-service.yml" "${home}/operations/enable-nfs-volume-service.yml" "-o use-pxc.yml" "-o use-pxc-for-nfs-volume-service.yml"
check_interpolation "name: use-s3-blobstore.yml" "use-external-blobstore.yml -o use-s3-blobstore.yml -l example-vars-files/vars-use-s3-blobstore.yml"
check_interpolation "name: use-swift-blobstore.yml" "use-external-blobstore.yml -o use-swift-blobstore.yml -l example-vars-files/vars-use-swift-blobstore.yml"
check_interpolation "use-trusted-ca-cert-for-apps.yml" "-l example-vars-files/vars-use-trusted-ca-cert-for-apps.yml"
check_interpolation "windows1803-cell.yml"
check_interpolation "windows2012R2-cell.yml"
check_interpolation "name: windows2012R2-cell.yml windows2016-cell.yml" "windows2012R2-cell.yml" "-o windows2016-cell.yml"
check_interpolation "windows2016-cell.yml"
popd > /dev/null # operations
popd > /dev/null
exit $exit_code
}