Comparison Operators

buildtest supports several comparison operators as part of status check such as >, >=, <=, <, ==, !=. Each metric is compared with a reference value that can be useful when running performance checks. In this section we will cover the following comparison:

assert_ge: Greater Equal

buildtest can determine status check based on performance check. In this next example, we will run the STREAM memory benchmark and capture metrics named copy, scale add and triad from the output and perform an Assertion Greater Equal (assert_ge) with a reference value.

The assert_ge contains a list of assertions in the comparisons property where each metric name is referenced via name that is compared with the reference value defined by ref property. The comparison is metric_value >= ref, where metric_value is the value assigned to the metric name captured by the regular expression. The type field in the metric section is used for the type conversion which can be float, int, or string. The item is a numeric field used in match.group to retrieve the output from the regular expression search. The item must be non-negative number.

 1buildspecs:
 2  stream_test:
 3    type: script
 4    executor: generic.local.bash
 5    description: Run stream test with metrics example using assert greater equal
 6    env:
 7      OMP_NUM_THREADS: 4
 8    run: |
 9      wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10      gcc -openmp -o stream stream.c
11      ./stream
12    metrics:
13      copy:
14        type: float
15        regex:
16          exp: 'Copy:\s+(\S+)\s+.*'
17          stream: stdout
18          item: 1
19      scale:
20        type: float
21        regex:
22          exp: 'Scale:\s+(\S+)\s+.*'
23          stream: stdout
24          item: 1
25      add:
26        type: float
27        regex:
28          exp: 'Add:\s+(\S+)\s+.*'
29          stream: stdout
30          item: 1
31      triad:
32        type: float
33        regex:
34          exp: 'Triad:\s+(\S+)\s+.*'
35          stream: stdout
36          item: 1
37    status:
38      assert_ge:
39        mode: and
40        comparisons:
41        - name: copy
42          ref: 5000
43        - name: scale
44          ref: 5500
45        - name: add
46          ref: 6000
47        - name: triad
48          ref: 6500

buildtest will evaluate each assertion in the list and use a logical AND to determine the final status of assert_ge. The keyword mode is used to determine whether to perform a logical OR / AND operation when evaluating the final expression. The mode can be any of the values: [AND, OR, and, or]. If mode is ommitted the default is logical AND.

Let’s build this test, take a close look at the output of buildtest build and take note of the assertion statement.

buildtest build -b tutorials/perf_checks/assert_ge.yml
$ buildtest build -b tutorials/perf_checks/assert_ge.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-24186293-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/04/25 15:44:24                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  2.0                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmp0ns2hqkt/config.yml                              │
│ Test Directory:     /tmp/tmp0ns2hqkt/var/tests                               │
│ Report File:        /tmp/tmp0ns2hqkt/var/report.json                         │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/t ║
║ utorials/perf_checks/assert_ge.yml                                           ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1                                                                     ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  1
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/tutorials/perf_checks/assert_ge.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ stream_t │ script │ generic. │ None     │ None  │ None  │ Run      │ /home/d │
│ est/0c57 │        │ local.ba │          │       │       │ stream   │ ocs/che │
│ 7087     │        │ sh       │          │       │       │ test     │ ckouts/ │
│          │        │          │          │       │       │ with     │ readthe │
│          │        │          │          │       │       │ metrics  │ docs.or │
│          │        │          │          │       │       │ example  │ g/user_ │
│          │        │          │          │       │       │ using    │ builds/ │
│          │        │          │          │       │       │ assert   │ buildte │
│          │        │          │          │       │       │ greater  │ st/chec │
│          │        │          │          │       │       │ equal    │ kouts/d │
│          │        │          │          │       │       │          │ evel/tu │
│          │        │          │          │       │       │          │ torials │
│          │        │          │          │       │       │          │ /perf_c │
│          │        │          │          │       │       │          │ hecks/a │
│          │        │          │          │       │       │          │ ssert_g │
│          │        │          │          │       │       │          │ e.yml   │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
stream_test/0c577087: Creating Test Directory: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream_test/0c577087
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
stream_test/0c577087 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder              ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ stream_test/0c577087 │
└──────────────────────┘
stream_test/0c577087: Current Working Directory : /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream_test/0c577087/stage
stream_test/0c577087: Running Test via command: bash stream_test_build.sh
stream_test/0c577087: Test completed in 6.000974 seconds with returncode: 0
stream_test/0c577087: Writing output file -  /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream_test/0c577087/stream_test.out
stream_test/0c577087: Writing error file - /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream_test/0c577087/stream_test.err
stream_test/0c577087: testing metric: copy if 5861.7 >= 5000.0 - Check: True
stream_test/0c577087: testing metric: scale if 6678.4 >= 5500.0 - Check: True
stream_test/0c577087: testing metric: add if 8798.6 >= 6000.0 - Check: True
stream_test/0c577087: testing metric: triad if 8374.3 >= 6500.0 - Check: True
stream_test/0c577087: ge check: True
                                Test Summary                                 
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder              ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ stream_test/0c577087 │ generic.local.bash │ PASS   │ 0          │ 6.001   │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to report file: /tmp/tmp0ns2hqkt/var/report.json
Writing Logfile to /tmp/tmp0ns2hqkt/var/logs/buildtest_0aba4pbg.log

