<?xml version="1.0" encoding="UTF-8"?>
<robot generator="Robot 7.4.2 (Python 3.11.10 on linux)" generated="2026-06-07T00:22:51.375104" 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-06-07T00:22:51.535954" 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-06-07T00:22:51.535508" elapsed="0.000521"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:51.536555" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18c42690&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-06-07T00:22:51.536190" elapsed="0.000566"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:51.540077" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:51.742059" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.145704" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.147995" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:51.536905" elapsed="0.621262">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.158404" elapsed="0.000035"/>
</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-06-07T00:22:52.158550" elapsed="0.000024"/>
</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-06-07T00:22:52.158688" 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-06-07T00:22:51.532006" elapsed="0.626834">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:51.531189" elapsed="0.627861">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.160817" 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-06-07T00:22:52.160329" elapsed="0.000520"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:52.161368" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18ce1c50&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-06-07T00:22:52.160982" elapsed="0.000616"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:52.164409" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.366261" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.768510" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.770807" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.161729" elapsed="0.614298">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.776566" 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-06-07T00:22:52.776860" 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-06-07T00:22:52.777139" elapsed="0.000075"/>
</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-06-07T00:22:52.159852" elapsed="0.617615">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.159295" elapsed="0.618526">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.781199" 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-06-07T00:22:52.780541" elapsed="0.000689"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:52.781690" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18cf78d0&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-06-07T00:22:52.781341" elapsed="0.000800"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:52.784793" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.986431" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.388470" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.390789" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.782286" elapsed="0.613450">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.395998" elapsed="0.000041"/>
</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-06-07T00:22:53.396238" elapsed="0.000039"/>
</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-06-07T00:22:53.396432" elapsed="0.000029"/>
</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-06-07T00:22:52.779499" elapsed="0.617118">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.778386" elapsed="0.618479">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.399080" 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-06-07T00:22:53.398488" elapsed="0.000633"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:53.399765" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18d0a210&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-06-07T00:22:53.399301" elapsed="0.000704"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:53.403297" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.604685" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.008446" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.010959" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.400169" elapsed="0.615936">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.397824" elapsed="0.618510">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.397158" elapsed="0.619436">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /rests/data/ietf-yang-library:modules-state?content=nonconfig (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.023005" 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-06-07T00:22:54.022397" elapsed="0.000652"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:54.023740" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18d0ea10&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-06-07T00:22:54.023225" elapsed="0.000741"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:54.026504" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:54.227744" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:54.630228" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:54.632360" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.024088" elapsed="0.612053">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.636440" elapsed="0.000041"/>
</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-06-07T00:22:54.636619" elapsed="0.000028"/>
</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-06-07T00:22:54.636788" elapsed="0.000028"/>
</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-06-07T00:22:54.017857" elapsed="0.619111">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.017033" elapsed="0.620215">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.639718" 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-06-07T00:22:54.639147" elapsed="0.000609"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:54.640380" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18d2a990&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-06-07T00:22:54.639905" elapsed="0.001009"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:54.643646" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:54.845365" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.247954" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.250030" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.641149" elapsed="0.613938">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.255373" elapsed="0.000041"/>
</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-06-07T00:22:55.255550" elapsed="0.000028"/>
</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-06-07T00:22:55.255711" elapsed="0.000027"/>
</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-06-07T00:22:54.638588" elapsed="0.617296">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.637748" elapsed="0.618451">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.258451" 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-06-07T00:22:55.257902" elapsed="0.000587"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:55.259130" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18d2b890&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-06-07T00:22:55.258636" elapsed="0.000745"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:55.262390" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.463953" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.867310" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.869682" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.259554" elapsed="0.615322">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.875285" 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-06-07T00:22:55.875569" elapsed="0.000044"/>
</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-06-07T00:22:55.875824" elapsed="0.000043"/>
</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-06-07T00:22:55.257364" elapsed="0.618793">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.256553" elapsed="0.620039">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.878963" 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-06-07T00:22:55.878499" elapsed="0.000492"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:55.879469" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18b4d3d0&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-06-07T00:22:55.879100" elapsed="0.000541"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:55.882458" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:56.084089" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:56.487089" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:56.489602" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.879769" elapsed="0.615036">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.877974" elapsed="0.617179">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:55.877252" elapsed="0.618320">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /jolokia (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:56.498162" 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-06-07T00:22:56.497336" elapsed="0.000873"/>
</kw>
<kw name="Create Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:56.498659" level="INFO">Creating Session using : alias=httpbin, url=http://10.30.171.44:8181, headers={'Content-Type': 'application/json'},                     cookies={}, auth=&lt;requests.auth.HTTPBasicAuth object at 0x7deb18b64b10&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-06-07T00:22:56.498328" elapsed="0.000715"/>
</kw>
<kw name="GET On Session" owner="RequestsLibrary">
<msg time="2026-06-07T00:22:56.501579" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-06-07T00:22:56.702819" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-06-07T00:22:57.106106" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-06-07T00:22:57.108561" level="FAIL">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:56.499168" elapsed="0.614388">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:56.496128" elapsed="0.617839">ConnectionError: HTTPConnectionPool(host='10.30.171.44', port=8181): Max retries exceeded with url: /auth/v1/users (Caused by NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:57.115489" level="INFO">Deleting All Sessions</msg>
<doc>Removes all the session objects</doc>
<status status="PASS" start="2026-06-07T00:22:57.115362" elapsed="0.000389"/>
</kw>
<doc>Test Basic Authentication support in RESTCONF</doc>
<status status="FAIL" start="2026-06-07T00:22:51.376672" elapsed="5.739116"/>
</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-06-07T00:22:51.540077" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:51.742059" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.145704" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.164409" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.366261" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.768510" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.784793" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:52.986431" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.388470" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.403297" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:53.604685" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.008446" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', 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-06-07T00:22:54.026504" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:54.227744" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:54.630228" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:54.643646" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:54.845365" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.247954" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.262390" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.463953" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.867310" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:55.882458" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:56.084089" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:56.487089" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /jolokia</msg>
<msg time="2026-06-07T00:22:56.501579" level="WARN">Retrying (RetryAdapter(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-06-07T00:22:56.702819" level="WARN">Retrying (RetryAdapter(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
<msg time="2026-06-07T00:22:57.106106" level="WARN">Retrying (RetryAdapter(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError("HTTPConnection(host='10.30.171.44', port=8181): Failed to establish a new connection: [Errno 111] Connection refused")': /auth/v1/users</msg>
</errors>
</robot>
