We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 340ab54 commit e8a0c3dCopy full SHA for e8a0c3d
1 file changed
tests/test_api_v1_user_auth_server_radius.py
@@ -3,5 +3,18 @@
3
class APIUnitTestUserAuthServerRadius(unit_test_framework.APIUnitTest):
4
url = "/api/v1/user/auth_server/radius"
5
get_payloads = [{}]
6
+ post_payloads = [
7
+ {
8
+ "name": "UNIT_TEST_RADIUS",
9
+ "host": "123",
10
+ "radius_secret": "testsecret",
11
+ "radius_auth_port": 1812,
12
+ "radius_acct_port": 1813,
13
+ "radius_protocol": "MSCHAPv2",
14
+ "radius_timeout": 5,
15
+ "radius_nasip_attribute": "wan"
16
+ }
17
+ ]
18
+ delete_payloads = [{"name": "UNIT_TEST_RADIUS"}]
19
20
APIUnitTestUserAuthServerRadius()
0 commit comments