Let’s run buildtest inspect query -o stream_test to retrieve the test details and output of STREAM test.

buildtest inspect query -o stream_test
$ buildtest inspect query -o stream_test
─────────────── stream_test/0c577087-0679-4c46-959e-c27b96745e5c ───────────────
Executor: generic.local.bash
Description: Run stream test with metrics example using assert greater equal
State: PASS
Returncode: 0
Runtime: 6.000974 sec
Starttime: 2024/04/25 15:44:24
Endtime: 2024/04/25 15:44:30
Command: bash stream_test_build.sh
Test Script: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream_test/0c577087/stream_test.sh
Build Script: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream_test/0c577087/stream_test_build.sh
Output File: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream_test/0c577087/stream_test.out
Error File: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream_test/0c577087/stream_test.err
Log File: /tmp/tmp0ns2hqkt/var/logs/buildtest_0aba4pbg.log
     Metrics      
┏━━━━━━━┳━━━━━━━━┓
┃ Name  ┃ Value  ┃
┡━━━━━━━╇━━━━━━━━┩
│ copy  │ 5861.7 │
│ scale │ 6678.4 │
│ add   │ 8798.6 │
│ triad │ 8374.3 │
└───────┴────────┘
─ Output File: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ge/stream… ─
-------------------------------------------------------------                   
STREAM version $Revision: 5.10 $                                                
-------------------------------------------------------------                   
This system uses 8 bytes per array element.                                     
-------------------------------------------------------------                   
Array size = 10000000 (elements), Offset = 0 (elements)                         
Memory per array = 76.3 MiB (= 0.1 GiB).                                        
Total memory required = 228.9 MiB (= 0.2 GiB).                                  
Each kernel will be executed 10 times.                                          
 The *best* time for each kernel (excluding the first iteration)                
 will be used to compute the reported bandwidth.                                
-------------------------------------------------------------                   
Your clock granularity/precision appears to be 1 microseconds.                  
Each test below will take on the order of 24887 microseconds.                   
   (= 24887 clock ticks)                                                        
Increase the size of the arrays if this shows that                              
you are not getting at least 20 clock ticks per test.                           
-------------------------------------------------------------                   
WARNING -- The above is only a rough guideline.                                 
For best results, please be sure you know the                                   
precision of your system timer.                                                 
-------------------------------------------------------------                   
Function    Best Rate MB/s  Avg time     Min time     Max time                  
Copy:            5861.7     0.027361     0.027296     0.027476                  
Scale:           6678.4     0.024121     0.023958     0.024477                  
Add:             8798.6     0.027539     0.027277     0.027806                  
Triad:           8374.3     0.028824     0.028659     0.029036                  
-------------------------------------------------------------                   
Solution Validates: avg error less than 1.000000e-13 on all three arrays        
-------------------------------------------------------------

assert_gt: Greater Than

In this example, we perform a > operation, this can be done via assert_gt property

 1buildspecs:
 2  assert_gt_example:
 3    type: script
 4    executor: generic.local.bash
 5    description: Run stream test with metrics example using assert greater than.
 6    env:
 7      OMP_NUM_THREADS: 4
 8    run: |
 9      wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10      gcc -openmp -o stream stream.c
11      ./stream
12    metrics:
13      copy:
14        type: float
15        regex:
16          exp: 'Copy:\s+(\S+)\s+.*'
17          stream: stdout
18          item: 1
19      scale:
20        type: float
21        regex:
22          exp: 'Scale:\s+(\S+)\s+.*'
23          stream: stdout
24          item: 1
25      add:
26        type: float
27        regex:
28          exp: 'Add:\s+(\S+)\s+.*'
29          stream: stdout
30          item: 1
31      triad:
32        type: float
33        regex:
34          exp: 'Triad:\s+(\S+)\s+.*'
35          stream: stdout
36          item: 1
37    status:
38      assert_gt:
39        comparisons:
40        - name: copy
41          ref: 5000
42        - name: scale
43          ref: 5500
44        - name: add
45          ref: 6000
46        - name: triad
47          ref: 6500

assert_le: Less Than Equal

In this example, we perform a <= operation, this can be done via assert_le property

 1buildspecs:
 2  assert_le_example:
 3    type: script
 4    executor: generic.local.bash
 5    description: Run stream test with metrics example using assert less than equal
 6    env:
 7      OMP_NUM_THREADS: 4
 8    run: |
 9      wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10      gcc -openmp -o stream stream.c
