Skip to content

Commit 1c79cb8

Browse files
authored
[compiler][ez] Move compiler gating tests (#32595)
Move all gating tests to `gating/` --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32595). * #32596 * __->__ #32595 * #32594 * #32593 * #32522 * #32521
1 parent 89a46a5 commit 1c79cb8

File tree

44 files changed

+402
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+402
-166
lines changed

compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ const testComplexConfigDefaults: PartialEnvironmentConfig = {
663663
source: 'react-compiler-runtime',
664664
importSpecifierName: 'shouldInstrument',
665665
},
666-
globalGating: '__DEV__',
666+
globalGating: 'DEV',
667667
},
668668
enableEmitHookGuards: {
669669
source: 'react-compiler-runtime',

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/arrow-function-expr-gating-test.expect.md

-35
This file was deleted.

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/arrow-function-expr-gating-test.js

-4
This file was deleted.

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/codegen-emit-imports-same-source.expect.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
import { c as _c } from "react/compiler-runtime"; // @enableEmitFreeze @enableEmitInstrumentForget
2222

2323
function useFoo(props) {
24-
if (__DEV__ && shouldInstrument)
24+
if (DEV && shouldInstrument)
2525
useRenderCounter("useFoo", "/codegen-emit-imports-same-source.ts");
2626
const $ = _c(2);
2727
let t0;

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/codegen-instrument-forget-test.expect.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { c as _c } from "react/compiler-runtime"; // @enableEmitInstrumentForget
2828

2929
function Bar(props) {
3030
"use forget";
31-
if (__DEV__ && shouldInstrument)
31+
if (DEV && shouldInstrument)
3232
useRenderCounter("Bar", "/codegen-instrument-forget-test.ts");
3333
const $ = _c(2);
3434
let t0;
@@ -48,7 +48,7 @@ function NoForget(props) {
4848

4949
function Foo(props) {
5050
"use forget";
51-
if (__DEV__ && shouldInstrument)
51+
if (DEV && shouldInstrument)
5252
useRenderCounter("Foo", "/codegen-instrument-forget-test.ts");
5353
const $ = _c(2);
5454
let t0;

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating-test-export-function-and-default.js

-14
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
2+
## Input
3+
4+
```javascript
5+
// @gating
6+
import {Stringify} from 'shared-runtime';
7+
const ErrorView = ({error, _retry}) => <Stringify error={error}></Stringify>;
8+
9+
export default ErrorView;
10+
11+
export const FIXTURE_ENTRYPOINT = {
12+
fn: eval('ErrorView'),
13+
params: [{}],
14+
};
15+
16+
```
17+
18+
## Code
19+
20+
```javascript
21+
import { isForgetEnabled_Fixtures } from "ReactForgetFeatureFlag";
22+
import { c as _c } from "react/compiler-runtime"; // @gating
23+
import { Stringify } from "shared-runtime";
24+
const ErrorView = isForgetEnabled_Fixtures()
25+
? (t0) => {
26+
const $ = _c(2);
27+
const { error } = t0;
28+
let t1;
29+
if ($[0] !== error) {
30+
t1 = <Stringify error={error} />;
31+
$[0] = error;
32+
$[1] = t1;
33+
} else {
34+
t1 = $[1];
35+
}
36+
return t1;
37+
}
38+
: ({ error, _retry }) => <Stringify error={error}></Stringify>;
39+
40+
export default ErrorView;
41+
42+
export const FIXTURE_ENTRYPOINT = {
43+
fn: eval("ErrorView"),
44+
params: [{}],
45+
};
46+
47+
```
48+
49+
### Eval output
50+
(kind: ok) <div>{}</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// @gating
2+
import {Stringify} from 'shared-runtime';
3+
const ErrorView = ({error, _retry}) => <Stringify error={error}></Stringify>;
4+
5+
export default ErrorView;
6+
7+
export const FIXTURE_ENTRYPOINT = {
8+
fn: eval('ErrorView'),
9+
params: [{}],
10+
};

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/codegen-instrument-forget-gating-test.expect.md compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating/codegen-instrument-forget-gating-test.expect.md

+52-12
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,22 @@ function NoForget(props) {
1515

1616
function Foo(props) {
1717
'use forget';
18-
return <Foo>{props.bar}</Foo>;
18+
if (props.bar < 0) {
19+
return props.children;
20+
}
21+
return (
22+
<Foo bar={props.bar - 1}>
23+
<NoForget />
24+
</Foo>
25+
);
1926
}
2027

28+
global.DEV = true;
29+
export const FIXTURE_ENTRYPOINT = {
30+
fn: eval('Foo'),
31+
params: [{bar: 2}],
32+
};
33+
2134
```
2235

2336
## Code
@@ -29,7 +42,7 @@ import { c as _c } from "react/compiler-runtime"; // @enableEmitInstrumentForget
2942
const Bar = isForgetEnabled_Fixtures()
3043
? function Bar(props) {
3144
"use forget";
32-
if (__DEV__ && shouldInstrument)
45+
if (DEV && shouldInstrument)
3346
useRenderCounter("Bar", "/codegen-instrument-forget-gating-test.ts");
3447
const $ = _c(2);
3548
let t0;
@@ -53,23 +66,50 @@ function NoForget(props) {
5366
const Foo = isForgetEnabled_Fixtures()
5467
? function Foo(props) {
5568
"use forget";
56-
if (__DEV__ && shouldInstrument)
69+
if (DEV && shouldInstrument)
5770
useRenderCounter("Foo", "/codegen-instrument-forget-gating-test.ts");
58-
const $ = _c(2);
59-
let t0;
60-
if ($[0] !== props.bar) {
61-
t0 = <Foo>{props.bar}</Foo>;
62-
$[0] = props.bar;
71+
const $ = _c(3);
72+
if (props.bar < 0) {
73+
return props.children;
74+
}
75+
76+
const t0 = props.bar - 1;
77+
let t1;
78+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
79+
t1 = <NoForget />;
80+
$[0] = t1;
81+
} else {
82+
t1 = $[0];
83+
}
84+
let t2;
85+
if ($[1] !== t0) {
86+
t2 = <Foo bar={t0}>{t1}</Foo>;
6387
$[1] = t0;
88+
$[2] = t2;
6489
} else {
65-
t0 = $[1];
90+
t2 = $[2];
6691
}
67-
return t0;
92+
return t2;
6893
}
6994
: function Foo(props) {
7095
"use forget";
71-
return <Foo>{props.bar}</Foo>;
96+
if (props.bar < 0) {
97+
return props.children;
98+
}
99+
return (
100+
<Foo bar={props.bar - 1}>
101+
<NoForget />
102+
</Foo>
103+
);
72104
};
73105

106+
global.DEV = true;
107+
export const FIXTURE_ENTRYPOINT = {
108+
fn: eval("Foo"),
109+
params: [{ bar: 2 }],
110+
};
111+
74112
```
75-
113+
114+
### Eval output
115+
(kind: ok) <div></div>

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/codegen-instrument-forget-gating-test.js compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating/codegen-instrument-forget-gating-test.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,18 @@ function NoForget(props) {
1111

1212
function Foo(props) {
1313
'use forget';
14-
return <Foo>{props.bar}</Foo>;
14+
if (props.bar < 0) {
15+
return props.children;
16+
}
17+
return (
18+
<Foo bar={props.bar - 1}>
19+
<NoForget />
20+
</Foo>
21+
);
1522
}
23+
24+
global.DEV = true;
25+
export const FIXTURE_ENTRYPOINT = {
26+
fn: eval('Foo'),
27+
params: [{bar: 2}],
28+
};

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating-test-export-default-function.expect.md compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating/gating-test-export-default-function.expect.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ function Foo(props) {
1717
return <Foo>{props.bar}</Foo>;
1818
}
1919

20+
export const FIXTURE_ENTRYPOINT = {
21+
fn: eval('Bar'),
22+
params: [{bar: 2}],
23+
};
24+
2025
```
2126

2227
## Code
@@ -66,5 +71,12 @@ const Foo = isForgetEnabled_Fixtures()
6671
return <Foo>{props.bar}</Foo>;
6772
};
6873

74+
export const FIXTURE_ENTRYPOINT = {
75+
fn: eval("Bar"),
76+
params: [{ bar: 2 }],
77+
};
78+
6979
```
70-
80+
81+
### Eval output
82+
(kind: ok) <div>2</div>

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating-test-export-default-function.js compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating/gating-test-export-default-function.js

+5
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ function Foo(props) {
1212
'use forget';
1313
return <Foo>{props.bar}</Foo>;
1414
}
15+
16+
export const FIXTURE_ENTRYPOINT = {
17+
fn: eval('Bar'),
18+
params: [{bar: 2}],
19+
};

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating-test-export-function-and-default.expect.md compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/gating/gating-test-export-function-and-default.expect.md

+50-13
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,23 @@ function NoForget(props) {
1212
return <Bar>{props.noForget}</Bar>;
1313
}
1414

15-
export function Foo(props) {
15+
function Foo(props) {
1616
'use forget';
17-
return <Foo>{props.bar}</Foo>;
17+
if (props.bar < 0) {
18+
return props.children;
19+
}
20+
return (
21+
<Foo bar={props.bar - 1}>
22+
<NoForget />
23+
</Foo>
24+
);
1825
}
1926

27+
export const FIXTURE_ENTRYPOINT = {
28+
fn: eval('Bar'),
29+
params: [{bar: 2}],
30+
};
31+
2032
```
2133

2234
## Code
@@ -47,25 +59,50 @@ export default Bar;
4759
function NoForget(props) {
4860
return <Bar>{props.noForget}</Bar>;
4961
}
50-
51-
export const Foo = isForgetEnabled_Fixtures()
62+
const Foo = isForgetEnabled_Fixtures()
5263
? function Foo(props) {
5364
"use forget";
54-
const $ = _c(2);
55-
let t0;
56-
if ($[0] !== props.bar) {
57-
t0 = <Foo>{props.bar}</Foo>;
58-
$[0] = props.bar;
65+
const $ = _c(3);
66+
if (props.bar < 0) {
67+
return props.children;
68+
}
69+
70+
const t0 = props.bar - 1;
71+
let t1;
72+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
73+
t1 = <NoForget />;
74+
$[0] = t1;
75+
} else {
76+
t1 = $[0];
77+
}
78+
let t2;
79+
if ($[1] !== t0) {
80+
t2 = <Foo bar={t0}>{t1}</Foo>;
5981
$[1] = t0;
82+
$[2] = t2;
6083
} else {
61-
t0 = $[1];
84+
t2 = $[2];
6285
}
63-
return t0;
86+
return t2;
6487
}
6588
: function Foo(props) {
6689
"use forget";
67-
return <Foo>{props.bar}</Foo>;
90+
if (props.bar < 0) {
91+
return props.children;
92+
}
93+
return (
94+
<Foo bar={props.bar - 1}>
95+
<NoForget />
96+
</Foo>
97+
);
6898
};
6999

100+
export const FIXTURE_ENTRYPOINT = {
101+
fn: eval("Bar"),
102+
params: [{ bar: 2 }],
103+
};
104+
70105
```
71-
106+
107+
### Eval output
108+
(kind: ok) <div>2</div>

0 commit comments

Comments
 (0)