@pulumi/pulumi 3.111.1 → 3.111.2-alpha.x024ff02

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.
Files changed (50) hide show
  1. package/automation/cmd.d.ts +7 -4
  2. package/automation/cmd.js +0 -4
  3. package/automation/cmd.js.map +1 -1
  4. package/automation/index.d.ts +1 -0
  5. package/automation/localWorkspace.d.ts +0 -1
  6. package/automation/localWorkspace.js +0 -1
  7. package/automation/localWorkspace.js.map +1 -1
  8. package/automation/stack.js +5 -5
  9. package/automation/stack.js.map +1 -1
  10. package/automation/workspace.d.ts +2 -2
  11. package/package.json +1 -1
  12. package/proto/language_pb.d.ts +5 -3
  13. package/proto/language_pb.js +39 -36
  14. package/proto/testing/language_pb.d.ts +36 -0
  15. package/proto/testing/language_pb.js +304 -2
  16. package/resource.d.ts +1 -1
  17. package/resource.js +1 -1
  18. package/runtime/mocks.d.ts +7 -7
  19. package/runtime/mocks.js +5 -5
  20. package/runtime/stack.d.ts +1 -1
  21. package/runtime/stack.js +1 -1
  22. package/stackReference.d.ts +1 -1
  23. package/stackReference.js +1 -1
  24. package/tests/automation/localWorkspace.spec.js +5 -2
  25. package/tests/automation/localWorkspace.spec.js.map +1 -1
  26. package/tests/runtime/closure-integreation-tests.js +129 -0
  27. package/tests/runtime/closure-integreation-tests.js.map +1 -0
  28. package/version.d.ts +1 -1
  29. package/version.js +1 -1
  30. package/version.js.map +1 -1
  31. package/tests/runtime/closureLoader.spec.js +0 -36
  32. package/tests/runtime/closureLoader.spec.js.map +0 -1
  33. package/tests/runtime/deploymentOnlyModule/config.d.ts +0 -28
  34. package/tests/runtime/deploymentOnlyModule/config.js +0 -56
  35. package/tests/runtime/deploymentOnlyModule/config.js.map +0 -1
  36. package/tests/runtime/deploymentOnlyModule/index.d.ts +0 -3
  37. package/tests/runtime/deploymentOnlyModule/index.js +0 -26
  38. package/tests/runtime/deploymentOnlyModule/index.js.map +0 -1
  39. package/tests/runtime/deploymentOnlyModule/runtimeConfig.d.ts +0 -14
  40. package/tests/runtime/deploymentOnlyModule/runtimeConfig.js +0 -57
  41. package/tests/runtime/deploymentOnlyModule/runtimeConfig.js.map +0 -1
  42. package/tests/runtime/jsClosureCases_10_4.js +0 -31
  43. package/tests/runtime/jsClosureCases_8.js +0 -91
  44. package/tests/runtime/package.spec.d.ts +0 -1
  45. package/tests/runtime/package.spec.js +0 -156
  46. package/tests/runtime/package.spec.js.map +0 -1
  47. package/tests/runtime/tsClosureCases.d.ts +0 -1
  48. package/tests/runtime/tsClosureCases.js +0 -6550
  49. package/tests/runtime/tsClosureCases.js.map +0 -1
  50. /package/tests/runtime/{closureLoader.spec.d.ts → closure-integreation-tests.d.ts} +0 -0
