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

Load events and project as config #16

Merged
merged 10 commits into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": ["@adobe/eslint-config-aio-lib-config"]
"extends": ["@adobe/eslint-config-aio-lib-config"],
"parserOptions": {
"ecmaVersion": 2020
}
}
20 changes: 16 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ function loadCommonConfig () {
ow: owConfig,
aio: aioConfig,
// soon not needed anymore (for old headless validator)
imsOrgId: aioConfig && aioConfig.project && aioConfig.project.org && aioConfig.project.org.ims_org_id
imsOrgId: aioConfig.project?.org?.ims_org_id
}
}

Expand Down Expand Up @@ -289,7 +289,9 @@ function loadUserConfigLegacy (commonConfig) {
// todo: new value usingLegacyConfig
// this module should not console.log/warn ... or include chalk ...
if (commonConfig.aio.cna !== undefined || commonConfig.aio.app !== undefined) {
aioLogger.warn('App config in \'.aio\' file is deprecated. Please move your \'.aio.app\' or \'.aio.cna\' to \'app.config.yaml\'.')
// this might have never have been seen in the wild as we don't know
// what log-level users have set
aioLogger.error('App config in \'.aio\' file is deprecated. Please move your \'.aio.app\' or \'.aio.cna\' to \'app.config.yaml\'.')
const appConfig = { ...commonConfig.aio.app, ...commonConfig.aio.cna }
Object.entries(appConfig).forEach(([k, v]) => {
legacyAppConfig[k] = v
Expand Down Expand Up @@ -344,7 +346,7 @@ function loadUserConfigLegacy (commonConfig) {
})
// todo: new val usingLegacyHooks:Boolean
if (Object.keys(hooks).length > 0) {
aioLogger.warn('hooks in \'package.json\' are deprecated. Please move your hooks to \'app.config.yaml\' under the \'hooks\' key')
aioLogger.error('hooks in \'package.json\' are deprecated. Please move your hooks to \'app.config.yaml\' under the \'hooks\' key')
legacyAppConfig.hooks = hooks
// build index
includeIndex[`${defaults.APPLICATION_CONFIG_KEY}.hooks`] = { file: 'package.json', key: 'scripts' }
Expand Down Expand Up @@ -421,7 +423,10 @@ function buildExtConfigs (userConfig, commonConfig, includeIndex) {

/** @private */
function buildAppConfig (userConfig, commonConfig, includeIndex) {
const fullAppConfig = buildSingleConfig(defaults.APPLICATION_CONFIG_KEY, userConfig[defaults.APPLICATION_CONFIG_KEY], commonConfig, includeIndex)
const fullAppConfig = buildSingleConfig(defaults.APPLICATION_CONFIG_KEY,
userConfig[defaults.APPLICATION_CONFIG_KEY],
commonConfig,
includeIndex)

if (!fullAppConfig.app.hasBackend && !fullAppConfig.app.hasFrontend) {
// only set application config if there is an actuall app, meaning either some backend or frontend
Expand Down Expand Up @@ -488,6 +493,13 @@ function buildSingleConfig (configName, singleUserConfig, commonConfig, includeI
config.app.hasFrontend = fs.existsSync(web)
config.app.dist = path.resolve(dist, dist === defaultDistPath ? subFolderName : '')

if (singleUserConfig.events) {
config.events = { ...singleUserConfig.events }
}
if (commonConfig?.aio?.project) {
config.project = commonConfig.aio.project
}

// actions
config.actions.src = path.resolve(actions) // needed for app add first action
if (config.app.hasBackend) {
Expand Down
3 changes: 3 additions & 0 deletions test/__fixtures__/exc-with-events/app.config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
extensions:
'dx/excshell/1':
$include: src/dx-excshell-1/ext.config.yaml
4 changes: 4 additions & 0 deletions test/__fixtures__/exc-with-events/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"version": "1.0.0",
"name": "exc"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
Copyright 2019 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/

/** @private */
function main (args) {
return 'hello'
}
exports.main = main
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include me !
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
operations:
view:
- type: web
impl: index.html
actions: ./actions
web: ./web-src
events:
registrations:
runtimeManifest:
packages:
my-exc-package:
license: 'Apache-2.0'
actions:
action:
function: 'actions/action.js'
web: 'yes'
runtime: 'nodejs:14'
inputs:
LOG_LEVEL: 'debug'
annotations:
'require-adobe-auth': true
final: true
include:
- [ 'actions/somefile.txt', 'file.txt' ]
limits:
concurrency: 189
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="shortcut icon" href="https://wwwimages2.adobe.com/favicon.ico">
<title>Runtime Starter</title>
</head>

<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
</body>

</html>
18 changes: 18 additions & 0 deletions test/data-mocks/config-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ const nuiSingleConfig = {
e2e: winCompat(`${root}/src/dx-asset-compute-worker-1/e2e`),
unit: winCompat(`${root}/src/dx-asset-compute-worker-1/test`)
},
// events: {},
root: `${root}`,
name: 'dx/asset-compute/worker/1',
hooks: {
Expand Down Expand Up @@ -269,6 +270,7 @@ const applicationSingleConfig = {
e2e: winCompat(`${root}e2e`),
unit: winCompat(`${root}test`)
},
// events: {},
root: `${root}`,
name: 'application',
hooks: {
Expand Down Expand Up @@ -322,12 +324,16 @@ const applicationNoActionsSingleConfig = {
},
root: `${root}`,
name: 'application',
events: {},
hooks: {
'pre-app-run': 'echo hello'
}
}
}

// const applicationNoEventsSingleConfig = { ...applicationNoActionsSingleConfig }
// applicationNoEventsSingleConfig.application.events = {}

// expected return values from config loader for matching fixtures in __fixtures__
const expectedConfigs = {
exc: {
Expand Down Expand Up @@ -368,6 +374,18 @@ const expectedConfigs = {
},
root
},
// 'app-no-events': {
// all: { ...applicationNoActionsSingleConfig },
// implements: [
// 'application'
// ],
// includeIndex: appNoActionsIncludeIndex,
// packagejson: {
// version: '1.0.0',
// name: 'app-no-actions'
// },
// root
// },
'app-no-actions': {
all: { ...applicationNoActionsSingleConfig },
implements: [
Expand Down
46 changes: 40 additions & 6 deletions test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ describe('load config', () => {
test('standalone app config', async () => {
global.loadFixtureApp('app')
config = loadConfig() // {} or not for coverage
expect(config).toEqual(getMockConfig('app', global.fakeConfig.tvm))
console.log('config = ', JSON.stringify(config, 0, 2))
const mockConfig = getMockConfig('app', global.fakeConfig.tvm, {
'all.application.project': expect.any(Object)
})
expect(config).toEqual(mockConfig)
})

test('not in an app', async () => {
Expand All @@ -47,25 +51,42 @@ describe('load config', () => {
test('exc extension config', async () => {
global.loadFixtureApp('exc')
config = loadConfig({})
expect(config).toEqual(getMockConfig('exc', global.fakeConfig.tvm))
expect(config).toEqual(getMockConfig('exc', global.fakeConfig.tvm, {
'all.dx/excshell/1': expect.any(Object)
}))
})

test('exc with events config', async () => {
global.loadFixtureApp('exc-with-events')
config = loadConfig({})
expect(config.all['dx/excshell/1']).toEqual(expect.objectContaining({ events: expect.any(Object) }))
})

test('standalone app, exc and nui extension config', async () => {
global.loadFixtureApp('app-exc-nui')
config = loadConfig({})
expect(config).toEqual(getMockConfig('app-exc-nui', global.fakeConfig.tvm))
expect(config).toEqual(getMockConfig('app-exc-nui', global.fakeConfig.tvm, {
'all.application.project': expect.any(Object),
'all.dx/excshell/1.project': expect.any(Object),
'all.dx/asset-compute/worker/1.project': expect.any(Object)
}))
})

test('standalone app with no actions', async () => {
global.loadFixtureApp('app-no-actions')
config = loadConfig({})
expect(config).toEqual(getMockConfig('app-no-actions', global.fakeConfig.tvm))
expect(config).toEqual(getMockConfig('app-no-actions', global.fakeConfig.tvm, {
'all.application.project': expect.any(Object),
'all.application.events': expect.undefined
}))
})

test('exc with complex include pattern', async () => {
global.loadFixtureApp('exc-complex-includes')
config = loadConfig({})
expect(config).toEqual(getMockConfig('exc-complex-includes', global.fakeConfig.tvm))
expect(config).toEqual(getMockConfig('exc-complex-includes', global.fakeConfig.tvm, {
'all.dx/excshell/1.project': expect.any(Object)
}))
})

test('standalone application with legacy configuration system', async () => {
Expand All @@ -74,7 +95,9 @@ describe('load config', () => {
// mock app config
mockAIOConfig.get.mockImplementation(k => fullAioConfig)
config = loadConfig({})
expect(config).toEqual(getMockConfig('legacy-app', fullAioConfig))
expect(config).toEqual(getMockConfig('legacy-app', fullAioConfig, {
'all.application.project': expect.any(Object)
}))
})

// corner cases - coverage
Expand All @@ -87,6 +110,7 @@ describe('load config', () => {
'all.dx/excshell/1.app.name': 'unnamed-app',
'all.dx/excshell/1.app.version': '0.1.0',
'all.dx/excshell/1.ow.package': 'unnamed-app-0.1.0',
'all.dx/excshell/1.project': expect.any(Object),
'packagejson.name': 'unnamed-app',
'packagejson.version': '0.1.0'
}))
Expand All @@ -105,6 +129,7 @@ describe('load config', () => {
'all.dx/excshell/1.actions.dist': path.resolve('/src/dx-excshell-1/new/dist/for/excshell/actions'),
'all.dx/excshell/1.web.distDev': path.resolve('/src/dx-excshell-1/new/dist/for/excshell/web-dev'),
'all.dx/excshell/1.web.distProd': path.resolve('/src/dx-excshell-1/new/dist/for/excshell/web-prod'),
'all.dx/excshell/1.project': expect.any(Object),
includeIndex: expect.any(Object)
}))
})
Expand All @@ -125,6 +150,7 @@ describe('load config', () => {
secretAccessKey: 'fakesecret',
params: { Bucket: 'fakebucket' }
},
'all.dx/excshell/1.project': expect.any(Object),
includeIndex: expect.any(Object)
}))
})
Expand All @@ -139,6 +165,7 @@ describe('load config', () => {
config = loadConfig({})
expect(config).toEqual(getMockConfig('exc', global.fakeConfig.tvm, {
'all.dx/excshell/1.s3.tvmUrl': 'customurl',
'all.dx/excshell/1.project': expect.any(Object),
includeIndex: expect.any(Object)
}))
})
Expand All @@ -152,6 +179,7 @@ describe('load config', () => {

config = loadConfig({})
expect(config).toEqual(getMockConfig('exc', global.fakeConfig.tvm, {
'all.dx/excshell/1.project': expect.any(Object),
includeIndex: expect.any(Object)
}))
})
Expand All @@ -166,6 +194,7 @@ describe('load config', () => {
config = loadConfig({})
expect(config).toEqual(getMockConfig('exc', global.fakeConfig.tvm, {
'all.dx/excshell/1.manifest.full.packages.my-exc-package.actions.newAction': { web: 'yes' },
'all.dx/excshell/1.project': expect.any(Object),
includeIndex: expect.any(Object)
}))
})
Expand All @@ -178,6 +207,7 @@ describe('load config', () => {
expect(config).toEqual(getMockConfig('exc', global.fakeConfig.tvm, {
'all.dx/excshell/1.app.defaultHostname': 'dev.runtime.adobe.io',
'all.dx/excshell/1.app.hostname': 'dev.runtime.adobe.io',
'all.dx/excshell/1.project': expect.any(Object),
includeIndex: expect.any(Object)
}))
})
Expand Down Expand Up @@ -280,6 +310,8 @@ extensions:
config = loadConfig({})
expect(config).toEqual(getMockConfig('legacy-app', fullAioConfig, {
'all.application.hooks': {},
// 'all.application.events': expect.any(Object),
'all.application.project': expect.any(Object),
includeIndex: expect.any(Object),
'packagejson.scripts': {}
}))
Expand All @@ -304,6 +336,8 @@ extensions:
'all.application.manifest.full': {
packages: { thepackage: 'takesover' }
},
// 'all.application.events': expect.any(Object),
'all.application.project': expect.any(Object),
'all.application.manifest.package': undefined,
'all.application.hooks': {
// already there
Expand Down
15 changes: 11 additions & 4 deletions test/jest.setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ const eol = require('eol')
const path = require('path')

const fileSystem = require('jest-plugin-fs').default
const project = {
org: {
ims_org_id: '00000000000000000100000@AdobeOrg'
}
}

// dont touch the real fs
global.mockFs = () => {
Expand Down Expand Up @@ -150,17 +155,19 @@ global.defaultAppHostName = 'adobeio-static.net'
global.defaultTvmUrl = 'https://adobeio.adobeioruntime.net/apis/tvm/'
global.defaultOwApihost = 'https://adobeioruntime.net'
global.fakeS3Bucket = 'fake-bucket'
global.fakeOrgId = '00000000000000000100000@AdobeOrg'

global.fakeConfig = {
tvm: {
project: { org: { ims_org_id: global.fakeOrgId } },
project,
runtime: {
namespace: 'fake_ns',
auth: 'fake:auth'
}
},
events: {},
project,
local: {
project: { org: { ims_org_id: global.fakeOrgId } },
project,
runtime: {
// those must match the once set by dev cmd
apihost: 'http://localhost:3233',
Expand All @@ -170,7 +177,7 @@ global.fakeConfig = {
},
// todo delete those should not be passed via aio now
creds: {
project: { org: { ims_org_id: global.fakeOrgId } },
project,
runtime: {
namespace: 'fake_ns',
auth: 'fake:auth'
Expand Down