Skip to main content
Version: 2x

@qavajs/steps-memory

Steps to work with memory module

Installation

npm install @qavajs/steps-memory

Configuration

export default {
require: [
'node_modules/@qavajs/steps-memory/index.js'
]
}

Steps


I expect {string} {validation} {string}

Verify that value from memory satisfies validation against other value

paramtypedescriptionexample
value1anyvalue142, $value, $currentDate()
validationFunctionfunction to verify conditionto be equal, to be above, to be below
value2anyvalue242, $value, $currentDate()
Then I expect '$value' to equal '$anotherValue'
Then I expect '$value' not to contain '56'

I expect every element in {string} array {validation} {string}

Verify that every element in array satisfies validation against other value

paramtypedescriptionexample
arranyarray to validate$value, $currentDate()
validationFunctionfunction to verify conditionto be equal, to be above, to be below
expectedValueanyexpected value42, $value, $currentDate()
Then I expect every element in '$arr' array to be above '$expectedValue'
Then I expect every element in '$arr' array to be above '50'

I expect at least {int} elements in {string} array {validation} {string}

Verify that at least x elements in array pass validation

paramtypedescriptionexample
expectedNumbernumberexpected number of elements that satisfy validation1,2,3
arranyarray to validate$value, $currentDate()
validationFunctionfunction to verify conditionto be equal, to be above, to be below
expectedValueanyexpected value42, $value, $currentDate()
Then I expect at least 1 element(s) in '$arr' array to be above '$expectedValue'
Then I expect at least 2 element(s) in '$arr' array to be above '50'

I save {string} to memory as {string}

Set memory value

paramtypedescriptionexample
valuestringvalue
keystringkey
When I save 'value' to memory as 'key'

I save multiline string to memory as {string}: [Multiline]

Set multiline memory value

paramtypedescriptionexample
keystringkey
valuestringvalue

example:

When I save multiline string to memory as 'multilineString':
"""
foo
bar
"""

I set {string} = {string}

Save value to memory

paramtypedescriptionexample
keystringkey
valuestringvalue
When I set 'key' = 'value'

I save result of math expression {string} as {string}

Save result of math expression and save result to memory

paramtypedescriptionexample
expressionstringexpression to evaluate{$var} + 1
keystringkey
When I save result of math expression '{$variable} + 42' as 'result'
When I save result of math expression '{$random()} * 100' as 'result'

I save json to memory as {string}: [Multiline]

Save json value to memory (as JS object)

paramtypedescriptionexample
keystringkey
jsonstringmulti string with json{"key" : "value"}
When I save json to memory as 'object':
"""
{
"someKey": "someValue",
"otherKey": 42
}
"""
Then I expect '$object.someKey' to equal 'someValue'

I save key-value pairs to memory as {string}: [DataTable]

Save key-value pairs provided as Data Table to memory (as JS object)

paramtypedescriptionexample
keystringkey
kvstringkey-value pairs
When I save key-value pairs to memory as 'key':
| someKey | 42 |
| someOtherKey | $valueFromMemory |
Then I expect '$object.someKey' to equal '42'

I expect {string} array to be sorted by {string}

Verify that array is sorted by provided comparator provided as reference to function https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#description

paramtypedescription
arrstringmemory key of array
comparatorstringmemory key of sort comparator function
When I expect '$arr' array to be sorted by '$ascending'
// memory/index.js
class Memory {
ascending = (a, b) => a - b; //implementation of comparator function
}

I expect {string} {validation} at least one of {string}

Verify that the value satisfies validation with at least one value from the array

paramtypedescriptionexample
actualstringactual value or memory keystring, $value
validationstringvalidationto equal, to match, etc.
expectedstringarray of expected values or memory key$js([1,2,3]), $expected
When I expect '$text' to equal at least one of '$js(["free", "11.99"])'

I expect {string} {validation} at least one of: [DataTable]

Verify that the value satisfies validation with at least one value from the array

paramtypedescriptionexample
actualstringactual value or memory keystring, $value
validationstringvalidationto equal, to match, etc.
expectedDataTabledata table of expected values or memory key
When I expect '$text' to equal at least one of:
| free |
| 11.99 |

I expect {string} {validation} all of {string}

Verify that the value satisfies validation with all values from the array

paramtypedescriptionexample
actualstringactual value or memory keystring, $value
validationstringvalidationto equal, to match, etc.
expectedstringarray of expected values or memory key$js([1,2,3]), $expected
When I expect '$text' not to equal all of '$js(["free", "10.00"])'

I expect {string} {validation} all of: [DataTable]

Verify that the value satisfies validation with all values from the array

paramtypedescriptionexample
actualstringactual value or memory keystring, $value
validationstringvalidationto equal, to match, etc.
expectedDataTabledata table of expected values or memory key$js([1,2,3]), $expected
When I expect '$text' not to equal all of:
| free |
| 10.00 |