Skip to content

[MCP] Fixed resource path in test#9091

Merged
glen-84 merged 1 commit intomainfrom
gai/fix-resource-path
Feb 5, 2026
Merged

[MCP] Fixed resource path in test#9091
glen-84 merged 1 commit intomainfrom
gai/fix-resource-path

Conversation

@glen-84
Copy link
Copy Markdown
Member

@glen-84 glen-84 commented Feb 5, 2026

Summary of the changes (Less than 80 chars)

  • [MCP] Fixed resource path in test.

Copilot AI review requested due to automatic review settings February 5, 2026 15:15
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR fixes an incorrect resource path in a test case. The test was using an outdated path "ui://open-ai-components/" which has been corrected to "ui://views/" to match the actual ViewResourceUri format defined in the codebase.

Changes:

  • Updated the resource path in the ReadResource_Missing_ThrowsException test to use the correct "ui://views/" prefix instead of "ui://open-ai-components/"

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@glen-84 glen-84 merged commit 6982e62 into main Feb 5, 2026
233 of 236 checks passed
@glen-84 glen-84 deleted the gai/fix-resource-path branch February 5, 2026 15:26
@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 5, 2026

Codecov Report

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

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

☔ 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

github-actions Bot commented Feb 5, 2026

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5833.05 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.79ms 7.11ms 161.85ms 8.42ms 13.17ms 18.89ms

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

Requests/sec Error Rate
4519.52 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.81ms 37.76ms 260.88ms 49.11ms 113.55ms 131.88ms

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
270.37 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.70ms 173.54ms 583.16ms 179.38ms 226.50ms 249.42ms

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

Requests/sec Error Rate
310.81 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.03ms 667.53ms 1678.33ms 681.46ms 1379.03ms 1480.73ms

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
23695.65 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.70ms 38.21ms 2.06ms 3.92ms 4.80ms

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

Requests/sec Error Rate
18619.24 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.25ms 112.67ms 11.23ms 23.15ms 27.82ms

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 21717009348 • Commit a83e3d3 • Thu, 05 Feb 2026 15:40:45 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.

2 participants