Skip to content

Commit 41cab61

Browse files
authored
fix: deep merge config (#274)
* fix: deep merge config * chore: format code
1 parent a677bd6 commit 41cab61

File tree

7 files changed

+116
-1
lines changed

7 files changed

+116
-1
lines changed

src/application.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { ArtusInjectEnum } from './constant';
44
import { ArtusStdError } from './exception';
55
import { HookFunction, LifecycleManager } from './lifecycle';
66
import { LoaderFactory, Manifest } from './loader';
7+
import { mergeConfig } from './loader/utils/merge';
78
import { Application, ApplicationInitOptions } from './types';
89
import ConfigurationHandler from './configuration';
910
import { Logger, LoggerType } from './logger';
@@ -114,7 +115,7 @@ export class ArtusApplication implements Application {
114115
const newConfig = this.configurationHandler.getMergedConfig() ?? {};
115116
this.container.set({
116117
id: ArtusInjectEnum.Config,
117-
value: Object.assign(oldConfig, newConfig),
118+
value: mergeConfig(oldConfig, newConfig),
118119
});
119120
}
120121
}

test/config.test.ts

+9
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,13 @@ describe("test/config.test.ts", () => {
1616
process.env[ARTUS_SERVER_ENV] = undefined;
1717
});
1818
});
19+
20+
21+
describe("app with manifest should load config ok", () => {
22+
it("should load config ok", async () => {
23+
const { main } = require("./fixtures/app_with_manifest/bootstrap");
24+
const app = await main();
25+
expect(app.config).toEqual({ httpConfig: { key1: 'value1', port: 3000 }, plugin: {} });
26+
});
27+
});
1928
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import path from "path";
2+
// import fs from 'fs';
3+
import 'reflect-metadata';
4+
import { ArtusApplication } from "../../../src";
5+
6+
const rootDir = path.resolve(__dirname, "./");
7+
8+
async function main() {
9+
const app = new ArtusApplication();
10+
const metaFilePath = path.resolve(rootDir, 'manifest.json');
11+
// let manifest;
12+
// if (fs.existsSync(metaFilePath)) {
13+
const manifest = require((metaFilePath));
14+
// } else {
15+
// const scanner = new ArtusScanner({
16+
// configDir: 'config',
17+
// needWriteFile: true,
18+
// useRelativePath: true,
19+
// extensions: ['.ts', '.js', '.json'],
20+
// app,
21+
// });
22+
// manifest = await scanner.scan(rootDir);
23+
// }
24+
await app.load(manifest, rootDir);
25+
await app.run();
26+
return app;
27+
28+
}
29+
export { main };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
export default {
3+
httpConfig: {
4+
port: 3000,
5+
},
6+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { Injectable } from '../../../../src/';
2+
3+
@Injectable()
4+
export default class DemoController {
5+
public async index() {
6+
return { code: 0, message: 'ok', data: {} };
7+
}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { LifecycleHookUnit, ApplicationLifecycle, LifecycleHook, Inject, ArtusApplication, ArtusInjectEnum } from '../../../src';
2+
3+
@LifecycleHookUnit()
4+
export default class MyLifecycle implements ApplicationLifecycle {
5+
@Inject(ArtusInjectEnum.Application)
6+
private app: ArtusApplication;
7+
8+
@LifecycleHook()
9+
public async configWillLoad() {
10+
this.app.config.httpConfig = this.app.config.httpConfig ?? {};
11+
this.app.config.httpConfig.key1 = 'value1';
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"version": "2",
3+
"refMap": {
4+
"_app": {
5+
"relativedPath": "",
6+
"pluginConfig": {},
7+
"items": [
8+
{
9+
"path": "config/config.default",
10+
"extname": ".ts",
11+
"filename": "config.default.ts",
12+
"loader": "config",
13+
"source": "app",
14+
"unitName": "_app",
15+
"loaderState": {
16+
"exportNames": []
17+
}
18+
},
19+
{
20+
"path": "controller/home",
21+
"extname": ".ts",
22+
"filename": "home.ts",
23+
"loader": "module",
24+
"source": "app",
25+
"unitName": "_app",
26+
"loaderState": {
27+
"exportNames": [
28+
"default"
29+
]
30+
}
31+
},
32+
{
33+
"path": "lifecycle",
34+
"extname": ".ts",
35+
"filename": "lifecycle.ts",
36+
"loader": "lifecycle-hook-unit",
37+
"source": "app",
38+
"unitName": "_app",
39+
"loaderState": {
40+
"exportNames": [
41+
"default"
42+
]
43+
}
44+
}
45+
]
46+
}
47+
},
48+
"extraPluginConfig": {}
49+
}

0 commit comments

Comments
 (0)