如何在所有测试之前设置DynamoDB表,并在所有测试之后将其拆除?

时间:2019-07-16 05:02:40

标签: node.js testing amazon-dynamodb jestjs teardown

我有一个简单的Jest案例,需要在开始时创建表,填充该表,然后运行一些测试。所有测试完成后,我需要删除DynamoDB中的表。

我尝试过使用 beforeAll 创建表,然后进行测试,然后尝试使用 afterAll 删除表。 但是,它不确定地运行,因此总体在创建表之前尝试运行,或者在创建表之前尝试删除该表。

我的代码

beforeAll(() => {
    await createTable();
    populateTable();
    //setupLDAPConnection();
});

afterAll(() => {
    deleteTable();
});

describe('The program gets list of AD groups', function () {

    it('should get a list of user groups in the Active Directory', async () => {
        //const result = await userSyncFunction.handler(undefined);
        //expect(result).to.be.an('object');
        //console.log('2');
    });
});


populateTable = () => {
    agents.forEach((agent) => {
        docClient.put(agent, (err, data) => {
            if (err) {
                console.log("Error", err);
              } else {
                console.log("Agent inserted", data);
              }
        });
    });
};

createTable = async () => {
    dynamoDb.createTable(agent_table, (err, data) => {
    if (err) {
        console.log("Error", err);
      } else {
        console.log("Table created");
      }
   });
};

deleteTable = () => {
    dynamoDb.deleteTable( { TableName: 'AGENT_LIST' }, function(err, data) {
        if (err)
            console.log(err, err.stack);
        else {
            console.log('Table deleted');
        }
    });
};

有什么想法吗?

谢谢。

1 个答案:

答案 0 :(得分:1)

beforeAll内的函数应该是async,而不是createTable,因为您想在那里await。因此,它应该像这样:

beforeAll(async () => {
    await createTable();
    populateTable();
    //setupLDAPConnection();
});