Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Current »

  • Community Forum: http://community.pbspro.org/t/tunable-test-parameters/1535
  • Use Cases:
    • Test developers need a user friendly way to specify configurable test parameters at test case level.
    • Test executors need a way to configure the test parameters.
  • Summary : 
  • Test Framework should provide tests with option to scale & tune tests based on inputs.
    • Example:
      • Test parameters for a test can be
        • No_of_jobs which can be scaled up like 100k jobs on cloud/good configuration machine and scaled down to 1k jobs on a vm.
        •  qsub_exec_script which can be a path to the job script to be used for job submission.
  •  Interface 1: @testparams(<param1>=<value1>,<param2>=<value2>)

      Synopsis : @testparams is a decorator to specify default values of test specific parameters

      Details: 

      1. Test Parameters can be specified using testparams decorator in key value pair format. The parameters and its values will be stored in self.conf dictionary of the test case.   

          Example: 

          @testparams(x=y,a=b)

          Can be accessed inside testcase as self.conf['x']

      2. As the decorator stores the key value pair data in self.conf dictionary it can be modified through pbs_benchpress.

          Example:

          pbs_benchpress -p x=z,a=c


  •  Interface 2: Test Params info added to pbs_benchpress -i --verbose -t <PBSTestSuite>

           Synopsis : The test parameters will be added to test doc string and can be viewed by pbs_benchpress -i --verbose -t <pbstestsuite>

           Example:

           If test runner wants to know which parameters of the test can be modified he can do that by running

           pbs_benchpress -i --verbose -t Teststat

                                  Test Case Doc: 

                                  <doc string>

                                  Test Params:

                                  x=y

                                  a=b



OSS Site Map

Project Documentation Main Page

Developer Guide Pages


  • No labels