File tree 2 files changed +29
-7
lines changed
packages/nest-utils/src/env
2 files changed +29
-7
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,20 @@ describe('registration', () => {
18
18
expect ( module ) . toBeDefined ( ) ;
19
19
expect ( EnvModule . get ( 'SOME_STRING' ) ) . toBe ( 'foo' ) ;
20
20
} ) ;
21
+
22
+ it ( 'should cache environment variables until load() is called again' , async ( ) => {
23
+ vi . stubEnv ( 'SOME_STRING' , 'foo' ) ;
24
+ const container = await TestContainer . create ( {
25
+ imports : [ EnvModule ] ,
26
+ } ) ;
27
+ const module = container . module . get < EnvModule > ( EnvModule ) ;
28
+ expect ( module ) . toBeDefined ( ) ;
29
+ expect ( EnvModule . get ( 'SOME_STRING' ) ) . toBe ( 'foo' ) ;
30
+ vi . stubEnv ( 'SOME_STRING' , 'bar' ) ;
31
+ expect ( EnvModule . get ( 'SOME_STRING' ) ) . toBe ( 'foo' ) ;
32
+ EnvModule . load ( ) ;
33
+ expect ( EnvModule . get ( 'SOME_STRING' ) ) . toBe ( 'bar' ) ;
34
+ } ) ;
21
35
} ) ;
22
36
23
37
describe ( 'validation' , ( ) => {
Original file line number Diff line number Diff line change @@ -34,17 +34,25 @@ import { config } from 'dotenv';
34
34
export function EnvModuleMixin < TEnv extends object > ( env : new ( ...args : unknown [ ] ) => TEnv ) {
35
35
@Module ( { } )
36
36
class EnvModule {
37
- static get env ( ) : TEnv {
38
- config ( ) ;
39
- return plainToInstance ( env , process . env , {
40
- enableImplicitConversion : true ,
41
- } ) ;
42
- }
37
+ static readonly env : TEnv ;
43
38
44
39
constructor ( ) {
40
+ EnvModule . load ( ) ;
45
41
EnvModule . validate ( ) ;
46
42
}
47
43
44
+ /**
45
+ * (Re-)loads the environment variables. This comes at a performance cost and should only be used
46
+ * when necessary.
47
+ */
48
+ static load ( ) : void {
49
+ config ( ) ;
50
+ // @ts -expect-error This is the only spot where we're allowed to write to this.env.
51
+ this . env = plainToInstance ( env , process . env , {
52
+ enableImplicitConversion : true ,
53
+ } ) ;
54
+ }
55
+
48
56
/**
49
57
* Validates the currently stored instance of the environment class.
50
58
*/
@@ -68,7 +76,7 @@ export function EnvModuleMixin<TEnv extends object>(env: new (...args: unknown[]
68
76
* @returns The value of the environment variable.
69
77
*/
70
78
static get < TKey extends keyof TEnv > ( key : TKey ) : TEnv [ TKey ] {
71
- return EnvModule . env [ key ] ;
79
+ return this . env [ key ] ;
72
80
}
73
81
}
74
82
You can’t perform that action at this time.
0 commit comments