1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
import base64
import json
from pcs_test.tools.command_env.mock_node_communicator import (
place_multinode_call,
)
def corosync_running_check_response(running):
return json.dumps(
{
"node": {
"corosync": running,
"services": {
"corosync": {
"installed": True,
"enabled": not running,
"running": running,
}
},
}
}
)
class CorosyncShortcuts:
def __init__(self, calls):
self.__calls = calls
def check_corosync_offline(
self,
node_labels=None,
communication_list=None,
name="http.corosync.check_corosync_offline",
):
"""
Create a call for checking that corosync is offline
string name -- the key of this call
list node_labels -- create success responses from these nodes
list communication_list -- create custom responses
"""
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/status",
param_list=[("version", "2")],
output=corosync_running_check_response(False),
)
def get_corosync_online_targets(
self,
node_labels=None,
communication_list=None,
name="http.corosync.get_corosync_online_targets",
):
"""
Create a call for getting corosync online targets
list node_labels -- create success responses from these nodes
list communication_list -- create custom responses
string name -- the key of this call
"""
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/status",
param_list=[("version", "2")],
output=corosync_running_check_response(True),
)
def get_corosync_conf(
self,
corosync_conf="",
node_labels=None,
communication_list=None,
name="http.corosync.get_corosync_conf",
):
"""
Create a call for loading corosync.conf text from remote nodes
string corosync_conf -- corosync.conf text to be loaded
list node_labels -- create success responses from these nodes
list communication_list -- create custom responses
string name -- the key of this call
"""
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/get_corosync_conf",
output=corosync_conf,
)
def set_corosync_conf(
self,
corosync_conf,
node_labels=None,
communication_list=None,
name="http.corosync.set_corosync_conf",
):
"""
Create a call for sending corosync.conf text
string corosync_conf -- corosync.conf text to be sent
list node_labels -- create success responses from these nodes
list communication_list -- create custom responses
string name -- the key of this call
"""
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/set_corosync_conf",
param_list=[("corosync_conf", corosync_conf)],
output="Succeeded",
)
def reload_corosync_conf(
self,
node_labels=None,
communication_list=None,
name="http.corosync.reload_corosync_conf",
):
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/reload_corosync_conf",
output=json.dumps(dict(code="reloaded", message="")),
)
def qdevice_client_enable(
self,
name="http.corosync.qdevice_client_enable",
node_labels=None,
communication_list=None,
):
"""
Create a call for enabling qdevice service
string name -- the key of this call
list node_labels -- create success responses from these nodes
list communication_list -- create custom responses
"""
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/qdevice_client_enable",
output="corosync-qdevice enabled",
)
def qdevice_client_disable(
self,
name="http.corosync.qdevice_client_disable",
node_labels=None,
communication_list=None,
):
"""
Create a call for disabling qdevice service
string name -- the key of this call
list node_labels -- create success responses from these nodes
list communication_list -- create custom responses
"""
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/qdevice_client_disable",
output="corosync-qdevice disabled",
)
def qdevice_client_start(
self,
name="http.corosync.qdevice_client_start",
node_labels=None,
communication_list=None,
):
"""
Create a call for starting qdevice service
string name -- the key of this call
list node_labels -- create success responses from these nodes
list communication_list -- create custom responses
"""
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/qdevice_client_start",
output="corosync-qdevice started",
)
def qdevice_client_stop(
self,
name="http.corosync.qdevice_client_stop",
node_labels=None,
communication_list=None,
):
"""
Create a call for stopping qdevice service
string name -- the key of this call
list node_labels -- create success responses from these nodes
list communication_list -- create custom responses
"""
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/qdevice_client_stop",
output="corosync-qdevice stopped",
)
def qdevice_net_get_ca_cert(
self,
ca_cert=b"ca_cert",
node_labels=None,
communication_list=None,
name="http.corosync.qdevice_net_get_ca_cert",
):
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/qdevice_net_get_ca_certificate",
output=base64.b64encode(ca_cert),
)
def qdevice_net_client_setup(
self,
ca_cert=b"ca_cert",
node_labels=None,
communication_list=None,
name="http.corosync.qdevice_net_client_setup",
before=None,
):
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/qdevice_net_client_init_certificate_storage",
param_list=[("ca_certificate", base64.b64encode(ca_cert))],
before=before,
)
def qdevice_net_sign_certificate(
self,
cluster_name,
cert=b"cert",
signed_cert=b"signed cert",
node_labels=None,
communication_list=None,
name="http.corosync.qdevice_net_sign_certificate",
):
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/qdevice_net_sign_node_certificate",
param_list=[
("certificate_request", base64.b64encode(cert)),
("cluster_name", cluster_name),
],
output=base64.b64encode(signed_cert),
)
def qdevice_net_client_import_cert_and_key(
self,
cert=b"pk12 cert",
node_labels=None,
communication_list=None,
name="http.corosync.qdevice_net_client_import_cert_and_key",
):
place_multinode_call(
self.__calls,
name,
node_labels,
communication_list,
action="remote/qdevice_net_client_import_certificate",
param_list=[("certificate", base64.b64encode(cert))],
)
|