1#!/usr/bin/env bash
2#
3# Copyright (c) 2023 Nordic Semiconductor ASA
4#
5# SPDX-License-Identifier: Apache-2.0
6
7SIMULATION_ID="cap_unicast_ac_11_ii"
8VERBOSITY_LEVEL=2
9EXECUTE_TIMEOUT=60
10
11source ${ZEPHYR_BASE}/tests/bsim/sh_common.source
12
13cd ${BSIM_OUT_PATH}/bin
14
15function Execute_AC_11_II() {
16    printf "\n\n======== Running CAP AC_11_II with %s =========\n\n" $1
17
18    Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \
19        -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_11_ii \
20        -RealEncryption=1 -rs=23 -D=3 -argstest sink_preset $1 source_preset $2
21
22    Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \
23        -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \
24        -RealEncryption=1 -rs=46 -D=3
25
26    Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \
27        -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=cap_acceptor_unicast \
28        -RealEncryption=1 -rs=69 -D=3
29
30    # Simulation time should be larger than the WAIT_TIME in common.h
31    Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \
32        -D=3 -sim_length=60e6 ${@:3}
33
34    wait_for_background_jobs
35}
36
37set -e # Exit on error
38
39Execute_AC_11_II 8_1_1 8_1_1
40Execute_AC_11_II 8_2_1 8_2_1
41Execute_AC_11_II 16_1_1 16_1_1
42Execute_AC_11_II 16_2_1 16_2_1
43Execute_AC_11_II 24_1_1 24_1_1
44Execute_AC_11_II 24_2_1 24_2_1
45Execute_AC_11_II 32_1_1 32_1_1
46Execute_AC_11_II 32_2_1 32_2_1
47# Execute_AC_11_II 441_1_1 441_1_1 # ASSERTION FAIL [iso_interval_us >= cig->c_sdu_interval]
48# Execute_AC_11_II 441_2_1 441_2_1 # ASSERTION FAIL [iso_interval_us >= cig->c_sdu_interval]
49Execute_AC_11_II 48_1_1 48_1_1
50Execute_AC_11_II 48_2_1 48_2_1
51Execute_AC_11_II 48_3_1 48_3_1
52Execute_AC_11_II 48_4_1 48_4_1
53Execute_AC_11_II 48_5_1 48_5_1
54Execute_AC_11_II 48_6_1 48_6_1
55