xref: /aosp_15_r20/external/autotest/server/cros/cellular/callbox_utils/CallboxLookup.py (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright 2021 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4"""
5Dict that takes DUT host names as the key and returns the callbox
6that it is connected to. DUTs need to be added to this as they are
7set up.
8"""
9
10callboxes = {
11        'chromeos1-donutlab-callbox1-host1.cros':
12        'chromeos1-donutlab-callbox1.cros',
13        'chromeos1-donutlab-callbox1-host1':
14        'chromeos1-donutlab-callbox1.cros',
15        'chromeos1-donutlab-callbox2-host1.cros':
16        'chromeos1-donutlab-callbox2.cros',
17        'chromeos1-donutlab-callbox2-host1':
18        'chromeos1-donutlab-callbox2.cros',
19        'chromeos1-donutlab-callbox3-host1.cros':
20        'chromeos1-donutlab-callbox3.cros',
21        'chromeos1-donutlab-callbox3-host1':
22        'chromeos1-donutlab-callbox3.cros',
23        'chromeos1-donutlab-callbox4-host1.cros':
24        'chromeos1-donutlab-callbox4.cros',
25        'chromeos1-donutlab-callbox4-host1':
26        'chromeos1-donutlab-callbox4.cros',
27}
28