2020-06-10 15:07:06 +00:00
|
|
|
const not = `(n't| not)?`;
|
2019-02-21 13:05:05 +00:00
|
|
|
export default function(scenario, assert, lastNthRequest) {
|
|
|
|
// lastNthRequest should return a
|
|
|
|
// {
|
|
|
|
// method: '',
|
|
|
|
// requestBody: '',
|
|
|
|
// requestHeaders: ''
|
|
|
|
// }
|
|
|
|
scenario
|
2019-12-17 18:47:37 +00:00
|
|
|
.then('the last $method requests included from yaml\n$yaml', function(method, data) {
|
|
|
|
const requests = lastNthRequest(null, method);
|
|
|
|
const a = new Set(data);
|
|
|
|
const b = new Set(
|
|
|
|
requests.map(function(item) {
|
|
|
|
return item.url;
|
|
|
|
})
|
|
|
|
);
|
|
|
|
const diff = new Set(
|
|
|
|
[...a].filter(function(item) {
|
|
|
|
return !b.has(item);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
assert.equal(diff.size, 0, `Expected requests "${[...diff].join(', ')}"`);
|
|
|
|
})
|
2020-06-10 15:07:06 +00:00
|
|
|
.then(`a $method request was${not} made to "$endpoint"`, function(method, negative, url) {
|
|
|
|
const isNegative = typeof negative !== 'undefined';
|
2019-12-17 18:47:37 +00:00
|
|
|
const requests = lastNthRequest(null, method);
|
2020-06-10 15:07:06 +00:00
|
|
|
const request = requests.some(function(item) {
|
2019-12-17 18:47:37 +00:00
|
|
|
return method === item.method && url === item.url;
|
|
|
|
});
|
2020-06-10 15:07:06 +00:00
|
|
|
if (isNegative) {
|
|
|
|
assert.notOk(request, `Didn't expect a ${method} request url to ${url}`);
|
|
|
|
} else {
|
|
|
|
assert.ok(request, `Expected a ${method} request url to ${url}`);
|
|
|
|
}
|
2019-12-17 18:47:37 +00:00
|
|
|
})
|
2020-01-24 12:26:28 +00:00
|
|
|
.then('a $method request was made to "$endpoint" with no body', function(method, url) {
|
|
|
|
const requests = lastNthRequest(null, method);
|
|
|
|
const request = requests.find(function(item) {
|
|
|
|
return method === item.method && url === item.url;
|
|
|
|
});
|
|
|
|
assert.equal(
|
|
|
|
request.requestBody,
|
|
|
|
null,
|
|
|
|
`Expected the request body to be null, was ${request.requestBody}`
|
|
|
|
);
|
|
|
|
})
|
|
|
|
.then('a $method request was made to "$endpoint" with the body "$body"', function(
|
|
|
|
method,
|
|
|
|
url,
|
|
|
|
body
|
|
|
|
) {
|
|
|
|
const requests = lastNthRequest(null, method);
|
|
|
|
const request = requests.find(function(item) {
|
|
|
|
return method === item.method && url === item.url;
|
|
|
|
});
|
|
|
|
assert.ok(request, `Expected a ${method} request url to ${url} with the body "${body}"`);
|
|
|
|
})
|
|
|
|
.then('a $method request was made to "$endpoint" from yaml\n$yaml', function(
|
|
|
|
method,
|
|
|
|
url,
|
|
|
|
yaml
|
|
|
|
) {
|
2019-12-17 18:47:37 +00:00
|
|
|
const requests = lastNthRequest(null, method);
|
|
|
|
const request = requests.find(function(item) {
|
|
|
|
return method === item.method && url === item.url;
|
|
|
|
});
|
|
|
|
let data = yaml.body || {};
|
|
|
|
const body = JSON.parse(request.requestBody);
|
|
|
|
Object.keys(data).forEach(function(key, i, arr) {
|
2020-01-24 12:26:28 +00:00
|
|
|
assert.deepEqual(
|
2019-12-17 18:47:37 +00:00
|
|
|
body[key],
|
|
|
|
data[key],
|
2020-01-24 12:26:28 +00:00
|
|
|
`Expected the payload to contain ${key} equaling ${JSON.stringify(
|
|
|
|
data[key]
|
|
|
|
)}, ${key} was ${JSON.stringify(body[key])}`
|
2019-12-17 18:47:37 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
data = yaml.headers || {};
|
|
|
|
const headers = request.requestHeaders;
|
|
|
|
Object.keys(data).forEach(function(key, i, arr) {
|
2020-01-24 12:26:28 +00:00
|
|
|
assert.deepEqual(
|
2019-12-17 18:47:37 +00:00
|
|
|
headers[key],
|
|
|
|
data[key],
|
2020-01-24 12:26:28 +00:00
|
|
|
`Expected the payload to contain ${key} equaling ${JSON.stringify(
|
|
|
|
data[key]
|
|
|
|
)}, ${key} was ${JSON.stringify(headers[key])}`
|
2019-12-17 18:47:37 +00:00
|
|
|
);
|
|
|
|
});
|
2020-02-07 15:50:50 +00:00
|
|
|
})
|
|
|
|
.then('a $method request was made to "$endpoint" without properties from yaml\n$yaml', function(
|
|
|
|
method,
|
|
|
|
url,
|
|
|
|
properties
|
|
|
|
) {
|
|
|
|
const requests = lastNthRequest(null, method);
|
|
|
|
const request = requests.find(function(item) {
|
|
|
|
return method === item.method && url === item.url;
|
|
|
|
});
|
|
|
|
const body = JSON.parse(request.requestBody);
|
|
|
|
properties.forEach(function(key, i, arr) {
|
|
|
|
assert.equal(
|
|
|
|
typeof body[key],
|
|
|
|
'undefined',
|
|
|
|
`Expected payload to not have a ${key} property`
|
|
|
|
);
|
|
|
|
});
|
2019-02-21 13:05:05 +00:00
|
|
|
});
|
|
|
|
}
|