7f26b17652
* Improve error message when using invalid client_id during code exchange * Extract SPA example OAuth client in own package * wip * remove dependency on get-port * Properly configure jest to only transpile "get-port" from node_modules https://jestjs.io/docs/configuration#transformignorepatterns-arraystring * Use dynamically assigned port number during tests * use puppeteer to run tests * remove login input "id" attribute * code style * add missing declaration * tidy * headless * remove get-port dependency * fix tests/proxied/admin.test.ts * fix tests * Allow unsecure oauth providers through configuration * transpile "lande" during ozone tests * Cache Puppeteer browser binaries * Use puppeteer cache during all workflow steps * remove use of set-output * use get-port in xrpc-server tests * Renamed to allowHttp * tidy * tidy
127 lines
3.2 KiB
TypeScript
127 lines
3.2 KiB
TypeScript
import * as http from 'node:http'
|
|
import { AddressInfo } from 'node:net'
|
|
import { LexiconDoc } from '@atproto/lexicon'
|
|
import { XrpcClient } from '@atproto/xrpc'
|
|
import { createServer, closeServer } from './_util'
|
|
import * as xrpcServer from '../src'
|
|
|
|
const LEXICONS: LexiconDoc[] = [
|
|
{
|
|
lexicon: 1,
|
|
id: 'io.example.pingOne',
|
|
defs: {
|
|
main: {
|
|
type: 'query',
|
|
parameters: {
|
|
type: 'params',
|
|
properties: {
|
|
message: { type: 'string' },
|
|
},
|
|
},
|
|
output: {
|
|
encoding: 'text/plain',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
lexicon: 1,
|
|
id: 'io.example.pingTwo',
|
|
defs: {
|
|
main: {
|
|
type: 'query',
|
|
parameters: {
|
|
type: 'params',
|
|
properties: {
|
|
message: { type: 'string' },
|
|
},
|
|
},
|
|
output: {
|
|
encoding: 'application/octet-stream',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
lexicon: 1,
|
|
id: 'io.example.pingThree',
|
|
defs: {
|
|
main: {
|
|
type: 'query',
|
|
parameters: {
|
|
type: 'params',
|
|
properties: {
|
|
message: { type: 'string' },
|
|
},
|
|
},
|
|
output: {
|
|
encoding: 'application/json',
|
|
schema: {
|
|
type: 'object',
|
|
required: ['message'],
|
|
properties: { message: { type: 'string' } },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
]
|
|
|
|
describe('Queries', () => {
|
|
let s: http.Server
|
|
const server = xrpcServer.createServer(LEXICONS)
|
|
server.method('io.example.pingOne', (ctx: { params: xrpcServer.Params }) => {
|
|
return { encoding: 'text/plain', body: ctx.params.message }
|
|
})
|
|
server.method('io.example.pingTwo', (ctx: { params: xrpcServer.Params }) => {
|
|
return {
|
|
encoding: 'application/octet-stream',
|
|
body: new TextEncoder().encode(String(ctx.params.message)),
|
|
}
|
|
})
|
|
server.method(
|
|
'io.example.pingThree',
|
|
(ctx: { params: xrpcServer.Params }) => {
|
|
return {
|
|
encoding: 'application/json',
|
|
body: { message: ctx.params.message },
|
|
headers: { 'x-test-header-name': 'test-value' },
|
|
}
|
|
},
|
|
)
|
|
|
|
let client: XrpcClient
|
|
beforeAll(async () => {
|
|
s = await createServer(server)
|
|
const { port } = s.address() as AddressInfo
|
|
client = new XrpcClient(`http://localhost:${port}`, LEXICONS)
|
|
})
|
|
afterAll(async () => {
|
|
await closeServer(s)
|
|
})
|
|
|
|
it('serves requests', async () => {
|
|
const res1 = await client.call('io.example.pingOne', {
|
|
message: 'hello world',
|
|
})
|
|
expect(res1.success).toBeTruthy()
|
|
expect(res1.headers['content-type']).toBe('text/plain; charset=utf-8')
|
|
expect(res1.data).toBe('hello world')
|
|
|
|
const res2 = await client.call('io.example.pingTwo', {
|
|
message: 'hello world',
|
|
})
|
|
expect(res2.success).toBeTruthy()
|
|
expect(res2.headers['content-type']).toBe('application/octet-stream')
|
|
expect(new TextDecoder().decode(res2.data)).toBe('hello world')
|
|
|
|
const res3 = await client.call('io.example.pingThree', {
|
|
message: 'hello world',
|
|
})
|
|
expect(res3.success).toBeTruthy()
|
|
expect(res3.headers['content-type']).toBe('application/json; charset=utf-8')
|
|
expect(res3.data?.message).toBe('hello world')
|
|
expect(res3.headers['x-test-header-name']).toEqual('test-value')
|
|
})
|
|
})
|