Skip to content

Commit

Permalink
Merge pull request #68 from kaleido-io/cleanup
Browse files Browse the repository at this point in the history
Split e2e suite
  • Loading branch information
awrichar committed Apr 19, 2022
2 parents d67f527 + 1917fa4 commit e3def39
Show file tree
Hide file tree
Showing 4 changed files with 1,377 additions and 1,332 deletions.
91 changes: 91 additions & 0 deletions test/app.e2e-context.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
import { Server } from 'http';
import { Observer } from 'rxjs';
import { AxiosResponse } from 'axios';
import { HttpService } from '@nestjs/axios';
import request from 'superwstest';
import { INestApplication, ValidationPipe } from '@nestjs/common';
import { WsAdapter } from '@nestjs/platform-ws';
import { Test, TestingModule } from '@nestjs/testing';
import { AppModule } from '../src/app.module';
import { EventStreamReply , Event } from '../src/event-stream/event-stream.interfaces';
import { EventStreamService } from '../src/event-stream/event-stream.service';
import { EventStreamProxyGateway } from '../src/eventstream-proxy/eventstream-proxy.gateway';
import { TokensService } from '../src/tokens/tokens.service';

export const BASE_URL = 'http://eth';
export const INSTANCE_PATH = '/tokens';
export const PREFIX = 'fly';
export const TOPIC = 'tokentest';

export class TestContext {
app: INestApplication;
server: ReturnType<typeof request>;
http: {
get: ReturnType<typeof jest.fn>;
post: ReturnType<typeof jest.fn>;
};
eventHandler: (events: Event[]) => void;
receiptHandler: (receipt: EventStreamReply) => void;

eventstream = {
connect: (
url: string,
topic: string,
handleEvents: (events: Event[]) => void,
handleReceipt: (receipt: EventStreamReply) => void,
) => {
this.eventHandler = handleEvents;
this.receiptHandler = handleReceipt;
},

getSubscription: jest.fn(),
};

async begin() {
this.http = {
get: jest.fn(),
post: jest.fn(),
};
this.eventstream.getSubscription.mockReset();

const moduleFixture: TestingModule = await Test.createTestingModule({
imports: [AppModule],
})
.overrideProvider(HttpService)
.useValue(this.http)
.overrideProvider(EventStreamService)
.useValue(this.eventstream)
.compile();

this.app = moduleFixture.createNestApplication();
this.app.useWebSocketAdapter(new WsAdapter(this.app));
this.app.useGlobalPipes(new ValidationPipe({ whitelist: true }));
await this.app.init();

this.app.get(EventStreamProxyGateway).configure('url', TOPIC);
this.app.get(TokensService).configure(BASE_URL, INSTANCE_PATH, TOPIC, PREFIX, '', '');

(this.app.getHttpServer() as Server).listen();
this.server = request(this.app.getHttpServer());
}

async end() {
await this.app.close();
}
}

export class FakeObservable<T> {
constructor(public data: T) {}

subscribe(observer?: Partial<Observer<AxiosResponse<T>>>) {
observer?.next &&
observer?.next({
status: 200,
statusText: 'OK',
headers: {},
config: {},
data: this.data,
});
observer?.complete && observer?.complete();
}
}
Loading

0 comments on commit e3def39

Please sign in to comment.