@hubspot/cli 6.2.0 → 6.2.2-experimental.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.d.ts +2 -0
- package/bin/cli.js +107 -128
- package/commands/accounts/clean.d.ts +4 -0
- package/commands/accounts/clean.js +80 -116
- package/commands/accounts/info.d.ts +4 -0
- package/commands/accounts/info.js +30 -43
- package/commands/accounts/list.d.ts +4 -0
- package/commands/accounts/list.js +63 -92
- package/commands/accounts/remove.d.ts +4 -0
- package/commands/accounts/remove.js +41 -73
- package/commands/accounts/rename.d.ts +4 -0
- package/commands/accounts/rename.js +24 -41
- package/commands/accounts/use.d.ts +4 -0
- package/commands/accounts/use.js +34 -57
- package/commands/accounts.d.ts +3 -0
- package/commands/accounts.js +14 -18
- package/commands/auth.d.ts +4 -0
- package/commands/auth.js +131 -200
- package/commands/cms/convertFields.d.ts +4 -0
- package/commands/cms/convertFields.js +64 -81
- package/commands/cms/lighthouseScore.d.ts +4 -0
- package/commands/cms/lighthouseScore.js +234 -298
- package/commands/cms/reactModules.d.ts +4 -0
- package/commands/cms/reactModules.js +44 -53
- package/commands/cms.d.ts +3 -0
- package/commands/cms.js +9 -13
- package/commands/config/set/allowUsageTracking.d.ts +4 -0
- package/commands/config/set/allowUsageTracking.js +31 -38
- package/commands/config/set/defaultMode.d.ts +4 -0
- package/commands/config/set/defaultMode.js +32 -43
- package/commands/config/set/httpTimeout.d.ts +4 -0
- package/commands/config/set/httpTimeout.js +21 -30
- package/commands/config/set.d.ts +4 -0
- package/commands/config/set.js +61 -76
- package/commands/config.d.ts +3 -0
- package/commands/config.js +5 -9
- package/commands/create/api-sample.d.ts +13 -0
- package/commands/create/api-sample.js +52 -74
- package/commands/create/app.d.ts +10 -0
- package/commands/create/app.js +6 -7
- package/commands/create/function.d.ts +6 -0
- package/commands/create/function.js +13 -14
- package/commands/create/index.d.ts +109 -0
- package/commands/create/index.js +10 -9
- package/commands/create/module.d.ts +11 -0
- package/commands/create/module.js +19 -19
- package/commands/create/react-app.d.ts +9 -0
- package/commands/create/react-app.js +5 -6
- package/commands/create/template.d.ts +12 -0
- package/commands/create/template.js +21 -24
- package/commands/create/vue-app.d.ts +9 -0
- package/commands/create/vue-app.js +5 -6
- package/commands/create/webpack-serverless.d.ts +9 -0
- package/commands/create/webpack-serverless.js +5 -6
- package/commands/create/website-theme.d.ts +9 -0
- package/commands/create/website-theme.js +13 -15
- package/commands/create.d.ts +4 -0
- package/commands/create.js +62 -80
- package/commands/customObject/create.d.ts +4 -0
- package/commands/customObject/create.js +31 -47
- package/commands/customObject/schema/create.d.ts +4 -0
- package/commands/customObject/schema/create.js +40 -67
- package/commands/customObject/schema/delete.d.ts +4 -0
- package/commands/customObject/schema/delete.js +26 -39
- package/commands/customObject/schema/fetch-all.d.ts +4 -0
- package/commands/customObject/schema/fetch-all.js +28 -39
- package/commands/customObject/schema/fetch.d.ts +4 -0
- package/commands/customObject/schema/fetch.js +46 -63
- package/commands/customObject/schema/list.d.ts +3 -0
- package/commands/customObject/schema/list.js +12 -17
- package/commands/customObject/schema/update.d.ts +4 -0
- package/commands/customObject/schema/update.js +44 -72
- package/commands/customObject/schema.d.ts +3 -0
- package/commands/customObject/schema.js +10 -12
- package/commands/customObject.d.ts +3 -0
- package/commands/customObject.js +12 -22
- package/commands/feedback.d.ts +4 -0
- package/commands/feedback.js +23 -33
- package/commands/fetch.d.ts +4 -0
- package/commands/fetch.js +51 -78
- package/commands/filemanager/fetch.d.ts +4 -0
- package/commands/filemanager/fetch.js +36 -56
- package/commands/filemanager/upload.d.ts +4 -0
- package/commands/filemanager/upload.js +86 -128
- package/commands/filemanager.d.ts +3 -0
- package/commands/filemanager.js +10 -18
- package/commands/functions/deploy.d.ts +4 -0
- package/commands/functions/deploy.js +74 -99
- package/commands/functions/list.d.ts +4 -0
- package/commands/functions/list.js +29 -47
- package/commands/functions/server.d.ts +4 -0
- package/commands/functions/server.js +48 -65
- package/commands/functions.d.ts +3 -0
- package/commands/functions.js +11 -15
- package/commands/hubdb/clear.d.ts +4 -0
- package/commands/hubdb/clear.js +35 -56
- package/commands/hubdb/create.d.ts +4 -0
- package/commands/hubdb/create.js +32 -57
- package/commands/hubdb/delete.d.ts +4 -0
- package/commands/hubdb/delete.js +27 -44
- package/commands/hubdb/fetch.d.ts +4 -0
- package/commands/hubdb/fetch.js +28 -46
- package/commands/hubdb.d.ts +3 -0
- package/commands/hubdb.js +10 -14
- package/commands/init.d.ts +4 -0
- package/commands/init.js +101 -160
- package/commands/lint.d.ts +4 -0
- package/commands/lint.js +32 -45
- package/commands/list.d.ts +4 -0
- package/commands/list.js +72 -101
- package/commands/logs.d.ts +4 -0
- package/commands/logs.js +96 -121
- package/commands/module/marketplace-validate.d.ts +4 -0
- package/commands/module/marketplace-validate.js +30 -57
- package/commands/module.d.ts +3 -0
- package/commands/module.js +5 -9
- package/commands/mv.d.ts +4 -0
- package/commands/mv.js +51 -71
- package/commands/open.d.ts +4 -0
- package/commands/open.js +46 -62
- package/commands/project/add.d.ts +4 -0
- package/commands/project/add.js +45 -70
- package/commands/project/cloneApp.d.ts +4 -0
- package/commands/project/cloneApp.js +117 -180
- package/commands/project/create.d.ts +4 -0
- package/commands/project/create.js +47 -81
- package/commands/project/deploy.d.ts +4 -0
- package/commands/project/deploy.js +103 -182
- package/commands/project/dev.d.ts +4 -0
- package/commands/project/dev.js +123 -227
- package/commands/project/download.d.ts +4 -0
- package/commands/project/download.js +71 -123
- package/commands/project/installDeps.d.ts +6 -0
- package/commands/project/installDeps.js +50 -59
- package/commands/project/listBuilds.d.ts +4 -0
- package/commands/project/listBuilds.js +95 -139
- package/commands/project/logs.d.ts +4 -0
- package/commands/project/logs.js +84 -128
- package/commands/project/migrateApp.d.ts +4 -0
- package/commands/project/migrateApp.js +156 -248
- package/commands/project/open.d.ts +4 -0
- package/commands/project/open.js +42 -68
- package/commands/project/upload.d.ts +4 -0
- package/commands/project/upload.js +70 -116
- package/commands/project/watch.d.ts +4 -0
- package/commands/project/watch.js +92 -152
- package/commands/project.d.ts +3 -0
- package/commands/project.js +19 -23
- package/commands/remove.d.ts +4 -0
- package/commands/remove.js +26 -43
- package/commands/sandbox/create.d.ts +4 -0
- package/commands/sandbox/create.js +141 -187
- package/commands/sandbox/delete.d.ts +4 -0
- package/commands/sandbox/delete.js +164 -221
- package/commands/sandbox.d.ts +3 -0
- package/commands/sandbox.js +8 -12
- package/commands/secrets/addSecret.d.ts +4 -0
- package/commands/secrets/addSecret.js +32 -52
- package/commands/secrets/deleteSecret.d.ts +4 -0
- package/commands/secrets/deleteSecret.js +31 -50
- package/commands/secrets/listSecrets.d.ts +4 -0
- package/commands/secrets/listSecrets.js +26 -42
- package/commands/secrets/updateSecret.d.ts +4 -0
- package/commands/secrets/updateSecret.js +33 -53
- package/commands/secrets.d.ts +3 -0
- package/commands/secrets.js +10 -13
- package/commands/theme/generate-selectors.d.ts +4 -0
- package/commands/theme/generate-selectors.js +127 -192
- package/commands/theme/marketplace-validate.d.ts +4 -0
- package/commands/theme/marketplace-validate.js +30 -57
- package/commands/theme/preview.d.ts +4 -0
- package/commands/theme/preview.js +161 -196
- package/commands/theme.d.ts +3 -0
- package/commands/theme.js +7 -11
- package/commands/upload.d.ts +4 -0
- package/commands/upload.js +197 -287
- package/commands/watch.d.ts +4 -0
- package/commands/watch.js +126 -172
- package/lang/en.lyaml +2 -3
- package/lib/DevServerManager.d.ts +35 -0
- package/lib/DevServerManager.js +97 -124
- package/lib/LocalDevManager.d.ts +41 -0
- package/lib/LocalDevManager.js +320 -490
- package/lib/accountTypes.d.ts +6 -0
- package/lib/accountTypes.js +16 -32
- package/lib/buildAccount.d.ts +22 -0
- package/lib/buildAccount.js +130 -179
- package/lib/commonOpts.d.ts +20 -0
- package/lib/commonOpts.js +58 -91
- package/lib/constants.d.ts +83 -0
- package/lib/constants.js +61 -71
- package/lib/debugInfo.d.ts +3 -0
- package/lib/debugInfo.js +12 -13
- package/lib/dependencyManagement.d.ts +7 -0
- package/lib/dependencyManagement.js +90 -132
- package/lib/developerTestAccounts.d.ts +7 -0
- package/lib/developerTestAccounts.js +65 -91
- package/lib/enums/exitCodes.d.ts +5 -0
- package/lib/enums/exitCodes.js +5 -7
- package/lib/environment.d.ts +1 -0
- package/lib/environment.js +10 -10
- package/lib/errorHandlers/index.d.ts +19 -0
- package/lib/errorHandlers/index.js +64 -80
- package/lib/errorHandlers/suppressError.d.ts +1 -0
- package/lib/errorHandlers/suppressError.js +64 -106
- package/lib/filesystem.d.ts +2 -0
- package/lib/filesystem.js +16 -24
- package/lib/generate-selectors.d.ts +6 -0
- package/lib/generate-selectors.js +99 -137
- package/lib/getFunctionArrays.d.ts +1 -0
- package/lib/getFunctionArrays.js +12 -13
- package/lib/hasFeature.d.ts +1 -0
- package/lib/hasFeature.js +5 -11
- package/lib/hasFlag.d.ts +2 -0
- package/lib/hasFlag.js +6 -10
- package/lib/hublValidate.d.ts +4 -0
- package/lib/hublValidate.js +20 -24
- package/lib/interpolation.d.ts +10 -0
- package/lib/interpolation.js +48 -92
- package/lib/interpolationHelpers.d.ts +6 -0
- package/lib/interpolationHelpers.js +19 -19
- package/lib/lang.d.ts +3 -0
- package/lib/lang.js +50 -78
- package/lib/links.d.ts +127 -0
- package/lib/links.js +92 -114
- package/lib/localDev.d.ts +11 -0
- package/lib/localDev.js +283 -433
- package/lib/marketplace-validate.d.ts +5 -0
- package/lib/marketplace-validate.js +103 -126
- package/lib/oauth.d.ts +1 -0
- package/lib/oauth.js +62 -78
- package/lib/polling.d.ts +1 -0
- package/lib/polling.js +24 -26
- package/lib/process.d.ts +2 -0
- package/lib/process.js +39 -53
- package/lib/projectLogsManager.d.ts +19 -0
- package/lib/projectLogsManager.js +76 -130
- package/lib/projectStructure.d.ts +13 -0
- package/lib/projectStructure.js +87 -109
- package/lib/projects.d.ts +40 -0
- package/lib/projects.js +589 -957
- package/lib/projectsWatch.d.ts +1 -0
- package/lib/projectsWatch.js +122 -228
- package/lib/prompts/accountNamePrompt.d.ts +11 -0
- package/lib/prompts/accountNamePrompt.js +58 -65
- package/lib/prompts/accountsPrompt.d.ts +3 -0
- package/lib/prompts/accountsPrompt.js +31 -37
- package/lib/prompts/activeInstallConfirmationPrompt.d.ts +1 -0
- package/lib/prompts/activeInstallConfirmationPrompt.js +11 -13
- package/lib/prompts/cleanUploadPrompt.d.ts +1 -0
- package/lib/prompts/cleanUploadPrompt.js +11 -13
- package/lib/prompts/cmsFieldPrompt.d.ts +1 -0
- package/lib/prompts/cmsFieldPrompt.js +35 -39
- package/lib/prompts/createApiSamplePrompt.d.ts +1 -0
- package/lib/prompts/createApiSamplePrompt.js +47 -52
- package/lib/prompts/createFunctionPrompt.d.ts +1 -0
- package/lib/prompts/createFunctionPrompt.js +55 -56
- package/lib/prompts/createModulePrompt.d.ts +1 -0
- package/lib/prompts/createModulePrompt.js +45 -50
- package/lib/prompts/createProjectPrompt.d.ts +1 -0
- package/lib/prompts/createProjectPrompt.js +88 -127
- package/lib/prompts/createTemplatePrompt.d.ts +1 -0
- package/lib/prompts/createTemplatePrompt.js +16 -19
- package/lib/prompts/deployBuildIdPrompt.d.ts +1 -0
- package/lib/prompts/deployBuildIdPrompt.js +13 -15
- package/lib/prompts/downloadProjectPrompt.d.ts +1 -0
- package/lib/prompts/downloadProjectPrompt.js +36 -40
- package/lib/prompts/feedbackPrompt.d.ts +2 -0
- package/lib/prompts/feedbackPrompt.js +27 -30
- package/lib/prompts/folderOverwritePrompt.d.ts +1 -0
- package/lib/prompts/folderOverwritePrompt.js +8 -10
- package/lib/prompts/installPublicAppPrompt.d.ts +1 -0
- package/lib/prompts/installPublicAppPrompt.js +27 -42
- package/lib/prompts/personalAccessKeyPrompt.d.ts +69 -0
- package/lib/prompts/personalAccessKeyPrompt.js +102 -110
- package/lib/prompts/previewPrompt.d.ts +2 -0
- package/lib/prompts/previewPrompt.js +44 -47
- package/lib/prompts/projectAddPrompt.d.ts +1 -0
- package/lib/prompts/projectAddPrompt.js +35 -38
- package/lib/prompts/projectDevTargetAccountPrompt.d.ts +4 -0
- package/lib/prompts/projectDevTargetAccountPrompt.js +148 -193
- package/lib/prompts/projectNamePrompt.d.ts +1 -0
- package/lib/prompts/projectNamePrompt.js +23 -25
- package/lib/prompts/projectsLogsPrompt.d.ts +5 -0
- package/lib/prompts/projectsLogsPrompt.js +19 -27
- package/lib/prompts/promptUtils.d.ts +2 -0
- package/lib/prompts/promptUtils.js +15 -17
- package/lib/prompts/sandboxesPrompt.d.ts +2 -0
- package/lib/prompts/sandboxesPrompt.js +48 -59
- package/lib/prompts/secretPrompt.d.ts +1 -0
- package/lib/prompts/secretPrompt.js +13 -16
- package/lib/prompts/selectPublicAppPrompt.d.ts +5 -0
- package/lib/prompts/selectPublicAppPrompt.js +55 -81
- package/lib/prompts/setAsDefaultAccountPrompt.d.ts +1 -0
- package/lib/prompts/setAsDefaultAccountPrompt.js +17 -24
- package/lib/prompts/uploadPrompt.d.ts +1 -0
- package/lib/prompts/uploadPrompt.js +28 -30
- package/lib/regex.d.ts +1 -0
- package/lib/regex.js +2 -2
- package/lib/sandboxSync.d.ts +8 -0
- package/lib/sandboxSync.js +98 -166
- package/lib/sandboxes.d.ts +40 -0
- package/lib/sandboxes.js +199 -316
- package/lib/schema.d.ts +2 -0
- package/lib/schema.js +20 -26
- package/lib/serverlessLogs.d.ts +8 -0
- package/lib/serverlessLogs.js +128 -172
- package/lib/ui/SpinniesManager.d.ts +61 -0
- package/lib/ui/SpinniesManager.js +196 -254
- package/lib/ui/git.d.ts +1 -0
- package/lib/ui/git.js +18 -19
- package/lib/ui/index.d.ts +36 -0
- package/lib/ui/index.js +115 -167
- package/lib/ui/serverlessFunctionLogs.d.ts +1 -0
- package/lib/ui/serverlessFunctionLogs.js +51 -70
- package/lib/ui/spinniesUtils.d.ts +60 -0
- package/lib/ui/spinniesUtils.js +109 -133
- package/lib/ui/supportHyperlinks.d.ts +3 -0
- package/lib/ui/supportHyperlinks.js +46 -61
- package/lib/ui/supportsColor.d.ts +13 -0
- package/lib/ui/supportsColor.js +78 -108
- package/lib/ui/table.d.ts +2 -0
- package/lib/ui/table.js +47 -55
- package/lib/upload.d.ts +1 -0
- package/lib/upload.js +37 -42
- package/lib/usageTracking.d.ts +6 -0
- package/lib/usageTracking.js +131 -155
- package/lib/validation.d.ts +16 -0
- package/lib/validation.js +142 -203
- package/package.json +78 -48
- package/CHANGELOG.md +0 -16
- package/LICENSE +0 -12
- package/README.md +0 -154
- package/commands/__tests__/projects.test.js +0 -105
- package/commands/project/__tests__/deploy.test.js +0 -443
- package/commands/project/__tests__/installDeps.test.js +0 -168
- package/commands/project/__tests__/logs.test.js +0 -304
- package/hubspot.sample.config.yml +0 -28
- package/jest.config.js +0 -4
- package/lib/__tests__/commonOpts.test.js +0 -83
- package/lib/__tests__/dependencyManagement.test.js +0 -243
- package/lib/__tests__/downloadProjectPrompt.test.js +0 -31
- package/lib/__tests__/projectLogsManager.test.js +0 -212
- package/lib/__tests__/projects.test.js +0 -140
- package/lib/__tests__/serverlessLogs.test.js +0 -162
- package/lib/__tests__/validation.test.js +0 -140
- package/lib/prompts/__tests__/projectsLogsPrompt.test.js +0 -46
|
@@ -1,243 +0,0 @@
|
|
|
1
|
-
jest.mock('../projects');
|
|
2
|
-
jest.mock('@hubspot/local-dev-lib/logger');
|
|
3
|
-
jest.mock('@hubspot/local-dev-lib/fs');
|
|
4
|
-
jest.mock('../ui/SpinniesManager');
|
|
5
|
-
jest.mock('fs', () => ({
|
|
6
|
-
...jest.requireActual('fs'),
|
|
7
|
-
existsSync: jest.fn().mockReturnValue(true),
|
|
8
|
-
}));
|
|
9
|
-
|
|
10
|
-
const util = require('util');
|
|
11
|
-
const {
|
|
12
|
-
isGloballyInstalled,
|
|
13
|
-
installPackages,
|
|
14
|
-
getProjectPackageJsonLocations,
|
|
15
|
-
} = require('../dependencyManagement');
|
|
16
|
-
const { walk } = require('@hubspot/local-dev-lib/fs');
|
|
17
|
-
const path = require('path');
|
|
18
|
-
const { getProjectConfig } = require('../projects');
|
|
19
|
-
const SpinniesManager = require('../ui/SpinniesManager');
|
|
20
|
-
const { existsSync } = require('fs');
|
|
21
|
-
|
|
22
|
-
describe('cli/lib/dependencyManagement', () => {
|
|
23
|
-
let execMock;
|
|
24
|
-
|
|
25
|
-
const projectDir = path.join('path', 'to', 'project');
|
|
26
|
-
const srcDir = 'src';
|
|
27
|
-
const appDir = path.join(projectDir, srcDir, 'app');
|
|
28
|
-
const appFunctionsDir = path.join(appDir, 'app.functions');
|
|
29
|
-
const extensionsDir = path.join(appDir, 'exensions');
|
|
30
|
-
const projectName = 'super cool test project';
|
|
31
|
-
const installLocations = [appFunctionsDir, extensionsDir];
|
|
32
|
-
|
|
33
|
-
beforeEach(() => {
|
|
34
|
-
execMock = jest.fn();
|
|
35
|
-
util.promisify = jest.fn().mockReturnValue(execMock);
|
|
36
|
-
getProjectConfig.mockResolvedValue({
|
|
37
|
-
projectDir,
|
|
38
|
-
projectConfig: {
|
|
39
|
-
srcDir,
|
|
40
|
-
name: projectName,
|
|
41
|
-
},
|
|
42
|
-
});
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
describe('isGloballyInstalled', () => {
|
|
46
|
-
it('should return true when exec is successful', async () => {
|
|
47
|
-
const actual = await isGloballyInstalled('npm');
|
|
48
|
-
expect(actual).toBe(true);
|
|
49
|
-
expect(execMock).toHaveBeenCalledTimes(1);
|
|
50
|
-
expect(execMock).toHaveBeenCalledWith('npm --version');
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
it('should return false when exec is unsuccessful', async () => {
|
|
54
|
-
execMock = jest.fn().mockImplementationOnce(() => {
|
|
55
|
-
throw new Error('unsuccessful');
|
|
56
|
-
});
|
|
57
|
-
util.promisify = jest.fn().mockReturnValueOnce(execMock);
|
|
58
|
-
const actual = await isGloballyInstalled('npm');
|
|
59
|
-
expect(actual).toBe(false);
|
|
60
|
-
expect(execMock).toHaveBeenCalledTimes(1);
|
|
61
|
-
expect(execMock).toHaveBeenCalledWith('npm --version');
|
|
62
|
-
});
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
describe('installPackages', () => {
|
|
66
|
-
it('should setup a loading spinner', async () => {
|
|
67
|
-
const packages = ['package1', 'package2'];
|
|
68
|
-
await installPackages({ packages, installLocations });
|
|
69
|
-
expect(SpinniesManager.init).toHaveBeenCalledTimes(
|
|
70
|
-
installLocations.length
|
|
71
|
-
);
|
|
72
|
-
expect(SpinniesManager.add).toHaveBeenCalledTimes(
|
|
73
|
-
installLocations.length
|
|
74
|
-
);
|
|
75
|
-
expect(SpinniesManager.succeed).toHaveBeenCalledTimes(
|
|
76
|
-
installLocations.length
|
|
77
|
-
);
|
|
78
|
-
});
|
|
79
|
-
|
|
80
|
-
it('should install the provided packages in all the provided install locations', async () => {
|
|
81
|
-
const packages = ['package1', 'package2'];
|
|
82
|
-
await installPackages({ packages, installLocations });
|
|
83
|
-
|
|
84
|
-
expect(execMock).toHaveBeenCalledTimes(installLocations.length);
|
|
85
|
-
expect(SpinniesManager.add).toHaveBeenCalledTimes(
|
|
86
|
-
installLocations.length
|
|
87
|
-
);
|
|
88
|
-
expect(SpinniesManager.succeed).toHaveBeenCalledTimes(
|
|
89
|
-
installLocations.length
|
|
90
|
-
);
|
|
91
|
-
|
|
92
|
-
for (const location of installLocations) {
|
|
93
|
-
expect(execMock).toHaveBeenCalledWith(`npm install package1 package2`, {
|
|
94
|
-
cwd: location,
|
|
95
|
-
});
|
|
96
|
-
expect(SpinniesManager.add).toHaveBeenCalledWith(
|
|
97
|
-
`installingDependencies-${location}`,
|
|
98
|
-
{
|
|
99
|
-
text: `Installing [package1, package2] in ${location}`,
|
|
100
|
-
}
|
|
101
|
-
);
|
|
102
|
-
expect(SpinniesManager.succeed).toHaveBeenCalledWith(
|
|
103
|
-
`installingDependencies-${location}`,
|
|
104
|
-
{
|
|
105
|
-
text: `Installed dependencies in ${location}`,
|
|
106
|
-
}
|
|
107
|
-
);
|
|
108
|
-
}
|
|
109
|
-
});
|
|
110
|
-
|
|
111
|
-
it('should use the provided install locations', async () => {
|
|
112
|
-
await installPackages({ installLocations });
|
|
113
|
-
expect(execMock).toHaveBeenCalledTimes(installLocations.length);
|
|
114
|
-
expect(execMock).toHaveBeenCalledWith(`npm install`, {
|
|
115
|
-
cwd: appFunctionsDir,
|
|
116
|
-
});
|
|
117
|
-
expect(execMock).toHaveBeenCalledWith(`npm install`, {
|
|
118
|
-
cwd: extensionsDir,
|
|
119
|
-
});
|
|
120
|
-
});
|
|
121
|
-
|
|
122
|
-
it('should locate the projects package.json files when install locations is not provided', async () => {
|
|
123
|
-
const installLocations = [
|
|
124
|
-
path.join(appFunctionsDir, 'package.json'),
|
|
125
|
-
path.join(extensionsDir, 'package.json'),
|
|
126
|
-
];
|
|
127
|
-
|
|
128
|
-
walk.mockResolvedValue(installLocations);
|
|
129
|
-
|
|
130
|
-
getProjectConfig.mockResolvedValue({
|
|
131
|
-
projectDir,
|
|
132
|
-
projectConfig: {
|
|
133
|
-
srcDir,
|
|
134
|
-
},
|
|
135
|
-
});
|
|
136
|
-
|
|
137
|
-
await installPackages({});
|
|
138
|
-
// It's called once per each install location, plus once to check if npm installed
|
|
139
|
-
expect(execMock).toHaveBeenCalledTimes(installLocations.length + 1);
|
|
140
|
-
expect(execMock).toHaveBeenCalledWith(`npm install`, {
|
|
141
|
-
cwd: appFunctionsDir,
|
|
142
|
-
});
|
|
143
|
-
expect(execMock).toHaveBeenCalledWith(`npm install`, {
|
|
144
|
-
cwd: extensionsDir,
|
|
145
|
-
});
|
|
146
|
-
});
|
|
147
|
-
|
|
148
|
-
it('should throw an error when installing the dependencies fails', async () => {
|
|
149
|
-
execMock = jest.fn().mockImplementation(command => {
|
|
150
|
-
if (command !== 'npm --version') {
|
|
151
|
-
throw new Error('OH NO');
|
|
152
|
-
}
|
|
153
|
-
});
|
|
154
|
-
|
|
155
|
-
util.promisify = jest.fn().mockReturnValue(execMock);
|
|
156
|
-
|
|
157
|
-
const installLocations = [
|
|
158
|
-
path.join(appFunctionsDir, 'package.json'),
|
|
159
|
-
path.join(extensionsDir, 'package.json'),
|
|
160
|
-
];
|
|
161
|
-
|
|
162
|
-
walk.mockResolvedValue(installLocations);
|
|
163
|
-
|
|
164
|
-
getProjectConfig.mockResolvedValue({
|
|
165
|
-
projectDir,
|
|
166
|
-
projectConfig: {
|
|
167
|
-
srcDir,
|
|
168
|
-
},
|
|
169
|
-
});
|
|
170
|
-
|
|
171
|
-
await expect(() => installPackages({})).rejects.toThrowError(
|
|
172
|
-
`Installing dependencies for ${appFunctionsDir} failed`
|
|
173
|
-
);
|
|
174
|
-
|
|
175
|
-
expect(SpinniesManager.fail).toHaveBeenCalledTimes(
|
|
176
|
-
installLocations.length
|
|
177
|
-
);
|
|
178
|
-
|
|
179
|
-
expect(SpinniesManager.fail).toHaveBeenCalledWith(
|
|
180
|
-
`installingDependencies-${appFunctionsDir}`,
|
|
181
|
-
{
|
|
182
|
-
text: `Installing dependencies for ${appFunctionsDir} failed`,
|
|
183
|
-
}
|
|
184
|
-
);
|
|
185
|
-
expect(SpinniesManager.fail).toHaveBeenCalledWith(
|
|
186
|
-
`installingDependencies-${extensionsDir}`,
|
|
187
|
-
{
|
|
188
|
-
text: `Installing dependencies for ${extensionsDir} failed`,
|
|
189
|
-
}
|
|
190
|
-
);
|
|
191
|
-
});
|
|
192
|
-
});
|
|
193
|
-
|
|
194
|
-
describe('getProjectPackageJsonFiles', () => {
|
|
195
|
-
it('should throw an error when ran outside the boundary of a project', async () => {
|
|
196
|
-
getProjectConfig.mockResolvedValue({});
|
|
197
|
-
await expect(() => getProjectPackageJsonLocations()).rejects.toThrowError(
|
|
198
|
-
'No project detected. Run this command from a project directory.'
|
|
199
|
-
);
|
|
200
|
-
});
|
|
201
|
-
|
|
202
|
-
it('should throw an error if npm is not globally installed', async () => {
|
|
203
|
-
execMock = jest.fn().mockImplementation(() => {
|
|
204
|
-
throw new Error('OH NO');
|
|
205
|
-
});
|
|
206
|
-
util.promisify = jest.fn().mockReturnValue(execMock);
|
|
207
|
-
await expect(() => getProjectPackageJsonLocations()).rejects.toThrowError(
|
|
208
|
-
/This command depends on npm, install/
|
|
209
|
-
);
|
|
210
|
-
});
|
|
211
|
-
|
|
212
|
-
it('should throw an error if the project directory does not exist', async () => {
|
|
213
|
-
existsSync.mockReturnValueOnce(false);
|
|
214
|
-
await expect(() => getProjectPackageJsonLocations()).rejects.toThrowError(
|
|
215
|
-
`No dependencies to install. The project ${projectName} folder might be missing component or subcomponent files. Learn how to create a project from scratch.: https://developers.hubspot.com/beta-docs/guides/crm/intro/create-a-project`
|
|
216
|
-
);
|
|
217
|
-
});
|
|
218
|
-
|
|
219
|
-
it('should ignore package.json files in certain directories', async () => {
|
|
220
|
-
const nodeModulesDir = path.join(appDir, 'node_modules');
|
|
221
|
-
const viteDir = path.join(appDir, '.vite');
|
|
222
|
-
const installLocations = [
|
|
223
|
-
path.join(appFunctionsDir, 'package.json'),
|
|
224
|
-
path.join(extensionsDir, 'package.json'),
|
|
225
|
-
path.join(viteDir, 'package.json'),
|
|
226
|
-
path.join(nodeModulesDir, 'package.json'),
|
|
227
|
-
];
|
|
228
|
-
|
|
229
|
-
walk.mockResolvedValue(installLocations);
|
|
230
|
-
|
|
231
|
-
const actual = await getProjectPackageJsonLocations();
|
|
232
|
-
expect(actual).toEqual([appFunctionsDir, extensionsDir]);
|
|
233
|
-
});
|
|
234
|
-
|
|
235
|
-
it('should throw an error if no package.json files are found', async () => {
|
|
236
|
-
walk.mockResolvedValue([]);
|
|
237
|
-
|
|
238
|
-
await expect(() => getProjectPackageJsonLocations()).rejects.toThrowError(
|
|
239
|
-
`No dependencies to install. The project ${projectName} folder might be missing component or subcomponent files. Learn how to create a project from scratch.: https://developers.hubspot.com/beta-docs/guides/crm/intro/create-a-project`
|
|
240
|
-
);
|
|
241
|
-
});
|
|
242
|
-
});
|
|
243
|
-
});
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
jest.mock('@hubspot/local-dev-lib/api/projects', () => ({
|
|
2
|
-
fetchProjects: jest.fn().mockResolvedValue({
|
|
3
|
-
data: { results: [] },
|
|
4
|
-
}),
|
|
5
|
-
}));
|
|
6
|
-
|
|
7
|
-
jest.mock('@hubspot/local-dev-lib/config', () => ({
|
|
8
|
-
getAccountId: jest.fn().mockImplementation(() => 123456789),
|
|
9
|
-
}));
|
|
10
|
-
|
|
11
|
-
jest.mock('../prompts/promptUtils');
|
|
12
|
-
|
|
13
|
-
const { downloadProjectPrompt } = require('../prompts/downloadProjectPrompt');
|
|
14
|
-
const { getAccountId } = require('@hubspot/local-dev-lib/config');
|
|
15
|
-
const { fetchProjects } = require('@hubspot/local-dev-lib/api/projects');
|
|
16
|
-
|
|
17
|
-
describe('downloadProjectPrompt', () => {
|
|
18
|
-
it('should honor the account passed as an option', async () => {
|
|
19
|
-
const account = 'Prod';
|
|
20
|
-
await downloadProjectPrompt({ account });
|
|
21
|
-
expect(getAccountId).toHaveBeenCalledTimes(1);
|
|
22
|
-
expect(getAccountId).toHaveBeenCalledWith(account);
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
it('should fetch the projects for the correct accountId', async () => {
|
|
26
|
-
const account = 'Prod';
|
|
27
|
-
await downloadProjectPrompt({ account });
|
|
28
|
-
expect(fetchProjects).toHaveBeenCalledTimes(1);
|
|
29
|
-
expect(fetchProjects).toHaveBeenCalledWith(123456789);
|
|
30
|
-
});
|
|
31
|
-
});
|
|
@@ -1,212 +0,0 @@
|
|
|
1
|
-
jest.mock('../projects');
|
|
2
|
-
jest.mock('@hubspot/local-dev-lib/api/projects');
|
|
3
|
-
|
|
4
|
-
const ProjectLogsManager = require('../projectLogsManager');
|
|
5
|
-
const { getProjectConfig, ensureProjectExists } = require('../projects');
|
|
6
|
-
const {
|
|
7
|
-
fetchProjectComponentsMetadata,
|
|
8
|
-
} = require('@hubspot/local-dev-lib/api/projects');
|
|
9
|
-
|
|
10
|
-
describe('cli/lib/projectLogsManager', () => {
|
|
11
|
-
const accountId = 12345678;
|
|
12
|
-
const appId = 999999;
|
|
13
|
-
const projectName = 'super cool test project';
|
|
14
|
-
const projectConfig = { projectConfig: { name: projectName } };
|
|
15
|
-
const projectId = 987654321;
|
|
16
|
-
const projectDetails = {
|
|
17
|
-
project: {
|
|
18
|
-
id: projectId,
|
|
19
|
-
deployedBuild: {
|
|
20
|
-
subbuildStatuses: {},
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
const function1 = {
|
|
26
|
-
componentName: 'function1',
|
|
27
|
-
type: {
|
|
28
|
-
name: 'APP_FUNCTION',
|
|
29
|
-
},
|
|
30
|
-
deployOutput: {
|
|
31
|
-
appId,
|
|
32
|
-
},
|
|
33
|
-
};
|
|
34
|
-
const functions = [
|
|
35
|
-
function1,
|
|
36
|
-
{
|
|
37
|
-
componentName: 'function2',
|
|
38
|
-
type: {
|
|
39
|
-
name: 'APP_FUNCTION',
|
|
40
|
-
},
|
|
41
|
-
deployOutput: {
|
|
42
|
-
appId,
|
|
43
|
-
},
|
|
44
|
-
},
|
|
45
|
-
];
|
|
46
|
-
|
|
47
|
-
beforeEach(() => {
|
|
48
|
-
ProjectLogsManager.reset();
|
|
49
|
-
|
|
50
|
-
getProjectConfig.mockResolvedValue(projectConfig);
|
|
51
|
-
ensureProjectExists.mockResolvedValue(projectDetails);
|
|
52
|
-
fetchProjectComponentsMetadata.mockResolvedValue({
|
|
53
|
-
data: {
|
|
54
|
-
topLevelComponentMetadata: [
|
|
55
|
-
{
|
|
56
|
-
type: {
|
|
57
|
-
name: 'PRIVATE_APP',
|
|
58
|
-
},
|
|
59
|
-
deployOutput: {
|
|
60
|
-
appId,
|
|
61
|
-
},
|
|
62
|
-
featureComponents: [
|
|
63
|
-
...functions,
|
|
64
|
-
{
|
|
65
|
-
type: {
|
|
66
|
-
name: 'NOT_AN_APP_FUNCTION',
|
|
67
|
-
},
|
|
68
|
-
},
|
|
69
|
-
],
|
|
70
|
-
},
|
|
71
|
-
],
|
|
72
|
-
},
|
|
73
|
-
});
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
describe('init', () => {
|
|
77
|
-
it('should load the project config', async () => {
|
|
78
|
-
await ProjectLogsManager.init(accountId);
|
|
79
|
-
expect(getProjectConfig).toHaveBeenCalledTimes(1);
|
|
80
|
-
});
|
|
81
|
-
|
|
82
|
-
it('should throw an error if there is a problem with the config', async () => {
|
|
83
|
-
getProjectConfig.mockResolvedValue({});
|
|
84
|
-
await expect(async () =>
|
|
85
|
-
ProjectLogsManager.init(accountId)
|
|
86
|
-
).rejects.toThrow(
|
|
87
|
-
'No project detected. Run this command again from a project directory.'
|
|
88
|
-
);
|
|
89
|
-
expect(getProjectConfig).toHaveBeenCalledTimes(1);
|
|
90
|
-
});
|
|
91
|
-
|
|
92
|
-
it('should ensure the project exists', async () => {
|
|
93
|
-
await ProjectLogsManager.init(accountId);
|
|
94
|
-
expect(ensureProjectExists).toHaveBeenCalledTimes(1);
|
|
95
|
-
expect(ensureProjectExists).toHaveBeenCalledWith(accountId, projectName, {
|
|
96
|
-
allowCreate: false,
|
|
97
|
-
});
|
|
98
|
-
});
|
|
99
|
-
|
|
100
|
-
it('should throw an error if there is data missing from the project details', async () => {
|
|
101
|
-
ensureProjectExists.mockResolvedValue({});
|
|
102
|
-
await expect(async () =>
|
|
103
|
-
ProjectLogsManager.init(accountId)
|
|
104
|
-
).rejects.toThrow(/There was an error fetching project details/);
|
|
105
|
-
});
|
|
106
|
-
|
|
107
|
-
it('should set all of the expected fields correctly', async () => {
|
|
108
|
-
await ProjectLogsManager.init(accountId);
|
|
109
|
-
expect(ProjectLogsManager.projectId).toEqual(projectId);
|
|
110
|
-
expect(ProjectLogsManager.projectName).toEqual(projectName);
|
|
111
|
-
expect(ProjectLogsManager.accountId).toEqual(accountId);
|
|
112
|
-
expect(ProjectLogsManager.functions).toEqual(functions);
|
|
113
|
-
});
|
|
114
|
-
});
|
|
115
|
-
|
|
116
|
-
describe('fetchFunctionDetails', () => {
|
|
117
|
-
it('should throw an error if the projectId is null when the method is called', async () => {
|
|
118
|
-
await expect(async () =>
|
|
119
|
-
ProjectLogsManager.fetchFunctionDetails()
|
|
120
|
-
).rejects.toThrow(
|
|
121
|
-
'No project detected. Run this command again from a project directory.'
|
|
122
|
-
);
|
|
123
|
-
});
|
|
124
|
-
|
|
125
|
-
it('should fetch the component metadata', async () => {
|
|
126
|
-
ProjectLogsManager.projectId = projectId;
|
|
127
|
-
ProjectLogsManager.accountId = accountId;
|
|
128
|
-
await ProjectLogsManager.fetchFunctionDetails();
|
|
129
|
-
expect(fetchProjectComponentsMetadata).toHaveBeenCalledTimes(1);
|
|
130
|
-
expect(fetchProjectComponentsMetadata).toHaveBeenCalledWith(
|
|
131
|
-
accountId,
|
|
132
|
-
projectId
|
|
133
|
-
);
|
|
134
|
-
});
|
|
135
|
-
|
|
136
|
-
it('should set the functions correctly', async () => {
|
|
137
|
-
ProjectLogsManager.projectId = projectId;
|
|
138
|
-
ProjectLogsManager.accountId = accountId;
|
|
139
|
-
await ProjectLogsManager.fetchFunctionDetails();
|
|
140
|
-
expect(ProjectLogsManager.functions).toEqual(functions);
|
|
141
|
-
});
|
|
142
|
-
});
|
|
143
|
-
|
|
144
|
-
describe('getFunctionNames', () => {
|
|
145
|
-
it('should return an empty array if functions is nullable', async () => {
|
|
146
|
-
ProjectLogsManager.functions = undefined;
|
|
147
|
-
expect(ProjectLogsManager.getFunctionNames()).toEqual([]);
|
|
148
|
-
});
|
|
149
|
-
|
|
150
|
-
it('should return an array of the componentNames', async () => {
|
|
151
|
-
ProjectLogsManager.functions = functions;
|
|
152
|
-
expect(ProjectLogsManager.getFunctionNames()).toEqual([
|
|
153
|
-
'function1',
|
|
154
|
-
'function2',
|
|
155
|
-
]);
|
|
156
|
-
});
|
|
157
|
-
});
|
|
158
|
-
|
|
159
|
-
describe('setFunction', () => {
|
|
160
|
-
it('should throw an error when functions is nullable', async () => {
|
|
161
|
-
ProjectLogsManager.functions = undefined;
|
|
162
|
-
expect(() => ProjectLogsManager.setFunction('foo')).toThrow(
|
|
163
|
-
`There aren't any functions in this project`
|
|
164
|
-
);
|
|
165
|
-
});
|
|
166
|
-
|
|
167
|
-
it('should throw an error when the provided function is invalid', async () => {
|
|
168
|
-
ProjectLogsManager.functions = functions;
|
|
169
|
-
const badName = 'foo';
|
|
170
|
-
expect(() => ProjectLogsManager.setFunction(badName)).toThrow(
|
|
171
|
-
`No function with name "${badName}"`
|
|
172
|
-
);
|
|
173
|
-
});
|
|
174
|
-
|
|
175
|
-
it('should set the data correctly for public functions', async () => {
|
|
176
|
-
const functionToChoose = {
|
|
177
|
-
componentName: 'function1',
|
|
178
|
-
type: {
|
|
179
|
-
name: 'APP_FUNCTION',
|
|
180
|
-
},
|
|
181
|
-
deployOutput: {
|
|
182
|
-
endpoint: { path: 'yooooooo', method: ['GET'] },
|
|
183
|
-
},
|
|
184
|
-
};
|
|
185
|
-
ProjectLogsManager.functions = [functionToChoose];
|
|
186
|
-
ProjectLogsManager.setFunction('function1');
|
|
187
|
-
expect(ProjectLogsManager.functionName).toEqual('function1');
|
|
188
|
-
expect(ProjectLogsManager.endpointName).toEqual('yooooooo');
|
|
189
|
-
expect(ProjectLogsManager.selectedFunction).toEqual(functionToChoose);
|
|
190
|
-
expect(ProjectLogsManager.method).toEqual(['GET']);
|
|
191
|
-
expect(ProjectLogsManager.isPublicFunction).toEqual(true);
|
|
192
|
-
});
|
|
193
|
-
|
|
194
|
-
it('should set the data correctly for public functions', async () => {
|
|
195
|
-
ProjectLogsManager.functions = functions;
|
|
196
|
-
ProjectLogsManager.setFunction('function1');
|
|
197
|
-
expect(ProjectLogsManager.selectedFunction).toEqual(function1);
|
|
198
|
-
expect(ProjectLogsManager.functionName).toEqual('function1');
|
|
199
|
-
expect(ProjectLogsManager.isPublicFunction).toEqual(false);
|
|
200
|
-
});
|
|
201
|
-
});
|
|
202
|
-
|
|
203
|
-
describe('reset', () => {
|
|
204
|
-
it('should reset all the values', async () => {
|
|
205
|
-
ProjectLogsManager.someRandomField = 'value';
|
|
206
|
-
expect(ProjectLogsManager.someRandomField).toBeDefined();
|
|
207
|
-
|
|
208
|
-
ProjectLogsManager.reset();
|
|
209
|
-
expect(ProjectLogsManager.isPublicFunction).toBeUndefined();
|
|
210
|
-
});
|
|
211
|
-
});
|
|
212
|
-
});
|
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
jest.mock('@hubspot/local-dev-lib/logger');
|
|
2
|
-
|
|
3
|
-
const fs = require('fs');
|
|
4
|
-
const os = require('os');
|
|
5
|
-
const path = require('path');
|
|
6
|
-
const { EXIT_CODES } = require('../enums/exitCodes');
|
|
7
|
-
const projects = require('../projects');
|
|
8
|
-
const { logger } = require('@hubspot/local-dev-lib/logger');
|
|
9
|
-
|
|
10
|
-
describe('@hubspot/cli/lib/projects', () => {
|
|
11
|
-
describe('validateProjectConfig()', () => {
|
|
12
|
-
let realProcess;
|
|
13
|
-
let projectDir;
|
|
14
|
-
let exitMock;
|
|
15
|
-
|
|
16
|
-
beforeAll(() => {
|
|
17
|
-
projectDir = fs.mkdtempSync(path.join(os.tmpdir(), 'projects-'));
|
|
18
|
-
fs.mkdirSync(path.join(projectDir, 'src'));
|
|
19
|
-
|
|
20
|
-
realProcess = process;
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
beforeEach(() => {
|
|
24
|
-
exitMock = jest.fn();
|
|
25
|
-
global.process = { ...realProcess, exit: exitMock };
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
afterAll(() => {
|
|
29
|
-
global.process = realProcess;
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
it('rejects undefined configuration', () => {
|
|
33
|
-
projects.validateProjectConfig(null, projectDir);
|
|
34
|
-
|
|
35
|
-
expect(exitMock).toHaveBeenCalledWith(EXIT_CODES.ERROR);
|
|
36
|
-
expect(logger.error).toHaveBeenCalledWith(
|
|
37
|
-
expect.stringMatching(/.*config not found.*/)
|
|
38
|
-
);
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
it('rejects configuration with missing name', () => {
|
|
42
|
-
projects.validateProjectConfig({ srcDir: '.' }, projectDir);
|
|
43
|
-
|
|
44
|
-
expect(exitMock).toHaveBeenCalledWith(EXIT_CODES.ERROR);
|
|
45
|
-
expect(logger.error).toHaveBeenCalledWith(
|
|
46
|
-
expect.stringMatching(/.*missing required fields*/)
|
|
47
|
-
);
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
it('rejects configuration with missing srcDir', () => {
|
|
51
|
-
projects.validateProjectConfig({ name: 'hello' }, projectDir);
|
|
52
|
-
|
|
53
|
-
expect(exitMock).toHaveBeenCalledWith(EXIT_CODES.ERROR);
|
|
54
|
-
expect(logger.error).toHaveBeenCalledWith(
|
|
55
|
-
expect.stringMatching(/.*missing required fields.*/)
|
|
56
|
-
);
|
|
57
|
-
});
|
|
58
|
-
|
|
59
|
-
describe('rejects configuration with srcDir outside project directory', () => {
|
|
60
|
-
it('for parent directory', () => {
|
|
61
|
-
projects.validateProjectConfig(
|
|
62
|
-
{ name: 'hello', srcDir: '..' },
|
|
63
|
-
projectDir
|
|
64
|
-
);
|
|
65
|
-
|
|
66
|
-
expect(exitMock).toHaveBeenCalledWith(EXIT_CODES.ERROR);
|
|
67
|
-
expect(logger.error).toHaveBeenCalledWith(
|
|
68
|
-
expect.stringContaining('srcDir: ".."')
|
|
69
|
-
);
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
it('for root directory', () => {
|
|
73
|
-
projects.validateProjectConfig(
|
|
74
|
-
{ name: 'hello', srcDir: '/' },
|
|
75
|
-
projectDir
|
|
76
|
-
);
|
|
77
|
-
|
|
78
|
-
expect(exitMock).toHaveBeenCalledWith(EXIT_CODES.ERROR);
|
|
79
|
-
expect(logger.error).toHaveBeenCalledWith(
|
|
80
|
-
expect.stringContaining('srcDir: "/"')
|
|
81
|
-
);
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
it('for complicated directory', () => {
|
|
85
|
-
const srcDir = './src/././../src/../../src';
|
|
86
|
-
|
|
87
|
-
projects.validateProjectConfig({ name: 'hello', srcDir }, projectDir);
|
|
88
|
-
|
|
89
|
-
expect(exitMock).toHaveBeenCalledWith(EXIT_CODES.ERROR);
|
|
90
|
-
expect(logger.error).toHaveBeenCalledWith(
|
|
91
|
-
expect.stringContaining(`srcDir: "${srcDir}"`)
|
|
92
|
-
);
|
|
93
|
-
});
|
|
94
|
-
});
|
|
95
|
-
|
|
96
|
-
it('rejects configuration with srcDir that does not exist', () => {
|
|
97
|
-
projects.validateProjectConfig(
|
|
98
|
-
{ name: 'hello', srcDir: 'foo' },
|
|
99
|
-
projectDir
|
|
100
|
-
);
|
|
101
|
-
|
|
102
|
-
expect(exitMock).toHaveBeenCalledWith(EXIT_CODES.ERROR);
|
|
103
|
-
expect(logger.error).toHaveBeenCalledWith(
|
|
104
|
-
expect.stringMatching(/.*could not be found in.*/)
|
|
105
|
-
);
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
describe('accepts configuration with valid srcDir', () => {
|
|
109
|
-
it('for current directory', () => {
|
|
110
|
-
projects.validateProjectConfig(
|
|
111
|
-
{ name: 'hello', srcDir: '.' },
|
|
112
|
-
projectDir
|
|
113
|
-
);
|
|
114
|
-
|
|
115
|
-
expect(exitMock).not.toHaveBeenCalled();
|
|
116
|
-
expect(logger.error).not.toHaveBeenCalled();
|
|
117
|
-
});
|
|
118
|
-
|
|
119
|
-
it('for relative directory', () => {
|
|
120
|
-
projects.validateProjectConfig(
|
|
121
|
-
{ name: 'hello', srcDir: './src' },
|
|
122
|
-
projectDir
|
|
123
|
-
);
|
|
124
|
-
|
|
125
|
-
expect(exitMock).not.toHaveBeenCalled();
|
|
126
|
-
expect(logger.error).not.toHaveBeenCalled();
|
|
127
|
-
});
|
|
128
|
-
|
|
129
|
-
it('for implied relative directory', () => {
|
|
130
|
-
projects.validateProjectConfig(
|
|
131
|
-
{ name: 'hello', srcDir: 'src' },
|
|
132
|
-
projectDir
|
|
133
|
-
);
|
|
134
|
-
|
|
135
|
-
expect(exitMock).not.toHaveBeenCalled();
|
|
136
|
-
expect(logger.error).not.toHaveBeenCalled();
|
|
137
|
-
});
|
|
138
|
-
});
|
|
139
|
-
});
|
|
140
|
-
});
|