| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- import gql from 'graphql-tag';
- import path from 'path';
- import { LanguageCode } from '../../shared/generated-types';
- import { ConfigService } from '../src/config/config.service';
- import { TEST_SETUP_TIMEOUT_MS } from './config/test-config';
- import {
- TestAPIExtensionPlugin,
- TestPluginWithConfigAndBootstrap,
- TestPluginWithOnClose,
- TestPluginWithProvider,
- } from './fixtures/test-plugins';
- import { TestAdminClient, TestShopClient } from './test-client';
- import { TestServer } from './test-server';
- describe('Plugins', () => {
- const adminClient = new TestAdminClient();
- const shopClient = new TestShopClient();
- const server = new TestServer();
- const bootstrapMockFn = jest.fn();
- const onCloseFn = jest.fn();
- beforeAll(async () => {
- const token = await server.init(
- {
- productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-full.csv'),
- customerCount: 1,
- },
- {
- plugins: [
- new TestPluginWithConfigAndBootstrap(bootstrapMockFn),
- new TestAPIExtensionPlugin(),
- new TestPluginWithProvider(),
- new TestPluginWithOnClose(onCloseFn),
- ],
- },
- );
- await adminClient.init();
- await shopClient.init();
- }, TEST_SETUP_TIMEOUT_MS);
- afterAll(async () => {
- await server.destroy();
- });
- it('can modify the config in configure() and inject in onBootstrap()', () => {
- expect(bootstrapMockFn).toHaveBeenCalled();
- const configService: ConfigService = bootstrapMockFn.mock.calls[0][0];
- expect(configService instanceof ConfigService).toBe(true);
- expect(configService.defaultLanguageCode).toBe(LanguageCode.zh);
- });
- it('extends the admin API', async () => {
- const result = await adminClient.query(gql`
- query {
- foo
- }
- `);
- expect(result.foo).toEqual(['bar']);
- });
- it('extends the shop API', async () => {
- const result = await shopClient.query(gql`
- query {
- baz
- }
- `);
- expect(result.baz).toEqual(['quux']);
- });
- it('DI works with defined providers', async () => {
- const result = await shopClient.query(gql`
- query {
- names
- }
- `);
- expect(result.names).toEqual(['seon', 'linda', 'hong']);
- });
- it('calls onClose method when app is closed', async () => {
- await server.destroy();
- expect(onCloseFn).toHaveBeenCalled();
- });
- });
|