@@ -1,31 +0,0 @@
1
- "use strict";
2
- // Copyright 2016-2018, Pulumi Corporation. All rights reserved.
3
-
4
- const cases = [];
5
- {
6
- const zeroBigInt = 0n;
7
- const smallBigInt = 1n;
8
- const negativeBigInt = -1n;
9
- const largeBigInt = 11111111111111111111111111111111111111111n;
10
- const negativeLargeBigInt = -11111111111111111111111111111111111111111n;
11
-
12
- cases.push({
13
- title: "Captures bigint",
14
- // eslint-disable-next-line
15
- func: function () { console.log(zeroBigInt + smallBigInt + negativeBigInt + largeBigInt + negativeBigInt + negativeLargeBigInt); },
16
- expectText: `exports.handler = __f0;
17
-
18
- function __f0() {
19
- return (function() {
20
- with({ zeroBigInt: 0n, smallBigInt: 1n, negativeBigInt: -1n, largeBigInt: 11111111111111111111111111111111111111111n, negativeLargeBigInt: -11111111111111111111111111111111111111111n, this: undefined, arguments: undefined }) {
21
-
22
- return function () { console.log(zeroBigInt + smallBigInt + negativeBigInt + largeBigInt + negativeBigInt + negativeLargeBigInt); };
23
-
24
- }
25
- }).apply(undefined, undefined).apply(this, arguments);
26
- }
27
- `,
28
- });
29
- }
30
-
31
- module.exports.cases = cases;
@@ -1,91 +0,0 @@
1
- "use strict";
2
- // Copyright 2016-2018, Pulumi Corporation. All rights reserved.
3
-
4
- const cases = [];
5
- cases.push({
6
- title: "Async anonymous function closure (js)",
7
- // eslint-disable-next-line
8
- func: async function (a) { await a; },
9
- expectText: `exports.handler = __f0;
10
-
11
- function __f0(__0) {
12
- return (function() {
13
- with({ this: undefined, arguments: undefined }) {
14
-
15
- return async function (a) { await a; };
16
-
17
- }
18
- }).apply(undefined, undefined).apply(this, arguments);
19
- }
20
- `,
21
- });
22
-
23
- cases.push({
24
- title: "Async anonymous function closure - extra space (js)",
25
- // eslint-disable-next-line
26
- func: async function (a) { await a; },
27
- expectText: `exports.handler = __f0;
28
-
29
- function __f0(__0) {
30
- return (function() {
31
- with({ this: undefined, arguments: undefined }) {
32
-
33
- return async function (a) { await a; };
34
-
35
- }
36
- }).apply(undefined, undefined).apply(this, arguments);
37
- }
38
- `,
39
- });
40
-
41
- cases.push({
42
- title: "Async named function closure (js)",
43
- // eslint-disable-next-line
44
- func: async function foo(a) { await a; },
45
- expectText: `exports.handler = __foo;
46
-
47
- function __foo(__0) {
48
- return (function() {
49
- with({ foo: __foo, this: undefined, arguments: undefined }) {
50
-
51
- return async function /*foo*/(a) { await a; };
52
-
53
- }
54
- }).apply(undefined, undefined).apply(this, arguments);
55
- }
56
- `,
57
- });
58
-
59
- cases.push({
60
- title: "Async arrow function closure (js)",
61
- // eslint-disable-next-line
62
- func: async (a) => { await a; },
63
- expectText: `exports.handler = __f0;
64
-
65
- function __f0(__0) {
66
- return (function() {
67
- with({ this: undefined, arguments: undefined }) {
68
-
69
- return async (a) => { await a; };
70
-
71
- }
72
- }).apply(undefined, undefined).apply(this, arguments);
73
- }
74
- `,
75
- });
76
-
77
- cases.push({
78
- title: "Function captures V8 intrinsic (js)",
79
- func: () => { %AbortJS(0) },
80
- error: `Error serializing function 'func': jsClosureCases_8.js(0,0)
81
-
82
- function 'func': jsClosureCases_8.js(0,0): which could not be serialized because
83
- the function could not be parsed: (...)
84
-
85
- Function code:
86
- () => { %AbortJS(0) }`
87
- });
88
-
89
-
90
- module.exports.cases = cases;
91
-
@@ -1 +0,0 @@
1
- export {};
@@ -1,156 +0,0 @@
1
- "use strict";
2
- // Copyright 2016-2022, Pulumi Corporation.
3
- //
4
- // Licensed under the Apache License, Version 2.0 (the "License");
5
- // you may not use this file except in compliance with the License.
6
- // You may obtain a copy of the License at
7
- //
8
- // http://www.apache.org/licenses/LICENSE-2.0
9
- //
10
- // Unless required by applicable law or agreed to in writing, software
11
- // distributed under the License is distributed on an "AS IS" BASIS,
12
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- // See the License for the specific language governing permissions and
14
- // limitations under the License.
15
- var __importStar = (this && this.__importStar) || function (mod) {
16
- if (mod && mod.__esModule) return mod;
17
- var result = {};
18
- if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
19
- result["default"] = mod;
20
- return result;
21
- };
22
- Object.defineProperty(exports, "__esModule", { value: true });
23
- const assert = __importStar(require("assert"));
24
- const pkg = __importStar(require("../../runtime/closure/package"));
25
- describe("module", () => {
26
- it("remaps exports correctly for mockpackage", () => {
27
- assert.strictEqual(pkg.getModuleFromPath("mockpackage/lib/index.js"), "mockpackage");
28
- });
29
- it("should return undefined on unexported members", () => {
30
- assert.throws(() => pkg.getModuleFromPath("mockpackage/lib/external.js"));
31
- });
32
- });
33
- describe("disregard null targets", () => {
34
- // ./node_modules/es-module-package/package.json
35
- const packagedef = {
36
- name: "es-module-package",
37
- exports: {
38
- "./features/private-internal-b/*": null,
39
- "./features/*": "./src/features/*.js",
40
- "./features/private-internal/*": null,
41
- },
42
- };
43
- it(`handles wildcard paths`, () => {
44
- assert.strictEqual(pkg.getModuleFromPath("es-module-package/src/features/private-inter.js", packagedef), "es-module-package/features/private-inter");
45
- assert.strictEqual(pkg.getModuleFromPath("es-module-package/src/features/x.js", packagedef), "es-module-package/features/x");
46
- assert.strictEqual(pkg.getModuleFromPath("es-module-package/src/features/y/z/foo/bar/baz.js", packagedef), "es-module-package/features/y/z/foo/bar/baz");
47
- });
48
- it(`handles whitelisting blacklisted directories`, () => {
49
- assert.strictEqual(pkg.getModuleFromPath("es-module-package/features/internal/public/index.js", {
50
- name: "es-module-package",
51
- exports: {
52
- "./features/internal/*": null,
53
- ".": "./features/internal/public/index.js",
54
- },
55
- }), "es-module-package");
56
- });
57
- });
58
- describe("basic package exports", () => {
59
- // https://nodejs.org/api/packages.html#package-entry-points
60
- const packagedef = {
61
- name: "my-mod",
62
- exports: {
63
- ".": "./lib/index.js",
64
- "./lib": "./lib/index.js",
65
- "./lib/index": "./lib/index.js",
66
- "./lib/index.js": "./lib/index.js",
67
- "./feature": "./feature/index.js",
68
- "./feature/index.js": "./feature/index.js",
69
- "./package.json": "./package.json",
70
- },
71
- };
72
- it("handles multiple aliases 1", () => {
73
- assert.strictEqual(pkg.getModuleFromPath("my-mod/lib/index.js", packagedef), "my-mod/lib/index.js");
74
- });
75
- it("handles multiple aliases 2", () => {
76
- assert.strictEqual(pkg.getModuleFromPath("my-mod/feature/index.js", packagedef), "my-mod/feature/index.js");
77
- });
78
- it("returns with no modification", () => {
79
- assert.strictEqual(pkg.getModuleFromPath("my-mod/package.json", packagedef), "my-mod/package.json");
80
- });
81
- });
82
- describe("wildcard package exports", () => {
83
- const packagedef = {
84
- name: "my-mod",
85
- exports: {
86
- ".": "./lib/index.js",
87
- "./lib": "./lib/index.js",
88
- "./lib/*": "./lib/*.js",
89
- "./feature": "./feature/index.js",
90
- "./feature/*": "./feature/*.js",
91
- "./package.json": "./package.json",
92
- },
93
- };
94
- it("wildcard module", () => {
95
- assert.strictEqual(pkg.getModuleFromPath("my-mod/lib/foobar.js", packagedef), "my-mod/lib/foobar");
96
- assert.strictEqual(pkg.getModuleFromPath("my-mod/lib/foo.js.js", packagedef), "my-mod/lib/foo.js"); // check
97
- assert.strictEqual(pkg.getModuleFromPath("my-mod/feature/foobar.js", packagedef), "my-mod/feature/foobar");
98
- });
99
- it("manual regression tests", () => {
100
- assert.strictEqual(pkg.getModuleFromPath("my-mod/internal/public/index.js.js", {
101
- name: "my-mod",
102
- exports: {
103
- ".": "./internal/public/index.js",
104
- "./public/*": "./internal/public/*.js",
105
- },
106
- }), "my-mod/public/index.js");
107
- assert.strictEqual(pkg.getModuleFromPath("my-mod/internal/public/index.js", {
108
- name: "my-mod",
109
- exports: {
110
- ".": "./internal/public/index.js",
111
- "./public/*": "./internal/public/*",
112
- },
113
- }), "my-mod");
114
- });
115
- });
116
- describe("conditional import/require package exports", () => {
117
- const packagedef = {
118
- // package.json
119
- name: "that-mod",
120
- exports: {
121
- ".": "./main.js",
122
- "./feature": {
123
- node: "./feature-node.js",
124
- default: "./feature.js",
125
- },
126
- },
127
- type: "module",
128
- };
129
- it("remaps conditional node/default nested packages", () => {
130
- assert.strictEqual(pkg.getModuleFromPath("that-mod/main.js", packagedef), "that-mod");
131
- assert.strictEqual(pkg.getModuleFromPath("that-mod/feature-node.js", packagedef), "that-mod/feature");
132
- assert.strictEqual(pkg.getModuleFromPath("that-mod/feature.js", packagedef), "that-mod/feature");
133
- });
134
- });
135
- describe("conditional import/require package exports", () => {
136
- const packagedef = {
137
- // package.json
138
- name: "this-mod",
139
- main: "./main-require.cjs",
140
- exports: {
141
- import: "./main-module.js",
142
- require: "./main-require.cjs",
143
- },
144
- type: "module",
145
- };
146
- it("remaps to main pkg", () => {
147
- assert.throws(() => pkg.getModuleFromPath("this-mod/main-module.js", packagedef));
148
- assert.strictEqual(pkg.getModuleFromPath("this-mod/main-require.cjs", packagedef), "this-mod");
149
- });
150
- });
151
- describe("error cases", () => {
152
- it("returns the original module if package.json not found", () => {
153
- assert.strictEqual(pkg.getModuleFromPath("this-mod/main-require.cjs"), "this-mod/main-require.cjs");
154
- });
155
- });
156
- //# sourceMappingURL=package.spec.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"package.spec.js","sourceRoot":"","sources":["../../../tests/runtime/package.spec.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- export {};