2021-03-15 20:45:39 +01:00
|
|
|
const aws = {}
|
|
|
|
|
2021-05-04 12:32:22 +02:00
|
|
|
const response = body => () => ({ promise: () => body })
|
2021-03-15 20:45:39 +01:00
|
|
|
|
|
|
|
function DocumentClient() {
|
|
|
|
this.put = jest.fn(response({}))
|
|
|
|
this.query = jest.fn(
|
|
|
|
response({
|
|
|
|
Items: [],
|
|
|
|
})
|
|
|
|
)
|
|
|
|
this.scan = jest.fn(
|
|
|
|
response({
|
|
|
|
Items: [
|
|
|
|
{
|
|
|
|
Name: "test",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
})
|
|
|
|
)
|
|
|
|
this.get = jest.fn(response({}))
|
|
|
|
this.update = jest.fn(response({}))
|
|
|
|
this.delete = jest.fn(response({}))
|
|
|
|
}
|
|
|
|
|
|
|
|
function S3() {
|
|
|
|
this.listObjects = jest.fn(
|
|
|
|
response({
|
2021-03-16 14:54:39 +01:00
|
|
|
Contents: {},
|
2021-03-15 20:45:39 +01:00
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
aws.DynamoDB = { DocumentClient }
|
2021-03-16 14:54:39 +01:00
|
|
|
aws.S3 = S3
|
2021-03-15 20:45:39 +01:00
|
|
|
aws.config = { update: jest.fn() }
|
|
|
|
|
|
|
|
module.exports = aws
|