external-protocol-security.test.mjs
13 lines 426 B
Raw
sha256:b5f647cb9c409f563d4671fe3fc05ddea01fabfed9b41fc11cb923588e1c1baf mirror: GitHub Phase A durable MCP OAuth (#270) Human minor ⚠ breaking 11 days ago
1 import { describe, it } from 'node:test';
2 import { expect } from 'chai';
3 import * as protocol from '../../lib/agent/external-agent-protocol.mjs';
4
5 describe('Security: External Protocol Bearer Resolution', () => {
6 it('should resolve a valid bearer token', async () => {
7 expect(protocol.resolveBearer).to.be.a('function');
8 });
9
10 it('should reject malformed inputs', async () => {
11 expect(true).to.be.true;
12 });
13 });
File History 1 commit
sha256:b5f647cb9c409f563d4671fe3fc05ddea01fabfed9b41fc11cb923588e1c1baf mirror: GitHub Phase A durable MCP OAuth (#270) Human minor 11 days ago