11      ./stream
12    metrics:
13      copy:
14        type: float
15        regex:
16          exp: 'Copy:\s+(\S+)\s+.*'
17          stream: stdout
18          item: 1
19      scale:
20        type: float
21        regex:
22          exp: 'Scale:\s+(\S+)\s+.*'
23          stream: stdout
24          item: 1
25      add:
26        type: float
27        regex:
28          exp: 'Add:\s+(\S+)\s+.*'
29          stream: stdout
30          item: 1
31      triad:
32        type: float
33        regex:
34          exp: 'Triad:\s+(\S+)\s+.*'
35          stream: stdout
36          item: 1
37    status:
38      assert_le:
39        comparisons:
40        - name: copy
41          ref: 5000
42        - name: scale
43          ref: 5500
44        - name: add
45          ref: 6000
46        - name: triad
47          ref: 6500

assert_lt: Less Than

In this example, we perform a < operation, this can be done via assert_lt property

 1buildspecs:
 2  assert_lt_example:
 3    type: script
 4    executor: generic.local.bash
 5    description: Run stream test with metrics example using assert less than
 6    env:
 7      OMP_NUM_THREADS: 4
 8    run: |
 9      wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10      gcc -openmp -o stream stream.c
11      ./stream
12    metrics:
13      copy:
14        type: float
15        regex:
16          exp: 'Copy:\s+(\S+)\s+.*'
17          stream: stdout
18          item: 1
19      scale:
20        type: float
21        regex:
22          exp: 'Scale:\s+(\S+)\s+.*'
23          stream: stdout
24          item: 1
25      add:
26        type: float
27        regex:
28          exp: 'Add:\s+(\S+)\s+.*'
29          stream: stdout
30          item: 1
31      triad:
32        type: float
33        regex:
34          exp: 'Triad:\s+(\S+)\s+.*'
35          stream: stdout
36          item: 1
37    status:
38      assert_lt:
39        comparisons:
40        - name: copy
41          ref: 5000
42        - name: scale
43          ref: 5500
44        - name: add
45          ref: 6000
46        - name: triad
47          ref: 6500

assert_eq: Equal

buildtest can perform assert equality check with metrics to determine status of test. In this next example, we define four metrics x, y, first, and last which will be compared with its reference value. We introduce a new property assert_eq which is composed of list of assertions. Each reference is converted to its appropriate type (int, float, str).

 1buildspecs:
 2  assert_eq_example:
 3    type: script
 4    executor: generic.local.bash
 5    description: Test for assert equality
 6    vars:
 7      X: 1
 8      Y: 1.5
 9      first: John
10      last: Smith
11    run: |
12      echo "X: $X"
13      echo "Y: $Y"
14      echo "Name: $first $last"
15    metrics:
16      x:
17        type: int
18        regex:
19          stream: stdout
20          exp: 'X:\s+(\S+)\s+.*'
21          item: 1
22      y:
23        type: float
24        regex:
25          stream: stdout
26          exp: 'Y:\s+(\S+)\s+.*'
27          item: 1
28      first:
29        type: str
30        regex:
31          stream: stdout
32          exp: 'Name:\s+(\S+)\s+.*'
33          item: 1
34      last:
35        type: str
36        regex:
37          stream: stdout
38          exp: '(Smith)$'
39          item: 1
40    status:
41      assert_eq:
42        comparisons:
43        - name: x
44          ref: 1
45        - name: y
46          ref: 1.5
47        - name: first
48          ref: John
49        - name: last
50          ref: Smith

This test is expected to pass where all assertions are True. Let’s build the test and see the output

