Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add eventService and test #42

Closed
wants to merge 1 commit into from
Closed

Conversation

Kyudong3
Copy link
Contributor

Related Issue

resolve: #7

Description

add eventService

Checklist

Thank you for your contribution.
Before submitting this PR, please make sure:

  • Test case
  • End of Work

import {ContractFactoryModule} from '../web3/contract/contract.module';

export const eventServiceProvider = {
provide: 'EVENT_SERVICE',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about registering eventService at EventModule?

export class EventModule {}
export const eventProvider = {
provide: 'EVENT',
useClass: Event,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where this event is injected? I think its weired to make event as provider

@Inject('ABI') private abi: AbiConfig) {
}

getInstance(eventType: EventList) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pls write return type

NewToken: 'Auction',
};

export enum EventList {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about EventName

import {InjectConfig} from 'nestjs-config';

@Injectable()
export class AbiConfig {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this config? I think abiService is better

@@ -0,0 +1,3 @@
export default {
abi: [],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this empty although it is not for test?


service = module.get<EventService>(EventService);
});
describe('check mockedContract', () => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it is not needed


describe('#getEvents()', () => {
it('should return expectedEvent', async () => {
const module: TestingModule = await Test.createTestingModule({
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This part is being repeated. I think it can me minimized with beforeAll or beforeEach

const testAddress = '';
let mockedWeb3: Web3 = mock(Web3);
let mockedContract: Contract = mock(Contract);
let mockedEventService: EventService = mock(EventService);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

U should not mock eventService when testing eventService

}).compile();
service = module.get<EventService>(EventService);
const testEvent: EventList = EventList.NewToken
expect(await mockedEventService.getEvents(testEvent)).toBeDefined();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think testing what should be returned is better

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

U need test fail case too

constructor() {}
private eventIndex: number = 0;

constructor(@Inject('CONTRACT') private contract) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Write type of contract.

And i think naming contractFactory would be better

}).compile();
abi = module.get<AbiConfig>(AbiConfig);
});
it('#getGhostAbi()', () => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesnt need to test other get~abi?


describe('AbiProvider', () => {
let abi: AbiConfig;
const pth = '/Users/Kyudong/Desktop/hatchout/hatchout/server/src/port/adapter/service/blockchain/ethereum/web3';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it can be only tested on your local pc because there is “Kyodong”

it('should return specific Contract', async () => {
const event = EventList.AuctionCreated;
const fac = contractFactory.getInstance(event);
expect(fac).toBeDefined();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is enough to test that fac is defined?

getInstance(eventType: EventList) {
switch (EventType[eventType]) {
case 'Ghost':
return new this.web3.eth.Contract(this.abi.getGhostAbi());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getGhostAbi return just empty array. Is it ok?

@hihiboss hihiboss force-pushed the develop branch 3 times, most recently from 94e7c5d to f12cf75 Compare June 1, 2019 13:42
@Kyudong3 Kyudong3 closed this Jun 26, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Event] implement event service
2 participants