Skip to content

[Fusion] Added requirement tests#9117

Merged
michaelstaib merged 9 commits intomainfrom
mst/requirement-tests
Feb 15, 2026
Merged

[Fusion] Added requirement tests#9117
michaelstaib merged 9 commits intomainfrom
mst/requirement-tests

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@michaelstaib michaelstaib changed the title Added requirement tests [Fusion] Added requirement tests Feb 15, 2026
@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2925.24 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.80ms 14.98ms 173.04ms 16.87ms 30.87ms 36.07ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3266.33 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.69ms 65.16ms 284.48ms 68.27ms 127.79ms 143.91ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
      }
    }
  }
}

Deep Recursion Query

Constant Load (50 VUs)

Requests/sec Error Rate
741.56 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
8.71ms 62.62ms 340.04ms 65.90ms 82.10ms 91.34ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
816.00 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.86ms 252.99ms 706.72ms 264.08ms 525.62ms 568.12ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  users {
    ...User
    reviews {
      ...Review
      product {
        ...Product
        reviews {
          ...Review
          author {
            ...User
            reviews {
              ...Review
              product {
                ...Product
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
        reviews {
          ...Review
          product {
            ...Product
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23578.85 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.71ms 48.76ms 2.07ms 3.95ms 4.82ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18509.96 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.42ms 120.05ms 11.38ms 23.41ms 28.11ms

Executed Query

query TestQuery_8f7a46ce_2(
  $__fusion_1_upc: ID!
  $__fusion_2_price: Long!
  $__fusion_2_weight: Long!
) {
  productByUpc(upc: $__fusion_1_upc) {
    inStock
    shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
  }
}

Variables (5 sets batched in single request)

[
  { "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
  { "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
  { "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]

No baseline data available for comparison.


Run 22039943801 • Commit 8fd67ce • Sun, 15 Feb 2026 17:45:30 GMT

@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2840.14 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.85ms 15.73ms 172.27ms 17.38ms 30.96ms 36.55ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3355.15 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.66ms 63.69ms 260.18ms 66.45ms 123.92ms 141.47ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
      }
    }
  }
}

Deep Recursion Query

Constant Load (50 VUs)

Requests/sec Error Rate
748.02 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
8.73ms 62.20ms 394.68ms 65.29ms 80.72ms 88.88ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
840.26 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.84ms 250.58ms 679.82ms 256.09ms 502.95ms 539.12ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  users {
    ...User
    reviews {
      ...Review
      product {
        ...Product
        reviews {
          ...Review
          author {
            ...User
            reviews {
              ...Review
              product {
                ...Product
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
        reviews {
          ...Review
          product {
            ...Product
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23476.93 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.71ms 40.26ms 2.08ms 3.97ms 4.86ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18468.42 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.32ms 112.17ms 11.40ms 23.57ms 28.40ms

Executed Query

query TestQuery_8f7a46ce_2(
  $__fusion_1_upc: ID!
  $__fusion_2_price: Long!
  $__fusion_2_weight: Long!
) {
  productByUpc(upc: $__fusion_1_upc) {
    inStock
    shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
  }
}

Variables (5 sets batched in single request)

[
  { "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
  { "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
  { "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]

No baseline data available for comparison.


Run 22040777904 • Commit 5151600 • Sun, 15 Feb 2026 18:43:45 GMT

@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2969.58 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.79ms 14.71ms 172.07ms 16.62ms 30.62ms 35.90ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3278.98 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.75ms 68.03ms 243.31ms 68.01ms 125.09ms 138.55ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
      }
    }
  }
}

Deep Recursion Query

Constant Load (50 VUs)

Requests/sec Error Rate
745.87 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
9.04ms 62.42ms 348.62ms 65.49ms 80.77ms 90.39ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
823.63 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.86ms 251.67ms 687.21ms 260.73ms 524.31ms 559.19ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  users {
    ...User
    reviews {
      ...Review
      product {
        ...Product
        reviews {
          ...Review
          author {
            ...User
            reviews {
              ...Review
              product {
                ...Product
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
        reviews {
          ...Review
          product {
            ...Product
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23622.33 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.70ms 45.97ms 2.07ms 3.94ms 4.80ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18471.82 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.52ms 104.43ms 11.45ms 23.52ms 28.25ms

Executed Query

query TestQuery_8f7a46ce_2(
  $__fusion_1_upc: ID!
  $__fusion_2_price: Long!
  $__fusion_2_weight: Long!
) {
  productByUpc(upc: $__fusion_1_upc) {
    inStock
    shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
  }
}

Variables (5 sets batched in single request)

[
  { "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
  { "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
  { "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]

No baseline data available for comparison.


Run 22041432292 • Commit 92d50f7 • Sun, 15 Feb 2026 19:29:20 GMT

@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2939.43 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.75ms 14.98ms 171.59ms 16.79ms 30.74ms 36.13ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3171.56 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.75ms 68.23ms 276.64ms 70.30ms 131.15ms 148.80ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
      }
    }
  }
}

Deep Recursion Query

Constant Load (50 VUs)

Requests/sec Error Rate
746.85 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
8.83ms 62.47ms 346.14ms 65.45ms 81.00ms 88.97ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
823.98 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.83ms 255.85ms 683.93ms 261.11ms 518.19ms 552.76ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  users {
    ...User
    reviews {
      ...Review
      product {
        ...Product
        reviews {
          ...Review
          author {
            ...User
            reviews {
              ...Review
              product {
                ...Product
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
        reviews {
          ...Review
          product {
            ...Product
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23684.99 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.70ms 47.66ms 2.06ms 3.94ms 4.80ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18456.52 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.38ms 108.56ms 11.39ms 23.42ms 28.35ms

Executed Query

query TestQuery_8f7a46ce_2(
  $__fusion_1_upc: ID!
  $__fusion_2_price: Long!
  $__fusion_2_weight: Long!
) {
  productByUpc(upc: $__fusion_1_upc) {
    inStock
    shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
  }
}

Variables (5 sets batched in single request)

[
  { "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
  { "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
  { "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]

No baseline data available for comparison.


Run 22043302099 • Commit a4a386e • Sun, 15 Feb 2026 21:40:50 GMT

@michaelstaib michaelstaib merged commit 90af6b1 into main Feb 15, 2026
116 checks passed
@michaelstaib michaelstaib deleted the mst/requirement-tests branch February 15, 2026 21:58
@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 15, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (bc5a190) to head (aedc02a).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@     Coverage Diff      @@
##   main   #9117   +/-   ##
============================
============================

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2855.19 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.78ms 15.41ms 173.54ms 17.29ms 31.24ms 36.54ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3316.10 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.81ms 66.03ms 249.00ms 67.32ms 126.31ms 140.37ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
      }
    }
  }
}

Deep Recursion Query

Constant Load (50 VUs)

Requests/sec Error Rate
755.66 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
9.04ms 61.48ms 334.88ms 64.63ms 81.13ms 89.95ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
832.61 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.76ms 249.39ms 696.55ms 259.77ms 525.05ms 561.01ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  users {
    ...User
    reviews {
      ...Review
      product {
        ...Product
        reviews {
          ...Review
          author {
            ...User
            reviews {
              ...Review
              product {
                ...Product
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
        reviews {
          ...Review
          product {
            ...Product
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23500.48 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.72ms 46.19ms 2.08ms 3.97ms 4.86ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18537.91 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.34ms 105.46ms 11.37ms 23.47ms 28.36ms

Executed Query

query TestQuery_8f7a46ce_2(
  $__fusion_1_upc: ID!
  $__fusion_2_price: Long!
  $__fusion_2_weight: Long!
) {
  productByUpc(upc: $__fusion_1_upc) {
    inStock
    shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
  }
}

Variables (5 sets batched in single request)

[
  { "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
  { "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
  { "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]

No baseline data available for comparison.


Run 22043679957 • Commit 04c71de • Sun, 15 Feb 2026 22:07:16 GMT

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant