From 5617455b2ba3b27f0aed42a711b15381b422ac80 Mon Sep 17 00:00:00 2001 From: Andrey Tolstoy Date: Fri, 1 Apr 2022 02:55:57 +0700 Subject: [PATCH] [test] communication/functions communication/variables fixes for large describes --- .../communication/functions/functions.spec.js | 34 +++++++++++++++--- .../communication/variables/variables.spec.js | 35 +++++++++++++++---- 2 files changed, 59 insertions(+), 10 deletions(-) diff --git a/user/tests/integration/communication/functions/functions.spec.js b/user/tests/integration/communication/functions/functions.spec.js index 0616e40c68..cf7f3f4b19 100644 --- a/user/tests/integration/communication/functions/functions.spec.js +++ b/user/tests/integration/communication/functions/functions.spec.js @@ -8,6 +8,31 @@ let device = null; let deviceId = null; let limits = null; +async function delayMs(ms) { + return new Promise(resolve => setTimeout(resolve, ms)); +} + +async function getDeviceFunctionsWithRetries({ deviceId, auth, expectedFuncNum = 0, retries = 10, delay = 1000 } = {}) { + let lastError; + for (let i = 0; i < retries; i++) { + try { + const resp = await api.getDevice({ deviceId, auth }); + const funcs = resp.body.functions; + if (expectedFuncNum > 0 && funcs.length !== expectedFuncNum) { + throw new Error('Number of functions returned from device does not match expected'); + } + return resp; + } catch (e) { + lastError = e; + } + await delayMs(i * delay); + } + if (lastError) { + throw lastError; + } + throw new Error('Error fetching functions from device'); +} + before(function() { api = this.particle.apiClient.instance; auth = this.particle.apiClient.token; @@ -16,9 +41,10 @@ before(function() { }); test('01_register_functions', async function() { - const resp = await api.getDevice({ deviceId, auth }); + const expectedFuncs = ['fn_1', 'fn_2']; + const resp = await getDeviceFunctionsWithRetries({ deviceId, auth, expectedFuncNum: expectedFuncs.length }); const funcs = resp.body.functions; - expect(funcs).to.include.members(['fn_1', 'fn_2']); + expect(funcs).to.include.members(expectedFuncs); }); test('02_publish_function_limits', async function() { @@ -51,10 +77,10 @@ test('05_check_current_thread', async function () { }); test('06_register_many_functions', async function() { - const resp = await api.getDevice({ deviceId, auth }); + const funcCount = device.platform.is('gen2') ? 50 : limits.max_num; + const resp = await getDeviceFunctionsWithRetries({ deviceId, auth, expectedFuncNum: funcCount }); const funcs = resp.body.functions; const expectedFuncs = []; - const funcCount = device.platform.is('gen2') ? 50 : limits.max_num; for (let i = 1; i <= funcCount; ++i) { let name = 'fn_' + i.toString().padStart(3, '0') + '_'; name += 'x'.repeat(Math.max(limits.max_name_len - name.length, 0)); diff --git a/user/tests/integration/communication/variables/variables.spec.js b/user/tests/integration/communication/variables/variables.spec.js index c4300b1b56..150758efab 100644 --- a/user/tests/integration/communication/variables/variables.spec.js +++ b/user/tests/integration/communication/variables/variables.spec.js @@ -19,6 +19,28 @@ async function delayMs(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } +async function getDeviceVariablesWithRerties({ deviceId, auth, expectedVarNum = 0, retries = 10, delay = 1000 } = {}) { + let lastError; + for (let i = 0; i < retries; i++) { + try { + const resp = await api.getDevice({ deviceId, auth }); + const vars = resp.body.variables; + if (expectedVarNum > 0 && Object.keys(vars).length !== expectedVarNum) { + throw new Error('Number of variables returned from device does not match expected'); + } + return resp; + } catch (e) { + lastError = e; + } + await delayMs(i * delay); + } + if (lastError) { + throw lastError; + } + throw new Error('Error fetching variables from device'); +} + + async function getVariableWithRetries({ deviceId, name, auth, retries = 10, delay = 1000 } = {}) { let lastError; for (let i = 0; i < retries; i++) { @@ -37,9 +59,7 @@ async function getVariableWithRetries({ deviceId, name, auth, retries = 10, dela } test('01_register_variables', async function() { - const resp = await api.getDevice({ deviceId, auth }); - const vars = resp.body.variables; - expect(vars).to.include({ + const expectedVars = { 'var_b': 'bool', 'var_i': 'int32', 'var_d': 'double', @@ -60,7 +80,10 @@ test('01_register_variables', async function() { 'std_fn_d': 'double', 'std_fn_c': 'string', 'std_fn_s': 'string' - }); + }; + const resp = await getDeviceVariablesWithRerties({ deviceId, auth, expectedVarNum: Object.keys(expectedVars).length }); + const vars = resp.body.variables; + expect(vars).to.include(expectedVars); }); test('02_check_variable_values', async function() { @@ -121,10 +144,10 @@ test('06_check_current_thread', async function() { }); test('07_register_many_variables', async function() { - const resp = await api.getDevice({ deviceId, auth }); + const varCount = device.platform.is('gen2') ? 50 : limits.max_num; + const resp = await getDeviceVariablesWithRerties({ deviceId, auth, expectedVarNum: varCount }); const vars = resp.body.variables; const expectedVars = {}; - const varCount = device.platform.is('gen2') ? 50 : limits.max_num; for (let i = 1; i <= varCount; ++i) { let name = 'var_' + i.toString().padStart(3, '0') + '_'; name += 'x'.repeat(Math.max(limits.max_name_len - name.length, 0));