Skip to content

Commit f90edc4

Browse files
monicatangfacebook-github-bot
authored andcommitted
add regression test for fragment spreads with undefined global variables as arguments
Summary: Don't think we have a similar test for this where we are passing an undefined global variable as an argument to a fragment spread, so added one while working on T160746170 Add regression test for fragment spreads with undefined global variables as arguments Reviewed By: alunyov Differential Revision: D50573429 fbshipit-source-id: b16bb3e2fecb32f1c642f912808e1b81a991bfe5
1 parent 8011e22 commit f90edc4

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
==================================== INPUT ====================================
2+
#expected-to-throw
3+
query QueryWithUndefinedArgument {
4+
node {
5+
...UserFragment @arguments(age: $age)
6+
}
7+
}
8+
9+
fragment UserFragment on User
10+
@argumentDefinitions(age: {type: "Int", defaultValue: null}) {
11+
name
12+
}
13+
==================================== ERROR ====================================
14+
✖︎ Expected variable `$age` to be defined on the operation
15+
16+
fragment-spread-with-undefined-argument.invalid.graphql:4:37
17+
3 │ node {
18+
4 │ ...UserFragment @arguments(age: $age)
19+
│ ^^^^
20+
5 │ }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#expected-to-throw
2+
query QueryWithUndefinedArgument {
3+
node {
4+
...UserFragment @arguments(age: $age)
5+
}
6+
}
7+
8+
fragment UserFragment on User
9+
@argumentDefinitions(age: {type: "Int", defaultValue: null}) {
10+
name
11+
}

compiler/crates/relay-transforms/tests/validate_global_variables_test.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<2727cdaebb7d446fd26bcade2da67b8f>>
7+
* @generated SignedSource<<7435d162790438e443e6e90825864a09>>
88
*/
99

1010
mod validate_global_variables;
@@ -19,6 +19,13 @@ async fn fragment_include_with_provided_argument() {
1919
test_fixture(transform_fixture, "fragment-include-with-provided-argument.graphql", "validate_global_variables/fixtures/fragment-include-with-provided-argument.expected", input, expected).await;
2020
}
2121

22+
#[tokio::test]
23+
async fn fragment_spread_with_undefined_argument_invalid() {
24+
let input = include_str!("validate_global_variables/fixtures/fragment-spread-with-undefined-argument.invalid.graphql");
25+
let expected = include_str!("validate_global_variables/fixtures/fragment-spread-with-undefined-argument.invalid.expected");
26+
test_fixture(transform_fixture, "fragment-spread-with-undefined-argument.invalid.graphql", "validate_global_variables/fixtures/fragment-spread-with-undefined-argument.invalid.expected", input, expected).await;
27+
}
28+
2229
#[tokio::test]
2330
async fn fragment_with_undefined_variable_invalid() {
2431
let input = include_str!("validate_global_variables/fixtures/fragment-with-undefined-variable.invalid.graphql");

0 commit comments

Comments
 (0)