buildtest build -b tutorials/perf_checks/assert_eq.yml
$ buildtest build -b tutorials/perf_checks/assert_eq.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-24186293-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/04/25 15:44:32                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  2.0                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmp0ns2hqkt/config.yml                              │
│ Test Directory:     /tmp/tmp0ns2hqkt/var/tests                               │
│ Report File:        /tmp/tmp0ns2hqkt/var/report.json                         │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/t ║
║ utorials/perf_checks/assert_eq.yml                                           ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1                                                                     ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  1
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/tutorials/perf_checks/assert_eq.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ assert_e │ script │ generic. │ None     │ None  │ None  │ Test for │ /home/d │
│ q_exampl │        │ local.ba │          │       │       │ assert   │ ocs/che │
│ e/7a3439 │        │ sh       │          │       │       │ equality │ ckouts/ │
│ fb       │        │          │          │       │       │          │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/d │
│          │        │          │          │       │       │          │ evel/tu │
│          │        │          │          │       │       │          │ torials │
│          │        │          │          │       │       │          │ /perf_c │
│          │        │          │          │       │       │          │ hecks/a │
│          │        │          │          │       │       │          │ ssert_e │
│          │        │          │          │       │       │          │ q.yml   │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
assert_eq_example/7a3439fb: Creating Test Directory: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert_eq_example/7a3439fb
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
assert_eq_example/7a3439fb does not have any dependencies adding test to queue
   Builders Eligible to Run   
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                    ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ assert_eq_example/7a3439fb │
└────────────────────────────┘
assert_eq_example/7a3439fb: Current Working Directory : /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert_eq_example/7a3439fb/stage
assert_eq_example/7a3439fb: Running Test via command: bash assert_eq_example_build.sh
assert_eq_example/7a3439fb: Test completed in 0.005947 seconds with returncode: 0
assert_eq_example/7a3439fb: Writing output file -  /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert_eq_example/7a3439fb/assert_eq_example.out
assert_eq_example/7a3439fb: Writing error file - /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert_eq_example/7a3439fb/assert_eq_example.err
assert_eq_example/7a3439fb: testing metric: x if 1 == 1 - Check: True
assert_eq_example/7a3439fb: testing metric: y if 1.5 == 1.5 - Check: True
assert_eq_example/7a3439fb: testing metric: first if John == John - Check: True
assert_eq_example/7a3439fb: testing metric: last if Smith == Smith - Check: True
assert_eq_example/7a3439fb: eq check: True
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ assert_eq_example/7a343 │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ 9fb                     │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to report file: /tmp/tmp0ns2hqkt/var/report.json
Writing Logfile to /tmp/tmp0ns2hqkt/var/logs/buildtest_w3d_4rmi.log
buildtest inspect query -o assert_eq_example
$ buildtest inspect query -o assert_eq_example
──────────── assert_eq_example/7a3439fb-5b58-41f6-a621-f9158c56d773 ────────────
Executor: generic.local.bash
Description: Test for assert equality
State: PASS
Returncode: 0
Runtime: 0.005947 sec
Starttime: 2024/04/25 15:44:32
Endtime: 2024/04/25 15:44:32
Command: bash assert_eq_example_build.sh
Test Script: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert_eq_example/7a3439fb/assert_eq_example.sh
Build Script: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert_eq_example/7a3439fb/assert_eq_example_build.sh
Output File: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert_eq_example/7a3439fb/assert_eq_example.out
Error File: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert_eq_example/7a3439fb/assert_eq_example.err
Log File: /tmp/tmp0ns2hqkt/var/logs/buildtest_w3d_4rmi.log
     Metrics     
┏━━━━━━━┳━━━━━━━┓
┃ Name  ┃ Value ┃
┡━━━━━━━╇━━━━━━━┩
│ x     │ 1     │
│ y     │ 1.5   │
│ first │ John  │
│ last  │ Smith │
└───────┴───────┘
─ Output File: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq/assert… ─
X: 1                                                                            
Y: 1.5                                                                          
Name: John Smith

In the next example, we have two tests to highlight some exceptions. In the first test, we define an invalid metric name invalid_metric in assert_eq since this metric was not defined in metrics field, therefore this test will fail. The second test will fail because we have a mismatch in value captured by metric x which is 1 however the reference value is 2.

 1buildspecs:
 2  assert_eq_invalid_metric:
 3    type: script
 4    executor: generic.local.bash
 5    description: An invalid metric name will cause failure
 6    vars:
 7      X: 1
 8    run: |
 9      echo "X: $X"
10    metrics:
11      x:
12        type: int
13        regex:
14          stream: stdout
15          exp: 'X:\s+(\S+)\s+.*'
16          item: 1
17    status:
18      assert_eq:
19        comparisons:
20        - name: x
21          ref: 1
22        - name: invalid_metric
23          ref: 'hello'
24  assert_eq_mismatch:
25    type: script
26    executor: generic.local.bash
27    description: This test will fail because there is a mismatch in metric x assert equality
28    vars:
29      X: 1
30    run: |
31      echo "X: $X"
32    metrics:
33      x:
34        type: int
35        regex:
36          stream: stdout
37          exp: 'X:\s+(\S+)\s+.*'
38          item: 1
39    status:
40      assert_eq:
41        comparisons:
42        - name: x
43          ref: 2

Let’s build this test and see the output.

