tests/

directory
v1.6.5-prerelease.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 7, 2024 License: Apache-2.0

README

RHCS Provider Function Verification Testing

This package is the automation package for Function Verification Testing on the terraform rhcs provider.

Structure of tests

tests
|____e2e      
    |____cluster_creation_test.go                 ---- handles cluster creation by profile
    |____cluster_destroy_test.go
    |____e2e_suite_test.go                        ---- test suite for all the e2e tests
    |____idps_test.go
    |____...
    |____machine_pool_test.go
    |____verfication_post_day1_test.go            ---- post day1 verification tests
|____utils
|    |____exec                                    ---- exec will package the tf commands like init state apply destroy
|    |    |____tf.go
|    |    |____cluster.go
|    |    |____...
|    |    |____machine_pool.go
|    |    |____idp.go
|    |____helper                                  ---- helper will provide support functions during testing
|    |    |_____helper.go
|    |____openshift                               ---- openshift will support e2e check in cluster
|    |____constants                               ---- all of the constants will be defined in constants
|         |____constants.go
|       
|____prow_ci.sh
|
|____tf-manifests                                 ---- tf-manifests folder will contain all of the tf configuration files, separated by provider
      |__aws                                      ---- Prepare user data prepared on AWS for cluster creation 
      |     |__vpc                                ---- vpc created on AWS for cluster creation
      |     |__account-roles
      |     |__proxy
      |     |__…
      |__rhcs                                     ---- rhcs provider, separated by resources
      |     |__clusters                           ---- clusters creation separated by resource key
      |     |   	|___rosa-classic
      |     |     |___osd-ccs
      |     |     |___rosa-hcp
      |     |     |___aro
      |     |___idps                              ---- idps creation
      |     |___machine-pools                     ---- machinepools creation
      |__azure                                    ---- azure provider

Contibute to terraform rhcs provider tests

Please read the structure and contribte code to the correct place

Contribute to day1 case
  • Define manifests files under terraform-provider-rhcs/tests/tf-manifests/rhcs/clusters
  • Define profile in terraform-provider-rhcs/tests/ci/profiles/tf_cluster_profile.yml
  • If any other data can be created by terrafom provder, define steps under terraform-provider-rhcs/tests/tf-manifests/<provider>/<resource name>
  • Define prepare steps according to the profile in terraform-provider-rhcs/tests/ci/profile_handler.go
Day1 cases only do creation step, we have to define a day1 case to verify the day1 works well
  • Create the case in terraform-provider-rhcs/tests/e2e/<feature name>_test.go
  • Label the case with CI.Day1Post
  • Label the case with importance CI.Critical
  • Don't need to run creation step, just in BeforeEach step call function PrepareRHCSClusterByProfileENV() it will load the clusterID prepared
  • Code for checking steps only in the case
Contribute to day2
  • Create the case in terraform-provider-rhcs/tests/e2e/<feature name>_test.go
  • Label the case with CI.Day2
  • Label the case with importance CI.Critical or CI.High
  • Don't need to run creation step, just in BeforeEach step call function PrepareRHCSClusterByProfileENV() it will load the clusterID prepared
  • Code for day2 actions and check step
  • Every case need to recover the cluster after the case run finished unless it's un-recoverable
Contribute to day3
  • day3 cases means the cases is destructive and cannot recover anymore. The actions will affect other cases like default worker pool deletion, it will affect a lot of day1 post verification
  • Create the case in terraform-provider-rhcs/tests/e2e/<feature name>_test.go
  • Label the case with CI.Day3
  • Label the case with importance CI.Critical or CI.High
  • Don't need to run creation step, just in BeforeEach step call function PrepareRHCSClusterByProfileENV() it will load the clusterID prepared
  • Code for day3 actions and check step
  • Every case need to recover the cluster after the case run finished unless it's un-recoverable
Labels
  • Label your case with the CI.Feature<feature name> defined in terraform-provider-rhcs/tests/ci/labels.go
  • Label your case with importance defined in terraform-provider-rhcs/tests/ci/labels.go
  • Label your case with CI.Day1Post/CI.Day2/CI.Day3 according to the case runtime
  • Label your case with CI.Exclude if it fails CI all the time and you can't fix it in time

Running

The cluster created by the automation scripts are shared across all of the test cases. Why we need do this?.

Prerequisite

Please read repo's README.md For the test cases, we need make install to make the terraform provider installed to local

Global variables
RHCS_TOKEN

To execute the test cases, we need to prepare the offline token. Get the offline token and export as an ENV variable:

  • export RHCS_TOKEN=<offline token>
RHCS_URL

The default rhcs enviroment is staging. To specify running on production, integration or local, you can export the global variable:

  • export RHCS_URL = "https://api.openshift.com"
CLUSTER_PROFILE

To declare the profile cluster type to be run, use the below variable::

  • export CLUSTER_PROFILE = <rosa-tf-profile>
Running a local CI simulation

This feature allows for running tests through a case filter to simulate CI. Anyone can customize the case label filter to select the specific cases that would be run.

  • Prepare cluster with profile
    • Check file terraform-provider-rhcs/tests/ci/profiles/tf_cluster_profile.yml to find the supported profiles and detailed configuration
      • export CLUSTER_PROFILE=<profile name>
    • Export the token
      • export RHCS_TOKEN=<rhcs token>
    • Set up the OCM URL (if different from staging)
      • export RHCS_URL="https://api.openshift.com"
    • Run ginkgo run command
      • ginkgo run --label-filter day1-prepare --timeout 2h tests/e2e
  • Run day2 day1 post cases with profile
    • Check file terraform-provider-rhcs/tests/ci/profiles/tf_cluster_profile.yml to find the supported profiles and detailed configuration
      • export CLUSTER_PROFILE=<profile name> #If it had been run, then you can skip
    • Export the token
      • export RHCS_TOKEN=<rhcs token> #If it had been run, then you can skip
    • Set up the OCM URL (if different from staging)
      • export RHCS_URL="https://api.openshift.com"
    • Run ginkgo run command
      • ginkgo run --label-filter '(Critical,High)&&(day1-post,day2)&&!Exclude' tests/e2e
  • Run a specified case to debug
    • ginkgo -focus <case id> tests/e2e
  • Run destroy with profile
    • Check file terraform-provider-rhcs/tests/ci/profiles/tf_cluster_profile.yml to find the supported profiles and detailed configuration
      • export CLUSTER_PROFILE=<profile name> #If it had been run, then you can skip
    • Export the token
      • export RHCS_TOKEN=<rhcs token> #If it had been run, then you can skip
    • Set up the OCM URL (if different from staging)
      • export RHCS_URL="https://api.openshift.com"
    • Run ginkgo run command
      • ginkgo run --label-filter destroy tests/e2e
Set log level
  • Log level defined in terraform-provider-rhcs/tests/utils/utils/log/logger.go
logger.SetLevel(logging.InfoLevel)

Directories

Path Synopsis
utils
cms
log

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL