Skip to content

Commit 8a830dc

Browse files
committed
test: Add unit tests for bot entry point and test list generation
Unit tests document the basic known iut_config use cases and will protect them in case of future changes of the test list generation method.
1 parent e5fafc8 commit 8a830dc

8 files changed

+925
-2
lines changed

test/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import mocks

test/configs/config_external_bot.py

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
#
2+
# auto-pts - The Bluetooth PTS Automation Framework
3+
#
4+
# Copyright (c) 2018, Intel Corporation.
5+
#
6+
# This program is free software; you can redistribute it and/or modify it
7+
# under the terms and conditions of the GNU General Public License,
8+
# version 2, as published by the Free Software Foundation.
9+
#
10+
# This program is distributed in the hope it will be useful, but WITHOUT
11+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13+
# more details.
14+
#
15+
16+
# Sample user_config file
17+
# Apply your changes and rename it to config.py
18+
19+
from autopts.bot.iut_config.zephyr import iut_config
20+
21+
BotProjects = []
22+
23+
z = external_nrf52 = {
24+
'name': 'external',
25+
'bot_module': 'test/mocks/external_bot.py',
26+
}
27+
28+
# ****************************************************************************
29+
# AutoPTS configuration
30+
# ****************************************************************************
31+
z['auto_pts'] = {
32+
'server_ip': ['192.168.3.2', '192.168.3.2'],
33+
'local_ip': ['192.168.3.2', '192.168.3.2'],
34+
'cli_port': [65001, 65003],
35+
'srv_port': [65000, 65002],
36+
'project_path': '/path/to/project',
37+
'workspace': 'external-master',
38+
'database_file': 'path/to/externalTestCase.db',
39+
'store': True,
40+
'board': 'nrf52',
41+
'tty_file': 'ttyUSB', # fake tty file
42+
'debugger_snr': '123456789',
43+
'enable_max_logs': False,
44+
'retry': 2,
45+
'bd_addr': '',
46+
# 'ykush': '3', # 1|2|3|a
47+
'recovery': False,
48+
'superguard': 15, # minutes
49+
}
50+
51+
# ****************************************************************************
52+
# Git repositories configuration
53+
# ****************************************************************************
54+
z['git'] = {
55+
'external': {
56+
'path': 'path/to/repo',
57+
'remote': 'origin',
58+
'branch': 'master',
59+
'stash_changes': False,
60+
'update_repo': False,
61+
},
62+
}
63+
64+
# ****************************************************************************
65+
# Mailbox configuration
66+
#
67+
# To send an email report with test result summary
68+
# ****************************************************************************
69+
z['mail'] = {
70+
"sender": "john.doe@example.com",
71+
"smtp_host": 'smtp.example.com',
72+
"smtp_port": 587,
73+
"name": "John",
74+
"passwd": "<PASSWD>",
75+
"start_tls": False,
76+
"recipients": [
77+
"1234@example.com",
78+
"5678@example.com",
79+
],
80+
# "subject": "Custom email subject",
81+
}
82+
83+
# ****************************************************************************
84+
# Github configuration
85+
#
86+
# To commit and push logs to Github.
87+
# Configured ssh-agent must be started earlier.
88+
# ****************************************************************************
89+
z['githubdrive'] = {
90+
'path': 'path/to/repo',
91+
'remote': 'origin',
92+
'branch': 'main',
93+
'subdir': 'host/',
94+
'commit_msg': '{branch}_{timestamp}_{commit_sha}',
95+
}
96+
97+
# ****************************************************************************
98+
# Google Drive configuration
99+
#
100+
# To put the tests execution logs to Google Drive
101+
# ****************************************************************************
102+
z['gdrive'] = {
103+
"root_directory_id": "<GoogleDriveDirID>",
104+
"credentials_file": "/path/to/credentials.json",
105+
}
106+
107+
# ****************************************************************************
108+
# IUT configuration
109+
#
110+
# To apply test case specific changes in IUT configuration
111+
# ****************************************************************************
112+
z['iut_config'] = iut_config
113+
114+
BotProjects.append(external_nrf52)