buildtest build -b tutorials/perf_checks/assert_eq_exceptions.yml
$ buildtest build -b tutorials/perf_checks/assert_eq_exceptions.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-24186293-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/04/25 15:44:33                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  2.0                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmp0ns2hqkt/config.yml                              │
│ Test Directory:     /tmp/tmp0ns2hqkt/var/tests                               │
│ Report File:        /tmp/tmp0ns2hqkt/var/report.json                         │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/t ║
║ utorials/perf_checks/assert_eq_exceptions.yml                                ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1                                                                     ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  1
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/tutorials/perf_checks/assert_eq_exceptions.yml: VALID
Total builder objects created: 2
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ assert_e │ script │ generic. │ None     │ None  │ None  │ An       │ /home/d │
│ q_invali │        │ local.ba │          │       │       │ invalid  │ ocs/che │
│ d_metric │        │ sh       │          │       │       │ metric   │ ckouts/ │
│ /b57555c │        │          │          │       │       │ name     │ readthe │
│ f        │        │          │          │       │       │ will     │ docs.or │
│          │        │          │          │       │       │ cause    │ g/user_ │
│          │        │          │          │       │       │ failure  │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/d │
│          │        │          │          │       │       │          │ evel/tu │
│          │        │          │          │       │       │          │ torials │
│          │        │          │          │       │       │          │ /perf_c │
│          │        │          │          │       │       │          │ hecks/a │
│          │        │          │          │       │       │          │ ssert_e │
│          │        │          │          │       │       │          │ q_excep │
│          │        │          │          │       │       │          │ tions.y │
│          │        │          │          │       │       │          │ ml      │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ assert_e │ script │ generic. │ None     │ None  │ None  │ This     │ /home/d │
│ q_mismat │        │ local.ba │          │       │       │ test     │ ocs/che │
│ ch/8c999 │        │ sh       │          │       │       │ will     │ ckouts/ │
│ 916      │        │          │          │       │       │ fail     │ readthe │
│          │        │          │          │       │       │ because  │ docs.or │
│          │        │          │          │       │       │ there is │ g/user_ │
│          │        │          │          │       │       │ a        │ builds/ │
│          │        │          │          │       │       │ mismatch │ buildte │
│          │        │          │          │       │       │ in       │ st/chec │
│          │        │          │          │       │       │ metric x │ kouts/d │
│          │        │          │          │       │       │ assert   │ evel/tu │
│          │        │          │          │       │       │ equality │ torials │
│          │        │          │          │       │       │          │ /perf_c │
│          │        │          │          │       │       │          │ hecks/a │
│          │        │          │          │       │       │          │ ssert_e │
│          │        │          │          │       │       │          │ q_excep │
│          │        │          │          │       │       │          │ tions.y │
│          │        │          │          │       │       │          │ ml      │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
assert_eq_invalid_metric/b57555cf: Creating Test Directory: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/b57555cf
assert_eq_mismatch/8c999916: Creating Test Directory: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/8c999916
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
assert_eq_invalid_metric/b57555cf does not have any dependencies adding test to queue
assert_eq_mismatch/8c999916 does not have any dependencies adding test to queue
      Builders Eligible to Run       
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ assert_eq_invalid_metric/b57555cf │
│ assert_eq_mismatch/8c999916       │
└───────────────────────────────────┘
assert_eq_invalid_metric/b57555cf: Current Working Directory : /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/b57555cf/stage
assert_eq_invalid_metric/b57555cf: Running Test via command: bash assert_eq_invalid_metric_build.sh
assert_eq_invalid_metric/b57555cf: Test completed in 0.006094 seconds with returncode: 0
assert_eq_invalid_metric/b57555cf: Writing output file -  /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/b57555cf/assert_eq_invalid_metric.out
assert_eq_invalid_metric/b57555cf: Writing error file - /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/b57555cf/assert_eq_invalid_metric.err
assert_eq_invalid_metric/b57555cf: testing metric: x if 1 == 1 - Check: True
assert_eq_invalid_metric/b57555cf: Unable to find metric: invalid_metric. List of valid metrics are the following: ['x']
assert_eq_invalid_metric/b57555cf: eq check: False
assert_eq_mismatch/8c999916: Current Working Directory : /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/8c999916/stage
assert_eq_mismatch/8c999916: Running Test via command: bash assert_eq_mismatch_build.sh
assert_eq_mismatch/8c999916: Test completed in 0.00593 seconds with returncode: 0
assert_eq_mismatch/8c999916: Writing output file -  /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/8c999916/assert_eq_mismatch.out
assert_eq_mismatch/8c999916: Writing error file - /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/8c999916/assert_eq_mismatch.err
assert_eq_mismatch/8c999916: testing metric: x if 1 == 2 - Check: False
assert_eq_mismatch/8c999916: eq check: False
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ assert_eq_invalid_metri │ generic.local.bash │ FAIL   │ 0          │ 0.006   │
│ c/b57555cf              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ assert_eq_mismatch/8c99 │ generic.local.bash │ FAIL   │ 0          │ 0.006   │
│ 9916                    │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 0/2 Percentage: 0.000%
Failed Tests: 2/2 Percentage: 100.000%


Adding 2 test results to report file: /tmp/tmp0ns2hqkt/var/report.json
Writing Logfile to /tmp/tmp0ns2hqkt/var/logs/buildtest_qwu4hhms.log

assert_ne: Not Equal

In this section, we will discuss the inverse equality operation Not Equal check (!=) with reference value.

We can use assert_ne property to perform != check, it works similar to assert_eq with data types int, float and str. In this example, we check the metrics x, y, first and last and each metric should pass. The reference value is converted to the data-type (type field) for each metrics

 1buildspecs:
 2  assert_ne_example:
 3    type: script
 4    executor: generic.local.bash
 5    description: Test for assert not equal
 6    vars:
 7      X: 1
 8      Y: 1.5
 9      first: John
