Jest 與 DynamoDB 一起使用

2021-09-04 13:43 更新

借助全局設(shè)置/拆卸異步測試環(huán)境API,Jest 可以與DynamoDB順利工作。

使用 jest-dynamodb 預(yù)設(shè)

Jest DynamoDB提供了使用 DynamoDB 運行測試所需的所有配置。

首先,安裝 ?@shelf/jest-dynamodb

  1. yarn add @shelf/jest-dynamodb --dev

在 Jest 配置中指定預(yù)設(shè)

  1. {
  2. "preset": "@shelf/jest-dynamodb"
  3. }

創(chuàng)建?jest-dynamodb-config.js?和定義 DynamoDB 表

  1. module.exports = {
  2. tables: [
  3. {
  4. TableName: `files`,
  5. KeySchema: [{AttributeName: 'id', KeyType: 'HASH'}],
  6. AttributeDefinitions: [{AttributeName: 'id', AttributeType: 'S'}],
  7. ProvisionedThroughput: {ReadCapacityUnits: 1, WriteCapacityUnits: 1},
  8. },
  9. // etc
  10. ],
  11. };

配置 DynamoDB 客戶端

  1. const {DocumentClient} = require('aws-sdk/clients/dynamodb');
  2. const isTest = process.env.JEST_WORKER_ID;
  3. const config = {
  4. convertEmptyValues: true,
  5. ...(isTest && {
  6. endpoint: 'localhost:8000',
  7. sslEnabled: false,
  8. region: 'local-env',
  9. }),
  10. };
  11. const ddb = new DocumentClient(config);

編寫測試

  1. it('should insert item into table', async () => {
  2. await ddb
  3. .put({TableName: 'files', Item: {id: '1', hello: 'world'}})
  4. .promise();
  5. const {Item} = await ddb.get({TableName: 'files', Key: {id: '1'}}).promise();
  6. expect(Item).toEqual({
  7. id: '1',
  8. hello: 'world',
  9. });
  10. });

無需加載任何依賴項。

有關(guān)詳細(xì)信息,請參閱文檔。


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號