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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
|
*** Settings ***
Library Collections
Library OperatingSystem
Library Process
*** Keywords ***
Check Controller Errors
@{result} = HTTP GET ${RSPAMD_LOCAL_ADDR} ${RSPAMD_PORT_CONTROLLER} /errors
Should Be Equal As Integers ${result}[0] 200
Log ${result}[1]
Check Pidfile
[Arguments] ${pidfile} ${timeout}=1 min
Wait Until Created ${pidfile} timeout=${timeout}
${size} = Get File Size ${pidfile}
Should Not Be Equal As Integers ${size} 0
Check Rspamc
[Arguments] ${result} @{args} &{kwargs}
IF ${result.rc} != 0
Log ${result.stderr}
END
${has_rc} = Evaluate 'rc' in $kwargs
${inverse} = Evaluate 'inverse' in $kwargs
${re} = Evaluate 're' in $kwargs
${rc} = Set Variable If ${has_rc} == True ${kwargs}[rc] 0
FOR ${i} IN @{args}
IF ${re} == True
Check Rspamc Match Regexp ${result.stdout} ${i} ${inverse}
ELSE
Check Rspamc Match String ${result.stdout} ${i} ${inverse}
END
END
IF @{args} == @{EMPTY}
Check Rspamc Match Default ${result.stdout} ${inverse}
END
Should Be Equal As Integers ${result.rc} ${rc}
Check Rspamc Match Default
[Arguments] ${subject} ${inverse}
IF ${inverse} == False
Should Contain ${subject} success = true
ELSE
Should Not Contain ${subject} success = true
END
Check Rspamc Match Regexp
[Arguments] ${subject} ${re} ${inverse}
IF ${inverse} == False
Should Match Regexp ${subject} ${re}
ELSE
Should Not Match Regexp ${subject} ${re}
END
Check Rspamc Match String
[Arguments] ${subject} ${str} ${inverse}
IF ${inverse} == False
Should Contain ${subject} ${str}
ELSE
Should Not Contain ${subject} ${str}
END
Do Not Expect Added Header
[Arguments] ${header_name}
IF 'milter' not in ${SCAN_RESULT}
RETURN
END
IF 'add_headers' not in ${SCAN_RESULT}[milter]
RETURN
END
Dictionary Should Not Contain Key ${SCAN_RESULT}[milter][add_headers] ${header_name}
... msg=${header_name} was added
Do Not Expect Removed Header
[Arguments] ${header_name}
IF 'milter' not in ${SCAN_RESULT}
RETURN
END
IF 'remove_headers' not in ${SCAN_RESULT}[milter]
RETURN
END
Dictionary Should Not Contain Key ${SCAN_RESULT}[milter][remove_headers] ${header_name}
... msg=${header_name} was removed
Do Not Expect Symbol
[Arguments] ${symbol}
Dictionary Should Not Contain Key ${SCAN_RESULT}[symbols] ${symbol}
... msg=Symbol ${symbol} was not expected to be found in result
Do Not Expect Symbol With Option
[Arguments] ${symbol} ${option}
IF '${symbol}' not in ${SCAN_RESULT}[symbols]
RETURN
END
${have_options} = Convert To List ${SCAN_RESULT}[symbols][${symbol}][options]
Should Not Contain ${have_options} ${option}
... msg="Options for symbol ${symbol} ${SCAN_RESULT}[symbols][${symbol}][options] doesn't contain ${option}"
Do Not Expect Symbols
[Arguments] @{symbols}
FOR ${symbol} IN @{symbols}
Dictionary Should Not Contain Key ${SCAN_RESULT}[symbols] ${symbol}
... msg=Symbol ${symbol} was not expected to be found in result
END
Expect Action
[Arguments] ${action}
Should Be Equal ${SCAN_RESULT}[action] ${action}
Expect Added Header
[Arguments] ${header_name} ${header_value} ${pos}=-1
Dictionary Should Contain Key ${SCAN_RESULT} milter
... msg=milter block was not present in protocol response
Dictionary Should Contain Key ${SCAN_RESULT}[milter] add_headers
... msg=add_headers block was not present in protocol response
Dictionary Should Contain Key ${SCAN_RESULT}[milter][add_headers] ${header_name}
... msg=${header_name} was not added
Dictionary Should Contain Key ${SCAN_RESULT}[milter][add_headers][${header_name}] value
... msg=no value field in ${header_name} index: ${SCAN_RESULT}[milter][add_headers][${header_name}]
Should Be Equal ${SCAN_RESULT}[milter][add_headers][${header_name}][value] ${header_value}
Should Be Equal as Numbers ${SCAN_RESULT}[milter][add_headers][${header_name}][order] ${pos}
Expect Header Is Present
[Arguments] ${header_name}
Dictionary Should Contain Key ${SCAN_RESULT} milter
... msg=milter block was not present in protocol response
Dictionary Should Contain Key ${SCAN_RESULT}[milter] add_headers
... msg=add_headers block was not present in protocol response
Dictionary Should Contain Key ${SCAN_RESULT}[milter][add_headers] ${header_name}
... msg=${header_name} was not added
Expect Email
[Arguments] ${email}
List Should Contain Value ${SCAN_RESULT}[emails] ${email}
Expect Removed Header
[Arguments] ${header_name} ${pos}=0
Dictionary Should Contain Key ${SCAN_RESULT} milter
... msg=milter block was not present in protocol response
Dictionary Should Contain Key ${SCAN_RESULT}[milter] remove_headers
... msg=remove_headers block was not present in protocol response
Dictionary Should Contain Key ${SCAN_RESULT}[milter][remove_headers] ${header_name}
... msg=${header_name} was not removed
Should Be Equal as Numbers ${SCAN_RESULT}[milter][remove_headers][${header_name}] ${pos}
Expect Required Score
[Arguments] ${required_score}
Should Be Equal As Numbers ${SCAN_RESULT}[required_score] ${required_score}
Expect Required Score To Be Null
Should Be Equal ${SCAN_RESULT}[required_score] ${NONE}
Expect Score
[Arguments] ${score}
Should Be Equal As Numbers ${SCAN_RESULT}[score] ${score}
... msg="Expected message score of ${score} but got ${SCAN_RESULT}[score]"
Expect Symbol
[Arguments] ${symbol}
Dictionary Should Contain Key ${SCAN_RESULT}[symbols] ${symbol}
... msg=Symbol ${symbol} wasn't found in result
Expect URL
[Arguments] ${url}
List Should Contain Value ${SCAN_RESULT}[urls] ${url}
Expect Extended URL
[Arguments] ${url}
${found_url} = Set Variable ${FALSE}
${url_list} = Convert To List ${SCAN_RESULT}[urls]
FOR ${item} IN @{url_list}
${d} = Convert To Dictionary ${item}
${found_url} = Evaluate "${d}[url]" == "${url}"
Exit For Loop If ${found_url} == ${TRUE}
END
Should Be True ${found_url} msg="Expected URL was not found: ${url}"
Expect Symbol With Exact Options
[Arguments] ${symbol} @{options}
Expect Symbol ${symbol}
${have_options} = Convert To List ${SCAN_RESULT}[symbols][${symbol}][options]
Lists Should Be Equal ${have_options} ${options} ignore_order=True
... msg="Symbol ${symbol} has options ${SCAN_RESULT}[symbols][${symbol}][options] but expected ${options}"
Expect Symbol With Option
[Arguments] ${symbol} ${option}
Expect Symbol ${symbol}
${have_options} = Convert To List ${SCAN_RESULT}[symbols][${symbol}][options]
Should Contain ${have_options} ${option}
... msg="Options for symbol ${symbol} ${SCAN_RESULT}[symbols][${symbol}][options] doesn't contain ${option}"
Expect Symbol With Score
[Arguments] ${symbol} ${score}
Dictionary Should Contain Key ${SCAN_RESULT}[symbols] ${symbol}
... msg=Symbol ${symbol} wasn't found in result
Should Be Equal As Numbers ${SCAN_RESULT}[symbols][${symbol}][score] ${score}
... msg="Symbol ${symbol} has score of ${SCAN_RESULT}[symbols][${symbol}][score] but expected ${score}"
Expect Symbols
[Arguments] @{symbols}
FOR ${symbol} IN @{symbols}
Dictionary Should Contain Key ${SCAN_RESULT}[symbols] ${symbol}
... msg=Symbol ${symbol} wasn't found in result
END
Expect Symbols With Scores
[Arguments] &{symscores}
FOR ${key} ${value} IN &{symscores}
Dictionary Should Contain Key ${SCAN_RESULT}[symbols] ${key}
... msg=Symbol ${key} wasn't found in result
Should Be Equal As Numbers ${SCAN_RESULT}[symbols][${key}][score] ${value}
... msg="Symbol ${key} has score of ${SCAN_RESULT}[symbols][${key}][score] but expected ${value}"
END
Expect Symbol With Score And Exact Options
[Arguments] ${symbol} ${score} @{options}
Expect Symbol With Exact Options ${symbol} @{options}
Expect Symbol With Score ${symbol} ${score}
Export Rspamd Variables To Environment
&{all_vars} = Get Variables no_decoration=True
FOR ${k} ${v} IN &{all_vars}
IF '${k}'.startswith("RSPAMD_")
Set Environment Variable ${k} ${v}
END
END
Export Scoped Variables
[Arguments] ${scope} &{vars}
IF '${scope}' == 'Test'
FOR ${k} ${v} IN &{vars}
Set Test Variable ${${k}} ${v}
END
ELSE IF '${scope}' == 'Suite'
FOR ${k} ${v} IN &{vars}
Set Suite Variable ${${k}} ${v}
END
ELSE IF '${scope}' == 'Global'
FOR ${k} ${v} IN &{vars}
Set Global Variable ${${k}} ${v}
END
ELSE
Fail message="Don't know what to do with scope: ${scope}"
END
Log does not contain segfault record
${log} = Get File ${RSPAMD_TMPDIR}/rspamd.log encoding_errors=ignore
Should not contain ${log} (Segmentation fault) msg=Segmentation fault detected
Redis HSET
[Arguments] ${hash} ${key} ${value}
${result} = Run Process redis-cli -h ${RSPAMD_REDIS_ADDR} -p ${RSPAMD_REDIS_PORT}
... HSET ${hash} ${key} ${value}
IF ${result.rc} != 0
Log ${result.stderr}
END
Log ${result.stdout}
Should Be Equal As Integers ${result.rc} 0
Redis SET
[Arguments] ${key} ${value}
${result} = Run Process redis-cli -h ${RSPAMD_REDIS_ADDR} -p ${RSPAMD_REDIS_PORT}
... SET ${key} ${value}
IF ${result.rc} != 0
Log ${result.stderr}
END
Log ${result.stdout}
Should Be Equal As Integers ${result.rc} 0
Redis Teardown
Terminate Process ${REDIS_PROCESS}
Wait For Process ${REDIS_PROCESS}
Cleanup Temporary Directory ${REDIS_TMPDIR}
Rspamd Setup
[Arguments] ${check_port}=${RSPAMD_PORT_NORMAL}
# Create and chown temporary directory
${RSPAMD_TMPDIR} = Make Temporary Directory
Set Directory Ownership ${RSPAMD_TMPDIR} ${RSPAMD_USER} ${RSPAMD_GROUP}
# Export ${RSPAMD_TMPDIR} to appropriate scope according to ${RSPAMD_SCOPE}
Export Scoped Variables ${RSPAMD_SCOPE} RSPAMD_TMPDIR=${RSPAMD_TMPDIR}
Run Rspamd check_port=${check_port}
Rspamd Redis Setup
Run Redis
Rspamd Setup
Rspamd Teardown
IF '${CONTROLLER_ERRORS}' == 'True'
Run Keyword And Warn On Failure Check Controller Errors
END
Terminate Process ${RSPAMD_PROCESS}
Wait For Process ${RSPAMD_PROCESS}
Save Run Results ${RSPAMD_TMPDIR} configdump.stdout configdump.stderr rspamd.stderr rspamd.stdout rspamd.conf rspamd.log redis.log clickhouse-config.xml
Log does not contain segfault record
Collect Lua Coverage
Cleanup Temporary Directory ${RSPAMD_TMPDIR}
Rspamd Redis Teardown
Rspamd Teardown
Redis Teardown
Run Redis
${RSPAMD_TMPDIR} = Make Temporary Directory
${template} = Get File ${RSPAMD_TESTDIR}/configs/redis-server.conf
${config} = Replace Variables ${template}
Create File ${RSPAMD_TMPDIR}/redis-server.conf ${config}
Log ${config}
${result} = Start Process redis-server ${RSPAMD_TMPDIR}/redis-server.conf
Wait Until Keyword Succeeds 5x 1 sec Check Pidfile ${RSPAMD_TMPDIR}/redis.pid timeout=0.5s
Wait Until Keyword Succeeds 5x 1 sec Redis Check ${RSPAMD_REDIS_ADDR} ${RSPAMD_REDIS_PORT}
${REDIS_PID} = Get File ${RSPAMD_TMPDIR}/redis.pid
${REDIS_PID} = Convert To Number ${REDIS_PID}
Export Scoped Variables ${REDIS_SCOPE} REDIS_PID=${REDIS_PID} REDIS_PROCESS=${result} REDIS_TMPDIR=${RSPAMD_TMPDIR}
${redis_log} = Get File ${RSPAMD_TMPDIR}/redis.log
Log ${redis_log}
Run Rspamd
[Arguments] ${check_port}=${RSPAMD_PORT_NORMAL}
Export Rspamd Variables To Environment
# Copy config file to TMPDIR so it gets saved on teardown
Copy File ${CONFIG} ${RSPAMD_TMPDIR}/rspamd.conf
# Dump templated config or errors to log
${result} = Run Process ${RSPAMADM}
... --var\=TMPDIR\=${RSPAMD_TMPDIR}
... --var\=DBDIR\=${RSPAMD_TMPDIR}
... --var\=LOCAL_CONFDIR\=/non-existent
... --var\=CONFDIR\=${RSPAMD_TESTDIR}/../../conf/
... configdump -c ${CONFIG}
... env:RSPAMD_LOCAL_CONFDIR=/non-existent
... env:RSPAMD_TMPDIR=${RSPAMD_TMPDIR}
... env:RSPAMD_CONFDIR=${RSPAMD_TESTDIR}/../../conf/
... env:LD_LIBRARY_PATH=${RSPAMD_TESTDIR}/../../contrib/aho-corasick
... env:RSPAMD_NO_CLEANUP=1
... env:ASAN_OPTIONS=quarantine_size_mb=2048:malloc_context_size=20:fast_unwind_on_malloc=0:log_path=${RSPAMD_TMPDIR}/rspamd-asan
# We need to send output to files (or discard output) to avoid hanging Robot
... stdout=${RSPAMD_TMPDIR}/configdump.stdout stderr=${RSPAMD_TMPDIR}/configdump.stderr
# Always save configdump output to files, even if it failed
# First save process output directly to ensure we have something even if files weren't created
${stdout_exists} = Run Keyword And Return Status File Should Exist ${RSPAMD_TMPDIR}/configdump.stdout
${stderr_exists} = Run Keyword And Return Status File Should Exist ${RSPAMD_TMPDIR}/configdump.stderr
IF not ${stdout_exists}
# File wasn't created, use process stdout if available
${stdout_len} = Get Length ${result.stdout}
IF ${stdout_len} > 0
Create File ${RSPAMD_TMPDIR}/configdump.stdout ${result.stdout}
ELSE
Create File ${RSPAMD_TMPDIR}/configdump.stdout <configdump stdout not created, process crashed?>
END
END
IF not ${stderr_exists}
# File wasn't created, use process stderr if available
${stderr_len} = Get Length ${result.stderr}
IF ${stderr_len} > 0
Create File ${RSPAMD_TMPDIR}/configdump.stderr ${result.stderr}
ELSE
Create File ${RSPAMD_TMPDIR}/configdump.stderr <configdump stderr not created, process crashed?>
END
END
IF ${result.rc} == 0
${configdump} = Get File ${RSPAMD_TMPDIR}/configdump.stdout encoding_errors=ignore
ELSE
${configdump} = Get File ${RSPAMD_TMPDIR}/configdump.stderr encoding_errors=ignore
Log Configdump failed with rc=${result.rc} level=WARN
END
Log ${configdump}
# Fix directory ownership (maybe do this somewhere else)
Set Directory Ownership ${RSPAMD_TMPDIR} ${RSPAMD_USER} ${RSPAMD_GROUP}
# Run Rspamd
${result} = Start Process ${RSPAMD} -f -u ${RSPAMD_USER} -g ${RSPAMD_GROUP}
... -c ${CONFIG}
... --var\=TMPDIR\=${RSPAMD_TMPDIR}
... --var\=DBDIR\=${RSPAMD_TMPDIR}
... --var\=LOCAL_CONFDIR\=/non-existent
... --var\=CONFDIR\=${RSPAMD_TESTDIR}/../../conf/
... --insecure
... env:RSPAMD_LOCAL_CONFDIR=/non-existent
... env:RSPAMD_TMPDIR=${RSPAMD_TMPDIR}
... env:RSPAMD_CONFDIR=${RSPAMD_TESTDIR}/../../conf/
... env:LD_LIBRARY_PATH=${RSPAMD_TESTDIR}/../../contrib/aho-corasick
... env:RSPAMD_NO_CLEANUP=1
... env:ASAN_OPTIONS=quarantine_size_mb=2048:malloc_context_size=20:fast_unwind_on_malloc=0:log_path=${RSPAMD_TMPDIR}/rspamd-asan
... stdout=${RSPAMD_TMPDIR}/rspamd.stdout stderr=${RSPAMD_TMPDIR}/rspamd.stderr
Export Scoped Variables ${RSPAMD_SCOPE} RSPAMD_PROCESS=${result}
# Confirm worker is reachable
FOR ${index} IN RANGE 37
${ok} = Rspamd Startup Check ${check_port}
IF ${ok} CONTINUE
Sleep 0.4s
END
Rspamd Startup Check
[Arguments] ${check_port}=${RSPAMD_PORT_NORMAL}
${handle} = Get Process Object
${res} = Evaluate $handle.poll()
IF ${res} != None
${stderr} = Get File ${RSPAMD_TMPDIR}/rspamd.stderr
Fail Process Is Gone, stderr: ${stderr}
END
${ping} = Run Keyword And Return Status Ping Rspamd ${RSPAMD_LOCAL_ADDR} ${check_port}
[Return] ${ping}
Rspamadm Setup
${RSPAMADM_TMPDIR} = Make Temporary Directory
Set Suite Variable ${RSPAMADM_TMPDIR}
Rspamadm Teardown
Cleanup Temporary Directory ${RSPAMADM_TMPDIR}
Rspamadm
[Arguments] @{args}
${result} = Run Process ${RSPAMADM}
... --var\=TMPDIR\=${RSPAMADM_TMPDIR}
... --var\=DBDIR\=${RSPAMADM_TMPDIR}
... --var\=LOCAL_CONFDIR\=/nonexistent
... @{args}
[Return] ${result}
Run Nginx
${template} = Get File ${RSPAMD_TESTDIR}/configs/nginx.conf
${config} = Replace Variables ${template}
Create File ${RSPAMD_TMPDIR}/nginx.conf ${config}
Log ${config}
${result} = Run Process nginx -c ${RSPAMD_TMPDIR}/nginx.conf
IF ${result.rc} != 0
Log ${result.stderr}
END
Should Be Equal As Integers ${result.rc} 0
Wait Until Keyword Succeeds 10x 1 sec Check Pidfile ${RSPAMD_TMPDIR}/nginx.pid timeout=0.5s
Wait Until Keyword Succeeds 5x 1 sec TCP Connect ${NGINX_ADDR} ${NGINX_PORT}
${NGINX_PID} = Get File ${RSPAMD_TMPDIR}/nginx.pid
IF '${NGINX_SCOPE}' == 'Test'
Set Test Variable ${NGINX_PID}
ELSE IF '${NGINX_SCOPE}' == 'Suite'
Set Suite Variable ${NGINX_PID}
END
${nginx_log} = Get File ${RSPAMD_TMPDIR}/nginx.log
Log ${nginx_log}
Set Test Hash Documentation
${log_tag} = Evaluate __import__('hashlib').md5('${TEST NAME}'.encode()).hexdigest()[:8]
Log TEST CONTEXT: [${log_tag}] ${TEST NAME} console=True
Run Rspamc
[Arguments] @{args}
${log_tag} = Evaluate __import__('hashlib').md5('${TEST NAME}'.encode()).hexdigest()[:8]
# Check if --queue-id is already provided in the arguments
${args_str} = Evaluate ' '.join(@{args})
${has_queue_id} = Evaluate '--queue-id' in '${args_str}'
IF ${has_queue_id}
${result} = Run Process ${RSPAMC} -t 60 --log-tag ${log_tag}
... @{args} env:LD_LIBRARY_PATH=${RSPAMD_TESTDIR}/../../contrib/aho-corasick
ELSE
${result} = Run Process ${RSPAMC} -t 60 --queue-id ${TEST NAME} --log-tag ${log_tag}
... @{args} env:LD_LIBRARY_PATH=${RSPAMD_TESTDIR}/../../contrib/aho-corasick
END
Log ${result.stdout}
[Return] ${result}
Scan File By Reference
[Arguments] ${filename} &{headers}
Set To Dictionary ${headers} File=${filename}
${result} = Scan File /dev/null &{headers}
[Return] ${result}
Scan Message With Rspamc
[Arguments] ${msg_file} @{vargs}
${result} = Run Rspamc -p -h ${RSPAMD_LOCAL_ADDR}:${RSPAMD_PORT_NORMAL} @{vargs} ${msg_file}
[Return] ${result}
Sync Fuzzy Storage
[Arguments] @{vargs}
${len} = Get Length ${vargs}
IF $len == 0
${result} = Run Process ${RSPAMADM} control -s
... ${RSPAMD_TMPDIR}/rspamd.sock fuzzy_sync
ELSE
Run Process ${RSPAMADM} control -s ${vargs}[0]/rspamd.sock
... fuzzy_sync
END
Log ${result.stdout}
Sleep 0.1s Try give fuzzy storage time to sync
Run Dummy Http
${result} = Start Process ${RSPAMD_TESTDIR}/util/dummy_http.py -pf /tmp/dummy_http.pid
... stderr=/tmp/dummy_http.log stdout=/tmp/dummy_http.log
${status} ${error} = Run Keyword And Ignore Error Wait Until Created /tmp/dummy_http.pid timeout=2 second
IF '${status}' == 'FAIL'
${logstatus} ${log} = Run Keyword And Ignore Error Get File /tmp/dummy_http.log
IF '${logstatus}' == 'PASS'
Log dummy_http.py failed to start. Log output:\n${log} level=ERROR
ELSE
Log dummy_http.py failed to start. No log file found at /tmp/dummy_http.log level=ERROR
END
Fail dummy_http.py did not create PID file in 2 seconds
END
Export Scoped Variables ${RSPAMD_SCOPE} DUMMY_HTTP_PROC=${result}
Run Dummy Https
${result} = Start Process ${RSPAMD_TESTDIR}/util/dummy_http.py
... -c ${RSPAMD_TESTDIR}/util/server.pem -k ${RSPAMD_TESTDIR}/util/server.pem
... -pf /tmp/dummy_https.pid -p 18081
... stderr=/tmp/dummy_https.log stdout=/tmp/dummy_https.log
${status} ${error} = Run Keyword And Ignore Error Wait Until Created /tmp/dummy_https.pid timeout=2 second
IF '${status}' == 'FAIL'
${logstatus} ${log} = Run Keyword And Ignore Error Get File /tmp/dummy_https.log
IF '${logstatus}' == 'PASS'
Log dummy_https.py failed to start. Log output:\n${log} level=ERROR
ELSE
Log dummy_https.py failed to start. No log file found at /tmp/dummy_https.log level=ERROR
END
Fail dummy_https.py did not create PID file in 2 seconds
END
Export Scoped Variables ${RSPAMD_SCOPE} DUMMY_HTTPS_PROC=${result}
Run Dummy Llm
${result} = Start Process ${RSPAMD_TESTDIR}/util/dummy_llm.py 18080
... stderr=/tmp/dummy_llm.log stdout=/tmp/dummy_llm.log
${status} ${error} = Run Keyword And Ignore Error Wait Until Created /tmp/dummy_llm.pid timeout=2 second
IF '${status}' == 'FAIL'
${logstatus} ${log} = Run Keyword And Ignore Error Get File /tmp/dummy_llm.log
IF '${logstatus}' == 'PASS'
Log dummy_llm.py failed to start. Log output:\n${log} level=ERROR
ELSE
Log dummy_llm.py failed to start. No log file found at /tmp/dummy_llm.log level=ERROR
END
Fail dummy_llm.py did not create PID file in 2 seconds
END
Export Scoped Variables ${RSPAMD_SCOPE} DUMMY_LLM_PROC=${result}
Dummy Llm Teardown
Terminate Process ${DUMMY_LLM_PROC}
Wait For Process ${DUMMY_LLM_PROC}
Dummy Http Teardown
Terminate Process ${DUMMY_HTTP_PROC}
Wait For Process ${DUMMY_HTTP_PROC}
Dummy Https Teardown
Terminate Process ${DUMMY_HTTPS_PROC}
Wait For Process ${DUMMY_HTTPS_PROC}
Run Dummy Http Early Response
${result} = Start Process ${RSPAMD_TESTDIR}/util/dummy_http_early_response.py -pf /tmp/dummy_http_early.pid -p 18083
... stderr=/tmp/dummy_http_early.log stdout=/tmp/dummy_http_early.log
${status} ${error} = Run Keyword And Ignore Error Wait Until Created /tmp/dummy_http_early.pid timeout=2 second
IF '${status}' == 'FAIL'
${logstatus} ${log} = Run Keyword And Ignore Error Get File /tmp/dummy_http_early.log
IF '${logstatus}' == 'PASS'
Log dummy_http_early_response.py failed to start. Log output:\n${log} level=ERROR
ELSE
Log dummy_http_early_response.py failed to start. No log file found at /tmp/dummy_http_early.log level=ERROR
END
Fail dummy_http_early_response.py did not create PID file in 2 seconds
END
Export Scoped Variables ${RSPAMD_SCOPE} DUMMY_HTTP_EARLY_PROC=${result}
Dummy Http Early Teardown
Terminate Process ${DUMMY_HTTP_EARLY_PROC}
Wait For Process ${DUMMY_HTTP_EARLY_PROC}
|