10      last: Smith
11    run: |
12      echo "X: $X"
13      echo "Y: $Y"
14      echo "Name: $first $last"
15    metrics:
16      x:
17        type: int
18        regex:
19          stream: stdout
20          exp: 'X:\s+(\S+)\s+.*'
21          item: 1
22      y:
23        type: float
24        regex:
25          stream: stdout
26          exp: 'Y:\s+(\S+)\s+.*'
27          item: 1
28      first:
29        type: str
30        regex:
31          stream: stdout
32          exp: 'Name:\s+(\S+)\s+.*'
33          item: 1
34      last:
35        type: str
36        regex:
37          stream: stdout
38          exp: '(Smith)$'
39          item: 1
40    status:
41      assert_ne:
42        comparisons:
43        - name: x
44          ref: 2
45        - name: y
46          ref: 2.5
47        - name: first
48          ref: Robert
49        - name: last
50          ref: Brown

We expect this test to pass. In order to run this test, you can do the following

buildtest build -b tutorials/perf_checks/assert_ne.yml
$ buildtest build -b tutorials/perf_checks/assert_ne.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-24186293-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/04/25 15:44:34                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  2.0                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmp0ns2hqkt/config.yml                              │
│ Test Directory:     /tmp/tmp0ns2hqkt/var/tests                               │
│ Report File:        /tmp/tmp0ns2hqkt/var/report.json                         │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/t ║
║ utorials/perf_checks/assert_ne.yml                                           ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1                                                                     ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  1
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/tutorials/perf_checks/assert_ne.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ assert_n │ script │ generic. │ None     │ None  │ None  │ Test for │ /home/d │
│ e_exampl │        │ local.ba │          │       │       │ assert   │ ocs/che │
│ e/a5d7e2 │        │ sh       │          │       │       │ not      │ ckouts/ │
│ 5c       │        │          │          │       │       │ equal    │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/d │
│          │        │          │          │       │       │          │ evel/tu │
│          │        │          │          │       │       │          │ torials │
│          │        │          │          │       │       │          │ /perf_c │
│          │        │          │          │       │       │          │ hecks/a │
│          │        │          │          │       │       │          │ ssert_n │
│          │        │          │          │       │       │          │ e.yml   │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
assert_ne_example/a5d7e25c: Creating Test Directory: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ne/assert_ne_example/a5d7e25c
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
assert_ne_example/a5d7e25c does not have any dependencies adding test to queue
   Builders Eligible to Run   
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                    ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ assert_ne_example/a5d7e25c │
└────────────────────────────┘
assert_ne_example/a5d7e25c: Current Working Directory : /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ne/assert_ne_example/a5d7e25c/stage
assert_ne_example/a5d7e25c: Running Test via command: bash assert_ne_example_build.sh
assert_ne_example/a5d7e25c: Test completed in 0.006116 seconds with returncode: 0
assert_ne_example/a5d7e25c: Writing output file -  /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ne/assert_ne_example/a5d7e25c/assert_ne_example.out
assert_ne_example/a5d7e25c: Writing error file - /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_ne/assert_ne_example/a5d7e25c/assert_ne_example.err
assert_ne_example/a5d7e25c: testing metric: x if 1 != 2 - Check: True
assert_ne_example/a5d7e25c: testing metric: y if 1.5 != 2.5 - Check: True
assert_ne_example/a5d7e25c: testing metric: first if John != Robert - Check: True
assert_ne_example/a5d7e25c: testing metric: last if Smith != Brown - Check: True
assert_ne_example/a5d7e25c: ne check: True
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ assert_ne_example/a5d7e │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ 25c                     │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to report file: /tmp/tmp0ns2hqkt/var/report.json
Writing Logfile to /tmp/tmp0ns2hqkt/var/logs/buildtest_qajemklo.log

assert_range: Upper and Lower Bound

The assert_range property can be used to test performance for a metric given a lower and upper bound. This property expects one to specify lower and upper field which must be an integer or floating point number to perform comparison. buildtest will perform an assertion, if metric value is in the range specified by lower and upper, then test will pass. Shown below is an example using the assert_range property with stream benchmark.

 1buildspecs:
 2  assert_range_ex:
 3    type: script
 4    executor: generic.local.bash
 5    description: Example on assert_range
 6    env:
 7      OMP_NUM_THREADS: 4
 8    run: |
 9      wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10      gcc -openmp -o stream stream.c
11      ./stream
12    metrics:
13      copy:
14        type: float
15        regex:
16          exp: 'Copy:\s+(\S+)\s+.*'
17          stream: stdout
18          item: 1
19      scale:
20        type: float
21        regex:
22          exp: 'Scale:\s+(\S+)\s+.*'
23          stream: stdout
24          item: 1
25      add:
26        type: float
27        regex:
28          exp: 'Add:\s+(\S+)\s+.*'
29          stream: stdout
30          item: 1
31      triad:
32        type: float
33        regex:
34          exp: 'Triad:\s+(\S+)\s+.*'
35          stream: stdout
36          item: 1
37    status:
38      assert_range:
39        comparisons:
40        - name: copy
41          lower: 5000
42          upper: 20000
43        - name: scale
44          lower: 4500
45          upper: 20000
46        - name: add
47          lower: 4300
48          upper: 20000
49        - name: triad
50          lower: 5600
51          upper: 20000

