Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Make agents wait for dev_set_config/WPS PBC before master discovery #1572

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1ec5ab4
agent: Move front radio configuration to AgentDB
orenvor Aug 4, 2020
a90ff11
agent: Move back radio configuration to AgentDB
orenvor Aug 4, 2020
e0f140c
agent: Move mem_only_psk configuration to AgentDB
orenvor Aug 5, 2020
9684b1c
agent: Move backhaul_max_vaps configuration to AgentDB
orenvor Aug 6, 2020
c6e86bf
agent: Move backhaul_network_enabled configuration to AgentDB
orenvor Aug 6, 2020
7e31c72
agent: Move backhaul_preferred_radio_band configuration to AgentDB
orenvor Aug 6, 2020
e4b3863
agent: Move operating_mode configuration to AgentDB
orenvor Aug 6, 2020
9a2d18a
agent: Move management_mode configuration to AgentDB
orenvor Aug 6, 2020
b5eff11
agent: Move certification_mode configuration to AgentDB
orenvor Aug 6, 2020
00e80bc
agent: Move stop_on_failure_attempts configuration to AgentDB
orenvor Aug 6, 2020
16907ff
agent: Move client_band_steering_enabled configuration to AgentDB
orenvor Aug 6, 2020
f479475
agent: Move client_optimal_path_roaming_enabled configuration to AgentDB
orenvor Aug 6, 2020
50c0a7f
agent: Move dfs_reentry_enabled configuration to AgentDB
orenvor Aug 6, 2020
b12b1dd
agent: Move client_optimal_path_prefer_signal_strength to AgentDB
orenvor Aug 6, 2020
0254f28
agent: Move client_11k_roaming_enabled configuration to AgentDB
orenvor Aug 6, 2020
cd995b3
agent: Move load_balancing_enabled configuration to AgentDB
orenvor Aug 6, 2020
869767a
agent: Move service_fairness_enabled configuration to AgentDB
orenvor Aug 6, 2020
0134cb2
agent: Move rdkb_extensions_enabled configuration to AgentDB
orenvor Aug 6, 2020
5881aa0
agent: remove unused onboarding configuration
orenvor Aug 10, 2020
dde1284
tlvf: beerocks_message::sPlatformSettings remove unused settings
orenvor Aug 9, 2020
ccac7e9
agent: Remove "platform_settings" local variable from son_slave_thread
orenvor Aug 11, 2020
12ca153
agent: Move wlan_settings configuration to AgentDB
orenvor Aug 11, 2020
a9638cc
fixup! agent: Move wlan_settings configuration to AgentDB
orenvor Aug 12, 2020
e355119
tlvf: PLATFORM_SON_SLAVE_REGISTER_RESPONSE remove unused fields
orenvor Aug 12, 2020
9f3ce07
test_flows.py: add timeouts to make tests pass
vitalii-komisarenko Aug 10, 2020
5610ca4
test_gw_repeater: disable operational test for repeaters
vitalii-komisarenko Aug 10, 2020
fb61391
test_flows: send dev_set_config to repeaters before tests
vitalii-komisarenko Aug 10, 2020
de689cf
agent: backhaul_manager: wait for dev_set_config in certification
vitalii-komisarenko Jul 28, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test_flows: send dev_set_config to repeaters before tests
https://jira.prplfoundation.org/browse/PPM-143

Send dev_set_config to the repeaters as a preparation to
changing agents logic to wait to dev_set_config or WPS PBC
before going to master discovery in certification mode.

Signed-off-by: Vitalii Komisarenko <[email protected]>
  • Loading branch information
vitalii-komisarenko committed Aug 13, 2020
commit fb61391793114bdbb482809b47f0bbd6a7309698
6 changes: 6 additions & 0 deletions tests/test_flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -1343,5 +1343,11 @@ def test_beacon_report_query(self):
t.start_test('init')
env.launch_environment_docker(options.unique_id, options.skip_init, options.tag)

for agent in env.agents:
debug("sending dev_set_config to an agent")
agent.cmd_reply("dev_set_config,program,map,backhaul,eth")

time.sleep(7)
morantr marked this conversation as resolved.
Show resolved Hide resolved

if t.run_tests(options.tests):
sys.exit(1)