跳至主要内容
版本:29.7

与 DynamoDB 一起使用

使用 全局设置/拆卸异步测试环境 API,Jest 可以与 DynamoDB 顺畅地协作。

使用 jest-dynamodb 预设

Jest DynamoDB 提供了使用 DynamoDB 运行测试所需的所有配置。

  1. 首先,安装 @shelf/jest-dynamodb
npm install --save-dev @shelf/jest-dynamodb
  1. 在你的 Jest 配置中指定预设
{
"preset": "@shelf/jest-dynamodb"
}
  1. 创建 jest-dynamodb-config.js 并定义 DynamoDB 表

参见 创建表 API

module.exports = {
tables: [
{
TableName: `files`,
KeySchema: [{AttributeName: 'id', KeyType: 'HASH'}],
AttributeDefinitions: [{AttributeName: 'id', AttributeType: 'S'}],
ProvisionedThroughput: {ReadCapacityUnits: 1, WriteCapacityUnits: 1},
},
// etc
],
};
  1. 配置 DynamoDB 客户端
const {DocumentClient} = require('aws-sdk/clients/dynamodb');

const isTest = process.env.JEST_WORKER_ID;
const config = {
convertEmptyValues: true,
...(isTest && {
endpoint: 'localhost:8000',
sslEnabled: false,
region: 'local-env',
}),
};

const ddb = new DocumentClient(config);
  1. 编写测试
it('should insert item into table', async () => {
await ddb
.put({TableName: 'files', Item: {id: '1', hello: 'world'}})
.promise();

const {Item} = await ddb.get({TableName: 'files', Key: {id: '1'}}).promise();

expect(Item).toEqual({
id: '1',
hello: 'world',
});
});

无需加载任何依赖项。

参见 文档 获取详细信息。