Home | History | Annotate | Download | only in tests

Lines Matching refs:greeting

127         Check the QMP greeting message version key which, according to QMP's
139 def test_greeting(greeting):
140 check_key_is_dict(greeting, "QMP")
141 check_key_is_dict(greeting["QMP"], "version")
142 check_key_is_list(greeting["QMP"], "capabilities")
147 Check the greeting message format, as described in the QMP
148 specfication section '2.2 Server Greeting'.
152 greeting = monitor.get_greeting()
153 test_greeting(greeting)
154 test_version(greeting["QMP"]["version"])