blob: d79ab30e78d6c76573c4a780651688446b6d86e5 (
plain)
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
|
*** Settings ***
Suite Setup Fuzzy Redis General Setup
Suite Teardown Fuzzy Redis General Teardown
Resource lib.robot
*** Variables ***
${REDIS_SCOPE} Suite
*** Test Cases ***
Fuzzy Add
Fuzzy Multimessage Add Test
Fuzzy Fuzzy
Fuzzy Multimessage Fuzzy Test
Fuzzy Delete
Fuzzy Multimessage Delete Test
Fuzzy Overwrite
Fuzzy Multimessage Overwrite Test
*** Keywords ***
Fuzzy Redis General Setup
${tmpdir} = Make Temporary Directory
Set Suite Variable ${TMPDIR} ${tmpdir}
Run Redis
Fuzzy Setup Generic siphash backend \= "redis"; ${EMPTY} TMPDIR=${TMPDIR}
Fuzzy Redis General Teardown
Normal Teardown
Shutdown Process With Children ${REDIS_PID}
Wait For Port ${SOCK_STREAM} ${LOCAL_ADDR} ${REDIS_PORT}
|