當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript apollo-server-integration-testsuite.default函數代碼示例

本文整理匯總了TypeScript中apollo-server-integration-testsuite.default函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript default函數的具體用法?TypeScript default怎麽用?TypeScript default使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了default函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: createApp

(NODE_MAJOR_VERSION < 8 ? describe.skip : describe)('integration:Hapi', () => {
  async function createApp(options: CreateAppOptions = {}) {
    const { Server } = require('hapi');

    const app: import('hapi').Server = new Server({
      host: 'localhost',
      port: 8000,
    });

    const server = new ApolloServer(
      (options.graphqlOptions as Config) || { schema: Schema },
    );
    await server.applyMiddleware({
      app,
    });

    await app.start();

    return app.listener;
  }

  async function destroyApp(app) {
    if (!app || !app.close) {
      return;
    }
    await new Promise(resolve => app.close(resolve));
  }

  testSuite(createApp, destroyApp);
});
開發者ID:apollostack,項目名稱:apollo-server,代碼行數:30,代碼來源:hapiApollo.test.ts

示例2: testSuite

describe('integration:Connect', () => {
  testSuite(createConnectApp);
});
開發者ID:apollostack,項目名稱:apollo-server,代碼行數:3,代碼來源:connectApollo.test.ts

示例3: testSuite

describe('integration:Lambda', () => {
  testSuite(createLambda);
});
開發者ID:apollostack,項目名稱:apollo-server,代碼行數:3,代碼來源:lambdaApollo.test.ts

示例4: testSuite

describe('integration:CloudFunction', () => {
  testSuite(createCloudFunction);
});
開發者ID:apollostack,項目名稱:apollo-server,代碼行數:3,代碼來源:googleCloudApollo.test.ts

示例5: testSuite

describe('integration:Micro', () => {
  testSuite(createApp);
});
開發者ID:chentsulin,項目名稱:apollo-server,代碼行數:3,代碼來源:microApollo.test.ts

示例6: testSuite

describe('integration:Fastify', () => {
  testSuite(createApp, destroyApp);
});
開發者ID:apollostack,項目名稱:apollo-server,代碼行數:3,代碼來源:fastifyApollo.test.ts

示例7: testSuite

describe('integration:AzureFunctions', () => {
  testSuite(createAzureFunction);

  it('can append CORS headers to GET request', async () => {
    const server = new ApolloServer({ schema: Schema });
    const handler = server.createHandler({
      cors: {
        origin: 'CORSOrigin',
        methods: ['GET', 'POST', 'PUT'],
        allowedHeaders: 'AllowedCORSHeader1,AllowedCORSHeader1',
        exposedHeaders: 'ExposedCORSHeader1,ExposedCORSHeader2',
        credentials: true,
        maxAge: 42,
      },
    });
    const expectedResult = {
      testString: 'it works',
    };
    const query = {
      query: 'query test{ testString }',
    };
    const request = {
      method: 'GET',
      body: null,
      path: '/graphql',
      query: query,
      headers: {},
    };
    const context: any = {};
    const p = new Promise((resolve, reject) => {
      context.done = (error: Error, result: any) => {
        if (error) {
          reject(error);
        } else {
          resolve(result);
        }
      };
    });
    handler(context as any, request as any);
    const result: any = await p;

    expect(result.status).toEqual(200);
    expect(result.body).toEqual(
      JSON.stringify({ data: expectedResult }) + '\n',
    );
    expect(result.headers['Access-Control-Allow-Origin']).toEqual('CORSOrigin');
    expect(result.headers['Access-Control-Allow-Methods']).toEqual(
      'GET,POST,PUT',
    );
    expect(result.headers['Access-Control-Allow-Headers']).toEqual(
      'AllowedCORSHeader1,AllowedCORSHeader1',
    );
    expect(result.headers['Access-Control-Expose-Headers']).toEqual(
      'ExposedCORSHeader1,ExposedCORSHeader2',
    );
    expect(result.headers['Access-Control-Allow-Credentials']).toEqual('true');
    expect(result.headers['Access-Control-Max-Age']).toEqual(42);
  });

  it('can handle OPTIONS request with CORS headers', () => {
    const server = new ApolloServer({ schema: Schema });
    const handler = server.createHandler({
      cors: {
        allowedHeaders: 'AllowedCORSHeader1,AllowedCORSHeader1',
      },
    });
    const request = {
      method: 'OPTIONS',
      body: null,
      path: '/graphql',
      query: null,
      headers: {},
    };
    const context = {
      done(error, result) {
        if (error) throw error;
        expect(result.status).toEqual(204);
        expect(result.headers['Access-Control-Allow-Headers']).toEqual(
          'AllowedCORSHeader1,AllowedCORSHeader1',
        );
      },
    };
    handler(context as any, request as any);
  });

  it('can return playground html', () => {
    const server = new ApolloServer({ schema: Schema });
    const handler = server.createHandler({});
    const request = {
      method: 'GET',
      body: null,
      path: '/',
      query: null,
      headers: {
        Accept: 'text/html',
      },
    };
    const context = {
      done(error, result) {
        if (error) throw error;
//.........這裏部分代碼省略.........
開發者ID:apollostack,項目名稱:apollo-server,代碼行數:101,代碼來源:azureFunctionApollo.test.ts

示例8: function

describe('integration:Micro', function() {
  testSuite(createApp);
});
開發者ID:apollostack,項目名稱:apollo-server,代碼行數:3,代碼來源:microApollo.test.ts


注:本文中的apollo-server-integration-testsuite.default函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。