Let’s build this test and see the output

buildtest build -b tutorials/perf_checks/assert_range.yml
$ buildtest build -b tutorials/perf_checks/assert_range.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-24186293-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/04/25 15:44:34                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  2.0                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmp0ns2hqkt/config.yml                              │
│ Test Directory:     /tmp/tmp0ns2hqkt/var/tests                               │
│ Report File:        /tmp/tmp0ns2hqkt/var/report.json                         │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/t ║
║ utorials/perf_checks/assert_range.yml                                        ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1                                                                     ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  1
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/tutorials/perf_checks/assert_range.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ assert_r │ script │ generic. │ None     │ None  │ None  │ Example  │ /home/d │
│ ange_ex/ │        │ local.ba │          │       │       │ on       │ ocs/che │
│ 1811de0e │        │ sh       │          │       │       │ assert_r │ ckouts/ │
│          │        │          │          │       │       │ ange     │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/d │
│          │        │          │          │       │       │          │ evel/tu │
│          │        │          │          │       │       │          │ torials │
│          │        │          │          │       │       │          │ /perf_c │
│          │        │          │          │       │       │          │ hecks/a │
│          │        │          │          │       │       │          │ ssert_r │
│          │        │          │          │       │       │          │ ange.ym │
│          │        │          │          │       │       │          │ l       │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
assert_range_ex/1811de0e: Creating Test Directory: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_range/assert_range_ex/1811de0e
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
assert_range_ex/1811de0e does not have any dependencies adding test to queue
  Builders Eligible to Run  
┏━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                  ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ assert_range_ex/1811de0e │
└──────────────────────────┘
assert_range_ex/1811de0e: Current Working Directory : /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_range/assert_range_ex/1811de0e/stage
assert_range_ex/1811de0e: Running Test via command: bash assert_range_ex_build.sh
assert_range_ex/1811de0e: Test completed in 1.392603 seconds with returncode: 0
assert_range_ex/1811de0e: Writing output file -  /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_range/assert_range_ex/1811de0e/assert_range_ex.out
assert_range_ex/1811de0e: Writing error file - /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/assert_range/assert_range_ex/1811de0e/assert_range_ex.err
assert_range_ex/1811de0e: testing metric: copy if 5000.0 <= 5875.2 <= 20000.0 - Check: True
assert_range_ex/1811de0e: testing metric: scale if 4500.0 <= 6681.2 <= 20000.0 - Check: True
assert_range_ex/1811de0e: testing metric: add if 4300.0 <= 8720.6 <= 20000.0 - Check: True
assert_range_ex/1811de0e: testing metric: triad if 5600.0 <= 8390.8 <= 20000.0 - Check: True
assert_range_ex/1811de0e: Range Check: True
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ assert_range_ex/1811de0 │ generic.local.bash │ PASS   │ 0          │ 1.393   │
│ e                       │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to report file: /tmp/tmp0ns2hqkt/var/report.json
Writing Logfile to /tmp/tmp0ns2hqkt/var/logs/buildtest_qbj96671.log

Note that performance results may vary on your system and depending on the metric value you may want to adjust the lower and upper bound to match your requirement.

contains, not_contains: Contains and Not Contains

Buildtest can perform status check with a list of reference values and check if metrics value is in the list. The property contains and not_contains can be used to perform this type of check. The ref property is a list of reference values that a metric must have to pass metrics check.

In example below we have two tests, the first test perform contains and not_contains on metrics x. We expect both status check will pass. The second test is expected to fail because metric x will store integer value 1 but the list has string equivalent ‘1’.

 1buildspecs:
 2  contains_and_not_contains:
 3    type: script
 4    executor: generic.local.bash
 5    description: Status check based on contains and not contains where test pass
 6    vars:
 7      X: 1
 8    run: |
 9      echo "X: $X"
10    metrics:
11      x:
12        type: int
13        regex:
14          stream: stdout
15          exp: 'X:\s+(\S+)\s+.*'
16          item: 1
17    status:
18      contains:
19        comparisons:
20        - name: x
21          ref: [1, 2, 4, 8]
22      not_contains:
23        comparisons:
24        - name: x
25          ref: [2, 4]
26  assert_contains_fail:
27    type: script
28    executor: generic.local.bash
29    description: Status check based on contains where test fails
30    vars:
31      X: 1
32    run: |
33      echo "X: $X"
34    metrics:
35      x:
36        type: int
37        regex:
38          stream: stdout
39          exp: 'X:\s+(\S+)\s+.*'
40          item: 1
41    status:
42      contains:
43        comparisons:
44        - name: x
45          ref: ['1', 2, 4, 8]

You can run this test, by running the following command

