<?xml version="1.0" encoding="UTF-8"?>
<robot generator="Robot 7.4.2 (Python 3.11.10 on linux)" generated="2026-04-05T00:29:20.627235" 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-05T00:29:20.794056" 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-05T00:29:20.793506" elapsed="0.000597"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:20.794664" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8f16f850&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-05T00:29:20.794257" elapsed="0.000641"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:20.798433" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.000067" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.402910" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.405364" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:20.795059" elapsed="0.619299">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.414767" elapsed="0.000051"/>
</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-05T00:29:21.414984" 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-05T00:29:21.415197" elapsed="0.000033"/>
</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-05T00:29:20.789696" elapsed="0.625725">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:20.788783" elapsed="0.626938">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.418083" 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-05T00:29:21.417512" elapsed="0.000603"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:21.418637" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8f079050&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-05T00:29:21.418246" elapsed="0.000583"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:21.421629" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.623146" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.025809" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.028258" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.418963" elapsed="0.614465">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.033991" elapsed="0.000064"/>
</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-05T00:29:22.034300" elapsed="0.000047"/>
</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-05T00:29:22.034603" elapsed="0.000048"/>
</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-05T00:29:21.416808" elapsed="0.618090">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.416060" elapsed="0.619204">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.038282" 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-05T00:29:22.037763" elapsed="0.000549"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:22.038808" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8f086c90&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-05T00:29:22.038422" elapsed="0.000857"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:22.042027" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.243521" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.646242" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.648452" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.039408" elapsed="0.614205">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.654012" 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-05T00:29:22.654294" elapsed="0.000046"/>
</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-05T00:29:22.654592" elapsed="0.000048"/>
</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-05T00:29:22.036804" elapsed="0.618097">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.035764" elapsed="0.619513">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.658622" 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-05T00:29:22.657681" elapsed="0.001005"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:22.659289" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8f09d490&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-05T00:29:22.658945" elapsed="0.000520"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:22.662057" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.863755" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.266076" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.268967" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.659604" elapsed="0.614875">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.656771" elapsed="0.618066">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.655773" elapsed="0.619458">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.281791" 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-05T00:29:23.281377" elapsed="0.000442"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:23.282277" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8f0a5cd0&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-05T00:29:23.281927" elapsed="0.000521"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:23.284891" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:23.486183" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:23.888790" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:23.891119" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.282584" elapsed="0.613701">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.896723" elapsed="0.000064"/>
</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-05T00:29:23.897026" elapsed="0.000048"/>
</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-05T00:29:23.897303" elapsed="0.000047"/>
</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-05T00:29:23.277237" elapsed="0.620379">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.275904" elapsed="0.622097">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.901702" 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-05T00:29:23.901262" elapsed="0.000467"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:23.902181" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8f0c5d10&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-05T00:29:23.901843" elapsed="0.000736"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:23.904957" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:24.106383" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:24.508849" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:24.511231" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.902754" elapsed="0.614036">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:24.517079" elapsed="0.000043"/>
</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-05T00:29:24.517290" elapsed="0.000038"/>
</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-05T00:29:24.517508" elapsed="0.000038"/>
</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-05T00:29:23.900731" elapsed="0.617038">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.899997" elapsed="0.618094">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:24.521270" 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-05T00:29:24.520413" elapsed="0.000911"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:24.522186" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8f0c6a50&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-05T00:29:24.521530" elapsed="0.000987"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:24.526217" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:24.727516" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.130731" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.133143" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:24.522781" elapsed="0.614910">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:25.138027" elapsed="0.000055"/>
</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-05T00:29:25.138231" 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-05T00:29:25.138402" elapsed="0.000029"/>
</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-05T00:29:24.519677" elapsed="0.618927">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:24.518687" elapsed="0.620161">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:25.141310" 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-05T00:29:25.140683" elapsed="0.000670"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:25.142039" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8eee0490&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-05T00:29:25.141508" elapsed="0.000777"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:25.145536" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.347368" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.750074" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.752173" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:25.142498" elapsed="0.614635">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:25.140032" elapsed="0.617329">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:25.139167" elapsed="0.618519">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:25.759300" 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-05T00:29:25.758738" elapsed="0.000601"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:25.760060" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.94:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7bbf8eeebd10&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-05T00:29:25.759514" elapsed="0.001020"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-04-05T00:29:25.763703" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-05T00:29:25.965361" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-05T00:29:26.367286" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-05T00:29:26.369649" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:25.760738" elapsed="0.615942">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:25.758021" elapsed="0.619129">ConnectionError: HTTPConnectionPool(host='10.30.171.94', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:26.378393" level="INFO">Deleting All Sessions</msg>
<doc>Removes all the session objects</doc>
<status status="PASS" start="2026-04-05T00:29:26.378224" elapsed="0.000542"/>
</kw>
<doc>Test Basic Authentication support in RESTCONF</doc>
<status status="FAIL" start="2026-04-05T00:29:20.628870" elapsed="5.749969"/>
</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-05T00:29:20.798433" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.000067" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.402910" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.421629" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:21.623146" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.025809" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.042027" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.243521" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.646242" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.662057" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:22.863755" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.266076" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', 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-05T00:29:23.284891" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:23.486183" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:23.888790" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:23.904957" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:24.106383" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:24.508849" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:24.526217" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:24.727516" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.130731" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.145536" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.347368" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.750074" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-04-05T00:29:25.763703" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-05T00:29:25.965361" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-04-05T00:29:26.367286" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.94', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
</errors>
</robot>
