Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for #381 - downloadHubDbTable would download incorrect results for large tables #384

Merged
merged 5 commits into from
Nov 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"name": "My Best Event",
"values": { "first_col": "e", "second_col": "f" }
}
]
],
"paging": null
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"total": 3,
"results": [
{ "name": "Paging 1", "values": { "first_col": "a", "second_col": "b" } },
{
"name": "Paging 2",
"values": { "first_col": "c", "second_col": "d" }
},
{
"name": "Paging 3",
"values": { "first_col": "e", "second_col": "f" }
}
],
"paging": {
"next": {
"after": "testing"
}
}
}
23 changes: 23 additions & 0 deletions packages/cms-lib/__tests__/hubdb.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const hubdb = require('../api/hubdb');
const { getCwd } = require('../path');
const hubdbJson = require('./fixtures/hubdb/hubdbTableData');
const hubdbFetchRowResponse = require('./fixtures/hubdb/hubdbFetchRowsResponse.json');
const hubdbFetchRowsWithPagingResponse = require('./fixtures/hubdb/hubdbFetchRowsWithPaging.json');
const hubdbFetchTableResponse = require('./fixtures/hubdb/hubdbFetchTableResponse.json');
const hubdbCreateTableResponse = require('./fixtures/hubdb/hubdbCreateTableResponse.json');
const hubdbCreateRowsResponse = require('./fixtures/hubdb/hubdbCreateRowsResponse.json');
Expand Down Expand Up @@ -43,6 +44,28 @@ describe('cms-lib/hubdb', () => {
});
});

describe('paging', () => {
it('fetches all results', async () => {
const accountId = 123;
const tableId = 456;
const destPath = 'tmp.json';
const projectCwd = '/home/tom/projects';

getCwd.mockReturnValue(projectCwd);

hubdb.fetchRows.mockReturnValue(hubdbFetchRowResponse);
hubdb.fetchTable.mockReturnValue(hubdbFetchTableResponse);

hubdb.fetchRows.mockReturnValueOnce(hubdbFetchRowsWithPagingResponse);

await downloadHubDbTable(accountId, tableId, destPath);
const fileOutput = JSON.parse(fs.outputFile.mock.results[1].value);
expect(fileOutput.rows.length).toEqual(6);
expect(fileOutput.rows[0].name).toMatchInlineSnapshot(`"Paging 1"`);
expect(fileOutput.rows[5].name).toMatchInlineSnapshot(`"My Best Event"`);
});
});

it('uploads hubdb table', async () => {
const accountId = 123;
const srcPath = 'tmp.json';
Expand Down
55 changes: 24 additions & 31 deletions packages/cms-lib/hubdb.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,23 @@ function convertToJSON(table, rows) {
};
}

async function fetchAllRows(accountId, tableId) {
let rows = [];
let after = null;
do {
const { paging, results } = await fetchRows(
accountId,
tableId,
after ? { after } : null
);

rows = rows.concat(results);
after = paging && paging.next ? paging.next.after : null;
} while (after !== null);

return rows;
}

async function downloadHubDbTable(accountId, tableId, dest) {
const table = await fetchTable(accountId, tableId);

Expand All @@ -135,21 +152,7 @@ async function downloadHubDbTable(accountId, tableId, dest) {
validateJsonPath(dest);
}

let totalRows = null;
let rows = [];
let count = 0;
let offset = 0;
while (totalRows === null || count < totalRows) {
const response = await fetchRows(accountId, tableId, { offset });
if (totalRows === null) {
totalRows = response.total;
}

count += response.results.length;
offset += response.results.length;
rows = rows.concat(response.results);
}

const rows = await fetchAllRows(accountId, tableId);
const tableToWrite = JSON.stringify(convertToJSON(table, rows));
const tableJson = prettier.format(tableToWrite, {
parser: 'json',
Expand All @@ -161,22 +164,12 @@ async function downloadHubDbTable(accountId, tableId, dest) {
}

async function clearHubDbTableRows(accountId, tableId) {
let totalRows = null;
let rows = [];
let count = 0;
let offset = 0;
while (totalRows === null || count < totalRows) {
const response = await fetchRows(accountId, tableId, { offset });
if (totalRows === null) {
totalRows = response.total;
}

count += response.results.length;
offset += response.results.length;
const rowIds = response.results.map(row => row.id);
rows = rows.concat(rowIds);
}
await deleteRows(accountId, tableId, rows);
const rows = await fetchAllRows(accountId, tableId);
await deleteRows(
accountId,
tableId,
rows.map(row => row.id)
);

return {
deletedRowCount: rows.length,
Expand Down