test/configs/config_mynewt.py

+119
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
#
2+
# auto-pts - The Bluetooth PTS Automation Framework
3+
#
4+
# Copyright (c) 2018, Intel Corporation.
5+
#
6+
# This program is free software; you can redistribute it and/or modify it
7+
# under the terms and conditions of the GNU General Public License,
8+
# version 2, as published by the Free Software Foundation.
9+
#
10+
# This program is distributed in the hope it will be useful, but WITHOUT
11+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13+
# more details.
14+
#
15+
16+
# Sample user_config file
17+
# Apply your changes and rename it to config.py
18+
19+
from autopts.bot.iut_config.mynewt import iut_config
20+
21+
BotProjects = []
22+
23+
m = mynewt_nrf52 = {
24+
'name': 'mynewt'
25+
}
26+
27+
# ****************************************************************************
28+
# AutoPTS configuration
29+
# ****************************************************************************
30+
m['auto_pts'] = {
31+
'server_ip': ['192.168.0.2'],
32+
'client_port': 6001,
33+
'local_ip' : ['192.168.0.100'],
34+
'project_path': '/path/to/project',
35+
'workspace': 'Mynewt Nimble Host',
36+
'debugger_snr': 'xxxxxxxx',
37+
'tty_file': 'ttyUSB', # fake tty file
38+
'database_file': 'path/to/mynewtTestCase.db',
39+
'store': True,
40+
'board': 'nordic_pca10056',
41+
'enable_max_logs': False,
42+
'retry': 2,
43+
'bd_addr': '',
44+
# 'ykush': '3', # 1|2|3|a
45+
'recovery': False,
46+
'superguard': 15, # minutes
47+
}
48+
49+
# ****************************************************************************
50+
# Git repositories configuration
51+
# ****************************************************************************
52+
m['git'] = {
53+
'apache-mynewt-core': {
54+
'path': 'repos/apache-mynewt-core',
55+
'remote': 'origin',
56+
'branch': 'master',
57+
'stash_changes': False,
58+
},
59+
'apache-mynewt-nimble': {
60+
'path': 'repos/apache-mynewt-nimble',
61+
'remote': 'origin',
62+
'branch': 'master',
63+
'stash_changes': False,
64+
},
65+
'mcuboot': {
66+
'path': 'repos/mcuboot',
67+
'remote': 'origin',
68+
'branch': 'main',
69+
'stash_changes': False,
70+
},
71+
}
72+
73+
# ****************************************************************************
74+
# Mailbox configuration
75+
#
76+
# To send an email report with test result summary
77+
# ****************************************************************************
78+
m['mail'] = {
79+
"sender": "john.doe@example.com",
80+
"smtp_host": 'smtp.example.com',
81+
"smtp_port": 587,
82+
"name": "John",
83+
"passwd": "<PASSWD>",
84+
"start_tls": False,
85+
"recipients": [
86+
"1234@example.com",
87+
"5678@example.com",
88+
],
89+
}
90+
91+
# ****************************************************************************
92+
# Google Drive configuration
93+
#
94+
# To put the tests execution logs to Google Drive
95+
# ****************************************************************************
96+
m['gdrive'] = {
97+
"root_directory_id": "<GoogleDriveDirID>",
98+
"credentials_file": "/path/to/credentials.json",
99+
}
100+
101+
# ****************************************************************************
102+
# IUT configuration
103+
#
104+
# To apply test case specific changes in IUT configuration
105+
# ****************************************************************************
106+
107+
m['iut_config'] = iut_config
108+
109+
# ****************************************************************************
110+
# Scheduler configuration
111+
#
112+
# To run the tests periodically
113+
# ****************************************************************************
114+
# m['scheduler'] = {
115+
# 'monday': '10:20',
116+
# 'friday': '20:00',
117+
# }
118+
119+
BotProjects.append(mynewt_nrf52)

test/configs/config_zephyr.py