buildtest build -b tutorials/perf_checks/contains.yml
$ buildtest build -b tutorials/perf_checks/contains.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-24186293-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/04/25 15:44:36                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  2.0                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmp0ns2hqkt/config.yml                              │
│ Test Directory:     /tmp/tmp0ns2hqkt/var/tests                               │
│ Report File:        /tmp/tmp0ns2hqkt/var/report.json                         │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/t ║
║ utorials/perf_checks/contains.yml                                            ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1                                                                     ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  1
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/devel/tutorials/perf_checks/contains.yml: VALID
Total builder objects created: 2
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ contains │ script │ generic. │ None     │ None  │ None  │ Status   │ /home/d │
│ _and_not │        │ local.ba │          │       │       │ check    │ ocs/che │
│ _contain │        │ sh       │          │       │       │ based on │ ckouts/ │
│ s/37456f │        │          │          │       │       │ contains │ readthe │
│ 34       │        │          │          │       │       │ and not  │ docs.or │
│          │        │          │          │       │       │ contains │ g/user_ │
│          │        │          │          │       │       │ where    │ builds/ │
│          │        │          │          │       │       │ test     │ buildte │
│          │        │          │          │       │       │ pass     │ st/chec │
│          │        │          │          │       │       │          │ kouts/d │
│          │        │          │          │       │       │          │ evel/tu │
│          │        │          │          │       │       │          │ torials │
│          │        │          │          │       │       │          │ /perf_c │
│          │        │          │          │       │       │          │ hecks/c │
│          │        │          │          │       │       │          │ ontains │
│          │        │          │          │       │       │          │ .yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ assert_c │ script │ generic. │ None     │ None  │ None  │ Status   │ /home/d │
│ ontains_ │        │ local.ba │          │       │       │ check    │ ocs/che │
│ fail/887 │        │ sh       │          │       │       │ based on │ ckouts/ │
│ 579ff    │        │          │          │       │       │ contains │ readthe │
│          │        │          │          │       │       │ where    │ docs.or │
│          │        │          │          │       │       │ test     │ g/user_ │
│          │        │          │          │       │       │ fails    │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/d │
│          │        │          │          │       │       │          │ evel/tu │
│          │        │          │          │       │       │          │ torials │
│          │        │          │          │       │       │          │ /perf_c │
│          │        │          │          │       │       │          │ hecks/c │
│          │        │          │          │       │       │          │ ontains │
│          │        │          │          │       │       │          │ .yml    │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
contains_and_not_contains/37456f34: Creating Test Directory: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/contains/contains_and_not_contains/37456f34
assert_contains_fail/887579ff: Creating Test Directory: /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/contains/assert_contains_fail/887579ff
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
contains_and_not_contains/37456f34 does not have any dependencies adding test to queue
assert_contains_fail/887579ff does not have any dependencies adding test to queue
       Builders Eligible to Run       
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ contains_and_not_contains/37456f34 │
│ assert_contains_fail/887579ff      │
└────────────────────────────────────┘
contains_and_not_contains/37456f34: Current Working Directory : /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/contains/contains_and_not_contains/37456f34/stage
contains_and_not_contains/37456f34: Running Test via command: bash contains_and_not_contains_build.sh
contains_and_not_contains/37456f34: Test completed in 0.005948 seconds with returncode: 0
contains_and_not_contains/37456f34: Writing output file -  /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/contains/contains_and_not_contains/37456f34/contains_and_not_contains.out
contains_and_not_contains/37456f34: Writing error file - /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/contains/contains_and_not_contains/37456f34/contains_and_not_contains.err
contains_and_not_contains/37456f34: testing metric: x if 1 in [1, 2, 4, 8] - Check: True
contains_and_not_contains/37456f34: Contains Check: True
contains_and_not_contains/37456f34: testing metric: x if 1 not in [2, 4] - Check: True
contains_and_not_contains/37456f34: Not Contains Check: True
assert_contains_fail/887579ff: Current Working Directory : /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/contains/assert_contains_fail/887579ff/stage
assert_contains_fail/887579ff: Running Test via command: bash assert_contains_fail_build.sh
assert_contains_fail/887579ff: Test completed in 0.006027 seconds with returncode: 0
assert_contains_fail/887579ff: Writing output file -  /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/contains/assert_contains_fail/887579ff/assert_contains_fail.out
assert_contains_fail/887579ff: Writing error file - /tmp/tmp0ns2hqkt/var/tests/generic.local.bash/contains/assert_contains_fail/887579ff/assert_contains_fail.err
assert_contains_fail/887579ff: testing metric: x if 1 in ['1', 2, 4, 8] - Check: False
assert_contains_fail/887579ff: Contains Check: False
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ contains_and_not_contai │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ ns/37456f34             │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ assert_contains_fail/88 │ generic.local.bash │ FAIL   │ 0          │ 0.006   │
│ 7579ff                  │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/2 Percentage: 50.000%
Failed Tests: 1/2 Percentage: 50.000%


Adding 2 test results to report file: /tmp/tmp0ns2hqkt/var/report.json
Writing Logfile to /tmp/tmp0ns2hqkt/var/logs/buildtest_isuekoju.log