91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Jest如何測試GraphQL的實時查詢

發布時間:2024-08-27 21:33:51 來源:億速云 閱讀:81 作者:小樊 欄目:編程語言

要使用Jest測試GraphQL的實時查詢,你需要模擬WebSocket連接并在測試中發送和接收消息

  1. 首先,確保你已經安裝了以下依賴項:
npm install --save-dev jest @types/jest graphql-ws ws
  1. 創建一個__tests__文件夾來存放你的測試文件。

  2. __tests__文件夾中創建一個名為graphql-realtime.test.ts的文件,然后編寫以下代碼:

import { createServer } from 'http';
import { Server } from 'ws';
import { GraphQLSchema, GraphQLObjectType, GraphQLString } from 'graphql';
import { useServer } from 'graphql-ws/lib/use/ws';
import { SubscriptionServer } from 'subscriptions-transport-ws';
import { execute, subscribe } from 'graphql';
import { PubSub } from 'graphql-subscriptions';

// 創建一個簡單的GraphQL schema
const schema = new GraphQLSchema({
  query: new GraphQLObjectType({
    name: 'Query',
    fields: {
      message: {
        type: GraphQLString,
        resolve: () => 'Hello World!',
      },
    },
  }),
  subscription: new GraphQLObjectType({
    name: 'Subscription',
    fields: {
      message: {
        type: GraphQLString,
        subscribe: (_, __, { pubsub }) => pubsub.asyncIterator('MESSAGE'),
      },
    },
  }),
});

describe('GraphQL Realtime Query', () => {
  let httpServer;
  let wsServer;
  let pubsub;

  beforeEach(() => {
    httpServer = createServer();
    wsServer = new Server({ server: httpServer });
    pubsub = new PubSub();

    useServer(
      {
        schema,
        execute,
        subscribe,
        context: () => ({ pubsub }),
      },
      wsServer
    );

    httpServer.listen(4000);
  });

  afterEach(() => {
    if (httpServer) {
      httpServer.close();
    }
    if (wsServer) {
      wsServer.close();
    }
  });

  it('should receive realtime messages', async () => {
    // 創建一個WebSocket客戶端
    const client = new WebSocket('ws://localhost:4000/graphql');

    // 等待WebSocket連接建立
    await new Promise((resolve) => client.onopen = resolve);

    // 訂閱實時消息
    client.send(JSON.stringify({
      type: 'start',
      id: '1',
      payload: {
        query: `
          subscription {
            message
          }
        `,
      },
    }));

    // 發送實時消息
    pubsub.publish('MESSAGE', { message: 'Hello from realtime query!' });

    // 等待實時消息到達
    const response = await new Promise((resolve) => client.onmessage = resolve);

    // 斷言收到的消息
    expect(JSON.parse(response.data)).toEqual({
      type: 'data',
      id: '1',
      payload: { data: { message: 'Hello from realtime query!' } },
    });
  });
});

這個測試將創建一個GraphQL服務器,使用graphql-ws庫提供實時查詢支持,并通過WebSocket連接發送和接收實時消息。測試將訂閱實時消息,然后發布一條消息,最后檢查是否收到了正確的消息。

  1. 運行測試:
npx jest __tests__/graphql-realtime.test.ts

這個測試應該能夠成功通過,表明你已經成功地使用Jest測試了GraphQL的實時查詢。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江口县| 佳木斯市| 黄龙县| 太湖县| 阳江市| 东乡| 赤城县| 齐河县| 溆浦县| 白玉县| 峡江县| 平潭县| 利辛县| 东辽县| 沧州市| 青海省| 嘉峪关市| 绵竹市| 五莲县| 德安县| 虎林市| 南华县| 开封县| 张家界市| 平谷区| 衡山县| 宣威市| 二连浩特市| 浦县| 喜德县| 江城| 界首市| 开江县| 星座| 满洲里市| 大埔县| 雅江县| 乌鲁木齐县| 长治市| 汽车| 朔州市|