|
| 1 | +import fs from "fs"; |
| 2 | +import tmp from "tmp"; |
| 3 | +import { Args } from "../create-command"; |
| 4 | +import { main } from "../index"; |
| 5 | + |
| 6 | +beforeEach(() => { |
| 7 | + const wd = tmp.dirSync(); |
| 8 | + process.chdir(wd.name); |
| 9 | + delete process.env.FOO; |
| 10 | +}); |
| 11 | + |
| 12 | +describe("integration", () => { |
| 13 | + test("default", () => { |
| 14 | + const env = ".env"; |
| 15 | + const example = ".env.example"; |
| 16 | + const defaults = ".env.local.default"; |
| 17 | + const local = ".env.local"; |
| 18 | + const userEnvironment = false; |
| 19 | + fs.writeFileSync(example, "FOO=\nBAR=\n"); |
| 20 | + fs.writeFileSync(defaults, "FOO=foo\nBAR=bar\nBAZ=baz\n"); |
| 21 | + fs.writeFileSync(local, "FOO=local\nBAZ=local\n"); |
| 22 | + process.env.BAR = "user-environment"; |
| 23 | + const args: Args = { |
| 24 | + env, |
| 25 | + example, |
| 26 | + path: [defaults, local], |
| 27 | + userEnvironment, |
| 28 | + }; |
| 29 | + |
| 30 | + main(args); |
| 31 | + |
| 32 | + expect(fs.readFileSync(env, "utf8")).toEqual( |
| 33 | + "# Generated by '@import-meta-env/prepare'\n\nBAR=bar\nFOO=local\n" |
| 34 | + ); |
| 35 | + }); |
| 36 | + |
| 37 | + test("--env", () => { |
| 38 | + const env = ".env" + Math.random().toString(36); |
| 39 | + const example = ".env.example"; |
| 40 | + const defaults = ".env.local.default"; |
| 41 | + const local = ".env.local"; |
| 42 | + const userEnvironment = false; |
| 43 | + fs.writeFileSync(example, "FOO=\nBAR=\n"); |
| 44 | + fs.writeFileSync(defaults, "FOO=foo\nBAR=bar\nBAZ=baz\n"); |
| 45 | + fs.writeFileSync(local, "FOO=local\nBAZ=local\n"); |
| 46 | + const args: Args = { |
| 47 | + env, |
| 48 | + example, |
| 49 | + path: [defaults, local], |
| 50 | + userEnvironment, |
| 51 | + }; |
| 52 | + |
| 53 | + main(args); |
| 54 | + |
| 55 | + expect(fs.readFileSync(env, "utf8")).toEqual( |
| 56 | + "# Generated by '@import-meta-env/prepare'\n\nBAR=bar\nFOO=local\n" |
| 57 | + ); |
| 58 | + }); |
| 59 | + |
| 60 | + test("--example", () => { |
| 61 | + const env = ".env"; |
| 62 | + const example = ".env.example" + Math.random().toString(36); |
| 63 | + const defaults = ".env.local.default"; |
| 64 | + const local = ".env.local"; |
| 65 | + const userEnvironment = false; |
| 66 | + fs.writeFileSync(example, "FOO=\nBAR=\n"); |
| 67 | + fs.writeFileSync(defaults, "FOO=foo\nBAR=bar\nBAZ=baz\n"); |
| 68 | + fs.writeFileSync(local, "FOO=local\nBAZ=local\n"); |
| 69 | + const args: Args = { |
| 70 | + env, |
| 71 | + example, |
| 72 | + path: [defaults, local], |
| 73 | + userEnvironment, |
| 74 | + }; |
| 75 | + |
| 76 | + main(args); |
| 77 | + |
| 78 | + expect(fs.readFileSync(env, "utf8")).toEqual( |
| 79 | + "# Generated by '@import-meta-env/prepare'\n\nBAR=bar\nFOO=local\n" |
| 80 | + ); |
| 81 | + }); |
| 82 | + |
| 83 | + test("--path", () => { |
| 84 | + const env = ".env"; |
| 85 | + const example = ".env.example"; |
| 86 | + const defaults = ".env.local.default" + Math.random().toString(36); |
| 87 | + const local = ".env.local" + Math.random().toString(36); |
| 88 | + const userEnvironment = false; |
| 89 | + fs.writeFileSync(example, "FOO=\nBAR=\n"); |
| 90 | + fs.writeFileSync(defaults, "FOO=foo\nBAR=bar\nBAZ=baz\n"); |
| 91 | + fs.writeFileSync(local, "FOO=local\nBAZ=local\n"); |
| 92 | + const args: Args = { |
| 93 | + env, |
| 94 | + example, |
| 95 | + path: [defaults, local], |
| 96 | + userEnvironment, |
| 97 | + }; |
| 98 | + |
| 99 | + main(args); |
| 100 | + |
| 101 | + expect(fs.readFileSync(env, "utf8")).toEqual( |
| 102 | + "# Generated by '@import-meta-env/prepare'\n\nBAR=bar\nFOO=local\n" |
| 103 | + ); |
| 104 | + }); |
| 105 | + |
| 106 | + test("--userEnvironment", () => { |
| 107 | + const env = ".env"; |
| 108 | + const example = ".env.example"; |
| 109 | + const defaults = ".env.local.default"; |
| 110 | + const local = ".env.local"; |
| 111 | + const userEnvironment = true; |
| 112 | + fs.writeFileSync(example, "FOO=\nBAR=\n"); |
| 113 | + fs.writeFileSync(defaults, "FOO=foo\nBAR=bar\nBAZ=baz\n"); |
| 114 | + fs.writeFileSync(local, "FOO=local\nBAZ=local\n"); |
| 115 | + process.env.BAR = "user-environment"; |
| 116 | + const args: Args = { |
| 117 | + env, |
| 118 | + example, |
| 119 | + path: [defaults, local], |
| 120 | + userEnvironment, |
| 121 | + }; |
| 122 | + |
| 123 | + main(args); |
| 124 | + |
| 125 | + expect(fs.readFileSync(env, "utf8")).toEqual( |
| 126 | + "# Generated by '@import-meta-env/prepare'\n\nBAR=user-environment\nFOO=local\n" |
| 127 | + ); |
| 128 | + }); |
| 129 | +}); |
0 commit comments