+124
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
#
2+
# auto-pts - The Bluetooth PTS Automation Framework
3+
#
4+
# Copyright (c) 2018, Intel Corporation.
5+
#
6+
# This program is free software; you can redistribute it and/or modify it
7+
# under the terms and conditions of the GNU General Public License,
8+
# version 2, as published by the Free Software Foundation.
9+
#
10+
# This program is distributed in the hope it will be useful, but WITHOUT
11+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13+
# more details.
14+
#
15+
16+
# Sample user_config file
17+
# Apply your changes and rename it to config.py
18+
19+
from autopts.bot.iut_config.zephyr import iut_config
20+
21+
BotProjects = []
22+
23+
z = zephyr_nrf52 = {
24+
'name': 'zephyr'
25+
}
26+
27+
# ****************************************************************************
28+
# AutoPTS configuration
29+
# ****************************************************************************
30+
z['auto_pts'] = {
31+
'server_ip': ['192.168.3.2', '192.168.3.2'],
32+
'local_ip': ['192.168.3.2', '192.168.3.2'],
33+
'cli_port': [65001, 65003],
34+
'srv_port': [65000, 65002],
35+
'project_path': '/path/to/project',
36+
'workspace': 'zephyr-master',
37+
'database_file': 'path/to/zephyrTestCase.db',
38+
'store': True,
39+
'board': 'nrf52',
40+
'tty_file': 'ttyUSB', # fake tty file
41+
'debugger_snr': '123456789',
42+
'enable_max_logs': False,
43+
'retry': 2,
44+
'bd_addr': '',
45+
# 'ykush': '3', # 1|2|3|a
46+
'recovery': False,
47+
'superguard': 15, # minutes
48+
}
49+
50+
# ****************************************************************************
51+
# Git repositories configuration
52+
# ****************************************************************************
53+
z['git'] = {
54+
'zephyr': {
55+
'path': 'path/to/repo',
56+
'remote': 'origin',
57+
'branch': 'master',
58+
'stash_changes': False,
59+
'update_repo': False,
60+
},
61+
}
62+
63+
# ****************************************************************************
64+
# Mailbox configuration
65+
#
66+
# To send an email report with test result summary
67+
# ****************************************************************************
68+
z['mail'] = {
69+
"sender": "john.doe@example.com",
70+
"smtp_host": 'smtp.example.com',
71+
"smtp_port": 587,
72+
"name": "John",
73+
"passwd": "<PASSWD>",
74+
"start_tls": False,
75+
"recipients": [
76+
"1234@example.com",
77+
"5678@example.com",
78+
],
79+
# "subject": "Custom email subject",
80+
}
81+
82+
# ****************************************************************************
83+
# Github configuration
84+
#
85+
# To commit and push logs to Github.
86+
# Configured ssh-agent must be started earlier.
87+
# ****************************************************************************
88+
z['githubdrive'] = {
89+
'path': 'path/to/repo',
90+
'remote': 'origin',
91+
'branch': 'main',
92+
'subdir': 'host/',
93+
'commit_msg': '{branch}_{timestamp}_{commit_sha}',
94+
}
95+
96+
# ****************************************************************************
97+
# Google Drive configuration
98+
#
99+
# To put the tests execution logs to Google Drive
100+
# ****************************************************************************
101+
z['gdrive'] = {
102+
"root_directory_id": "<GoogleDriveDirID>",
103+
"credentials_file": "/path/to/credentials.json",
104+
}
105+
106+
# ****************************************************************************
107+
# IUT configuration
108+
#
109+
# To apply test case specific changes in IUT configuration
110+
# ****************************************************************************
111+
112+
z['iut_config'] = iut_config
113+
114+
# ****************************************************************************
115+
# Scheduler configuration
116+
#
117+
# To run the tests periodically
118+
# ****************************************************************************
119+
z['scheduler'] = {
120+
'monday': '10:20',
121+
'friday': '20:00',
122+
}
123+
124+
BotProjects.append(zephyr_nrf52)

test/mocks/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import mocked_test_cases

0 commit comments

Comments
 (0)