<?xml version="1.0" encoding="UTF-8"?>
<robot generator="Robot 7.4.2 (Python 3.11.10 on linux)" generated="2026-04-19T00:24:17.117867" rpa="false" schemaversion="5">
<suite id="s1" name="aaa-authn.txt" source="/w/workspace/aaa-csit-1node-authn-all-vanadium/test/csit/suites/aaa/authn/Restconf_Basic_Auth.robot">
<test id="s1-t1" name="No RESTCONF Credentials" line="38">
<kw name="Auth Should Fail">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:17.295069" level="INFO">@{auth} = [  |  ]</msg>
<var>@{auth}</var>
<arg>${user}</arg>
<arg>${password}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:17.294592" elapsed="0.000521"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:17.295625" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5ff02a250&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:17.295263" elapsed="0.000611"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:17.299148" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:17.500512" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:17.903015" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:17.905304" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${url}</arg>
<arg>expected_status=401</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:17.296028" elapsed="0.619061">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<kw name="Convert To Upper Case" owner="String">
<var>${header_value}</var>
<arg>${resp.headers}[www-authenticate]</arg>
<doc>Converts string to upper case.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:17.915338" elapsed="0.000037"/>
</kw>
<kw name="Should Contain" owner="BuiltIn">
<arg>${header_value}</arg>
<arg>BASIC</arg>
<doc>Fails if ``container`` does not contain ``item`` one or more times.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:17.915497" elapsed="0.000025"/>
</kw>
<kw name="Log" owner="BuiltIn">
<arg>${resp.content}</arg>
<doc>Logs the given message with the given level.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:17.915637" elapsed="0.000023"/>
</kw>
<arg>${RESTCONF_TEST_URL}</arg>
<arg>${EMPTY}</arg>
<arg>${EMPTY}</arg>
<doc>Checks the given HTTP RESTCONF response for authentication failure</doc>
<status status="FAIL" start="2026-04-19T00:24:17.291019" elapsed="0.624797">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>Given no credentials GET RESTCONF fails</doc>
<status status="FAIL" start="2026-04-19T00:24:17.290235" elapsed="0.625784">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<test id="s1-t2" name="Incorrect RESTCONF Password" line="42">
<kw name="Auth Should Fail">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:17.917765" level="INFO">@{auth} = [ admin | bad_pw ]</msg>
<var>@{auth}</var>
<arg>${user}</arg>
<arg>${password}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:17.917292" elapsed="0.000507"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:17.918312" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5ff0c91d0&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:17.917933" elapsed="0.000580"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:17.921351" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:18.122918" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:18.525663" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:18.528245" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${url}</arg>
<arg>expected_status=401</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:17.918645" elapsed="0.613637">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<kw name="Convert To Upper Case" owner="String">
<var>${header_value}</var>
<arg>${resp.headers}[www-authenticate]</arg>
<doc>Converts string to upper case.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:18.532645" elapsed="0.000060"/>
</kw>
<kw name="Should Contain" owner="BuiltIn">
<arg>${header_value}</arg>
<arg>BASIC</arg>
<doc>Fails if ``container`` does not contain ``item`` one or more times.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:18.532863" elapsed="0.000030"/>
</kw>
<kw name="Log" owner="BuiltIn">
<arg>${resp.content}</arg>
<doc>Logs the given message with the given level.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:18.533034" elapsed="0.000028"/>
</kw>
<arg>${RESTCONF_TEST_URL}</arg>
<arg>${ADMIN_USER}</arg>
<arg>${BAD_PW}</arg>
<doc>Checks the given HTTP RESTCONF response for authentication failure</doc>
<status status="FAIL" start="2026-04-19T00:24:17.916788" elapsed="0.616448">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>Given incorrect password GET RESTCONF fails</doc>
<status status="FAIL" start="2026-04-19T00:24:17.916263" elapsed="0.617218">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<test id="s1-t3" name="Incorrect RESTCONF Username" line="46">
<kw name="Auth Should Fail">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:18.535989" level="INFO">@{auth} = [ bad_user | admin ]</msg>
<var>@{auth}</var>
<arg>${user}</arg>
<arg>${password}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:18.535245" elapsed="0.000785"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:18.536672" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5ff0d6f10&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:18.536184" elapsed="0.001084"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:18.540369" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:18.741832" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.144477" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.146808" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${url}</arg>
<arg>expected_status=401</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:18.537441" elapsed="0.614622">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<kw name="Convert To Upper Case" owner="String">
<var>${header_value}</var>
<arg>${resp.headers}[www-authenticate]</arg>
<doc>Converts string to upper case.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:19.152441" elapsed="0.000061"/>
</kw>
<kw name="Should Contain" owner="BuiltIn">
<arg>${header_value}</arg>
<arg>BASIC</arg>
<doc>Fails if ``container`` does not contain ``item`` one or more times.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:19.152860" elapsed="0.000063"/>
</kw>
<kw name="Log" owner="BuiltIn">
<arg>${resp.content}</arg>
<doc>Logs the given message with the given level.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:19.153175" elapsed="0.000050"/>
</kw>
<arg>${RESTCONF_TEST_URL}</arg>
<arg>${BAD_USER}</arg>
<arg>${ADMIN_PW}</arg>
<doc>Checks the given HTTP RESTCONF response for authentication failure</doc>
<status status="FAIL" start="2026-04-19T00:24:18.534656" elapsed="0.618815">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>Given incorrect username GET RESTCONF fails</doc>
<status status="FAIL" start="2026-04-19T00:24:18.533954" elapsed="0.619917">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<test id="s1-t4" name="Correct RESTCONF Credentials" line="50">
<kw name="Auth Should Pass">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:19.156459" level="INFO">@{auth} = [ admin | admin ]</msg>
<var>@{auth}</var>
<arg>${user}</arg>
<arg>${password}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:19.155995" elapsed="0.000498"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:19.156985" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5ff0ed790&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:19.156622" elapsed="0.000548"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:19.159644" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.360897" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.763397" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.766064" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${url}</arg>
<arg>expected_status=200</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:19.157294" elapsed="0.614315">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<arg>${RESTCONF_TEST_URL}</arg>
<arg>${ADMIN_USER}</arg>
<arg>${ADMIN_PW}</arg>
<doc>Checks the given HTTP RESTCONF response for authentication failure</doc>
<status status="FAIL" start="2026-04-19T00:24:19.155518" elapsed="0.616489">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>Given correct credentials GET RESTCONF succeeds</doc>
<status status="FAIL" start="2026-04-19T00:24:19.154587" elapsed="0.617778">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<test id="s1-t5" name="No Jolokia REST Credentials" line="54">
<kw name="Auth Should Fail">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:19.778891" level="INFO">@{auth} = [  |  ]</msg>
<var>@{auth}</var>
<arg>${user}</arg>
<arg>${password}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:19.778188" elapsed="0.000746"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:19.779626" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5ff0f5fd0&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:19.779151" elapsed="0.000757"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:19.782966" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:19.984352" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:20.386640" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:20.388735" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${url}</arg>
<arg>expected_status=401</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:19.780105" elapsed="0.612167">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<kw name="Convert To Upper Case" owner="String">
<var>${header_value}</var>
<arg>${resp.headers}[www-authenticate]</arg>
<doc>Converts string to upper case.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:20.392551" elapsed="0.000042"/>
</kw>
<kw name="Should Contain" owner="BuiltIn">
<arg>${header_value}</arg>
<arg>BASIC</arg>
<doc>Fails if ``container`` does not contain ``item`` one or more times.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:20.393067" elapsed="0.000034"/>
</kw>
<kw name="Log" owner="BuiltIn">
<arg>${resp.content}</arg>
<doc>Logs the given message with the given level.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:20.393252" elapsed="0.000029"/>
</kw>
<arg>${JOLOKIA_TEST_URL}</arg>
<arg>${EMPTY}</arg>
<arg>${EMPTY}</arg>
<doc>Checks the given HTTP RESTCONF response for authentication failure</doc>
<status status="FAIL" start="2026-04-19T00:24:19.773459" elapsed="0.619986">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>Given no credentials, HTTP GET on a Jolokia endpoint fails</doc>
<status status="FAIL" start="2026-04-19T00:24:19.772708" elapsed="0.621139">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<test id="s1-t6" name="Incorrect Jolokia REST Password" line="58">
<kw name="Auth Should Fail">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:20.396132" level="INFO">@{auth} = [ admin | bad_pw ]</msg>
<var>@{auth}</var>
<arg>${user}</arg>
<arg>${password}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:20.395529" elapsed="0.000644"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:20.396819" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5ff116050&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:20.396356" elapsed="0.000895"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:20.399923" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:20.601270" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.003832" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.006072" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${url}</arg>
<arg>expected_status=401</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:20.397431" elapsed="0.614422">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<kw name="Convert To Upper Case" owner="String">
<var>${header_value}</var>
<arg>${resp.headers}[www-authenticate]</arg>
<doc>Converts string to upper case.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:21.012706" elapsed="0.000078"/>
</kw>
<kw name="Should Contain" owner="BuiltIn">
<arg>${header_value}</arg>
<arg>BASIC</arg>
<doc>Fails if ``container`` does not contain ``item`` one or more times.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:21.013046" elapsed="0.000050"/>
</kw>
<kw name="Log" owner="BuiltIn">
<arg>${resp.content}</arg>
<doc>Logs the given message with the given level.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:21.013322" elapsed="0.000021"/>
</kw>
<arg>${JOLOKIA_TEST_URL}</arg>
<arg>${JOLOKIA_USER}</arg>
<arg>${BAD_PW}</arg>
<doc>Checks the given HTTP RESTCONF response for authentication failure</doc>
<status status="FAIL" start="2026-04-19T00:24:20.394961" elapsed="0.618507">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>Given incorrect password, GET on a Jolokia endpoint fails</doc>
<status status="FAIL" start="2026-04-19T00:24:20.394155" elapsed="0.619493">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<test id="s1-t7" name="Incorrect Jolokia REST Username" line="62">
<kw name="Auth Should Fail">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:21.015494" level="INFO">@{auth} = [ bad_user | admin ]</msg>
<var>@{auth}</var>
<arg>${user}</arg>
<arg>${password}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:21.015069" elapsed="0.000453"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:21.015985" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5ff116dd0&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:21.015633" elapsed="0.000586"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:21.018737" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.219931" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.622892" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.625332" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${url}</arg>
<arg>expected_status=401</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:21.016350" elapsed="0.614194">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<kw name="Convert To Upper Case" owner="String">
<var>${header_value}</var>
<arg>${resp.headers}[www-authenticate]</arg>
<doc>Converts string to upper case.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:21.630984" elapsed="0.000062"/>
</kw>
<kw name="Should Contain" owner="BuiltIn">
<arg>${header_value}</arg>
<arg>BASIC</arg>
<doc>Fails if ``container`` does not contain ``item`` one or more times.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:21.631265" elapsed="0.000045"/>
</kw>
<kw name="Log" owner="BuiltIn">
<arg>${resp.content}</arg>
<doc>Logs the given message with the given level.</doc>
<status status="NOT RUN" start="2026-04-19T00:24:21.631530" elapsed="0.000045"/>
</kw>
<arg>${JOLOKIA_TEST_URL}</arg>
<arg>${JOLOKIA_BAD_USER}</arg>
<arg>${JOLOKIA_PW}</arg>
<doc>Checks the given HTTP RESTCONF response for authentication failure</doc>
<status status="FAIL" start="2026-04-19T00:24:21.014632" elapsed="0.617213">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>Given incorrect username, GET on a Jolokia endpoint fails</doc>
<status status="FAIL" start="2026-04-19T00:24:21.014026" elapsed="0.618198">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<test id="s1-t8" name="Correct Jolokia REST Credentials" line="66">
<kw name="Auth Should Pass">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:21.634870" level="INFO">@{auth} = [ admin | admin ]</msg>
<var>@{auth}</var>
<arg>${user}</arg>
<arg>${password}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:21.634301" elapsed="0.000608"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:21.635530" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5fef34890&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:21.635061" elapsed="0.000722"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:21.639057" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.840298" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:22.242338" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:22.244391" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${url}</arg>
<arg>expected_status=200</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:21.635953" elapsed="0.613765">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<arg>${JOLOKIA_TEST_URL}</arg>
<arg>${JOLOKIA_USER}</arg>
<arg>${JOLOKIA_PW}</arg>
<doc>Checks the given HTTP RESTCONF response for authentication failure</doc>
<status status="FAIL" start="2026-04-19T00:24:21.633733" elapsed="0.616221">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>Given correct credentials, GET on a Jolokia endpoint succeeds</doc>
<status status="FAIL" start="2026-04-19T00:24:21.632773" elapsed="0.617449">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<test id="s1-t9" name="IDM Endpoints Only Available To admin Role" line="70">
<kw name="Create List" owner="BuiltIn">
<msg time="2026-04-19T00:24:22.252023" level="INFO">${auth} = ['user', 'user']</msg>
<var>${auth}</var>
<arg>${USER_USER}</arg>
<arg>${USER_PW}</arg>
<doc>Returns a list containing given items.</doc>
<status status="PASS" start="2026-04-19T00:24:22.251287" elapsed="0.000777"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:22.252755" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.170.89:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7cd5fef44050&gt;, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<arg>httpbin</arg>
<arg>http://${ODL_SYSTEM_IP}:${RESTCONFPORT}</arg>
<arg>auth=${auth}</arg>
<arg>headers=${HEADERS}</arg>
<doc>Create Session: create a HTTP session to a server</doc>
<status status="PASS" start="2026-04-19T00:24:22.252237" elapsed="0.001235"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-19T00:24:22.256777" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-19T00:24:22.458185" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-19T00:24:22.860972" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-19T00:24:22.863531" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</msg>
<var>${resp}</var>
<arg>httpbin</arg>
<arg>url=${USERS_REST_URL}</arg>
<arg>expected_status=401</arg>
<doc>Sends a GET request on a previously created HTTP Session.</doc>
<status status="FAIL" start="2026-04-19T00:24:22.253653" elapsed="0.613766">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</kw>
<doc>A user with a non-"admin" role should not have access to AAA endpoints</doc>
<status status="FAIL" start="2026-04-19T00:24:22.250527" elapsed="0.617198">ConnectionError: HTTPConnectionPool(host='10.30.170.89', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused"))</status>
</test>
<kw name="Delete All Sessions" owner="RequestsLibrary" type="TEARDOWN">
<msg time="2026-04-19T00:24:22.868752" level="INFO">Deleting All Sessions</msg>
<doc>Removes all the session objects</doc>
<status status="PASS" start="2026-04-19T00:24:22.868581" elapsed="0.000492"/>
</kw>
<doc>Test Basic Authentication support in RESTCONF</doc>
<status status="FAIL" start="2026-04-19T00:24:17.119494" elapsed="5.749631"/>
</suite>
<statistics>
<total>
<stat pass="0" fail="9" skip="0">All Tests</stat>
</total>
<tag>
</tag>
<suite>
<stat name="aaa-authn.txt" id="s1" pass="0" fail="9" skip="0">aaa-authn.txt</stat>
</suite>
</statistics>
<errors>
<msg time="2026-04-19T00:24:17.299148" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:17.500512" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:17.903015" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:17.921351" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:18.122918" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:18.525663" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:18.540369" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:18.741832" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.144477" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.159644" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.360897" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.763397" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /rests/data/ietf-yang-library:modules-state?content=nonconfig</msg>
<msg time="2026-04-19T00:24:19.782966" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:19.984352" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:20.386640" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:20.399923" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:20.601270" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.003832" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.018737" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.219931" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.622892" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.639057" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:21.840298" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:22.242338" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-19T00:24:22.256777" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-19T00:24:22.458185" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-19T00:24:22.860972" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.170.89', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
</errors>
</robot>
