mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
* step 1 * Refactorings * command modules do not depend on anything but itself * tearing it up * Remove module store, manager, and Intializable type * consolidate interfaces in single file * consolidate default services in single file * TEAR IT UP * fix text compile * the end of sern init?? * Presence namespaced types removed * internal namespace * clean up dependencies * fix test * fix circular dependency * still broken but progress * remove barrel for core/structs * reffactor * refactor allat * more refactoring * prototyping linking static handler * cleanup tests, codegen, and importing handler * some refactor * generify partition * for now copy paste new ioc system * removeiti * fdsfD * ensure container is init'd * fix absPath gen * working on bun compat * refactor and clean up and reenter v3 module loading * dsfsd * refactor, add cron types, reinstante module loader * ready handler revamped so much cleaner * fdssdf * refactor deps list * add more tests, polish up ioc * up to speed with event modules * i think cron works * cron works now, poc * ksdjkldsfld * updating ioc api, experimenting with cron * save b4 thunder and lightning * plugin data reduction & args changes * freeze module after plugins, updateModule, and more * simplify plugin args and prepare for reduction among plugins * add deps to plugin calls and execute * plugin system loking better, tbd type * porg * initplugins inject deps, inconspicuos * fix faiklling test * fix initPlugins not reassigning * parsingParams kinda * proper mapping * dynamic customIds * handling customId params working * testing n shi * inlineinignsd * consolidate fmt * once on eventModules * refact,simplf * readd vitest and Asset fn * fix typings * assets fn complete * more intuitive context.options and Asset typings * add init hooks not firing * -file,-updateModule,publish? * fix: ioc deps not created correctly * documentation, add json for Asset * remove asset * ss * finish ioc transition * nvm, now i did * s * update locals api, docs, tests * fix tests * fix up tests and cleanup * fix * Update src/core/functions.ts Co-authored-by: Evo <85353424+EvolutionX-10@users.noreply.github.com> * better documentation * temp fix * namespace presence types again * revising cron modules and better error messages * scheduler ids * more descriptive errors * refactor to not type leak and job cancellation * refactor n better signatures for task scheduler * documentation * fix swap not accepting functions * change task signature --------- Co-authored-by: Evo <85353424+EvolutionX-10@users.noreply.github.com>
152 lines
4.5 KiB
TypeScript
152 lines
4.5 KiB
TypeScript
//@ts-nocheck
|
|
import { beforeEach, describe, expect, vi, it, test } from 'vitest';
|
|
import { callInitPlugins, eventDispatcher } from '../src/handlers/event-utils';
|
|
|
|
import { Client, ChatInputCommandInteraction } from 'discord.js'
|
|
import { faker } from '@faker-js/faker';
|
|
import { Module } from '../src/types/core-modules';
|
|
import { Processed } from '../src/types/core-modules';
|
|
import { EventEmitter } from 'events';
|
|
import { EventType } from '../src/core/structures/enums';
|
|
import { CommandControlPlugin, CommandInitPlugin, CommandType, controller } from '../src';
|
|
|
|
vi.mock('discord.js', async (importOriginal) => {
|
|
const mod = await importOriginal()
|
|
const ModalSubmitInteraction = class {
|
|
customId;
|
|
type = 5;
|
|
isModalSubmit = vi.fn();
|
|
constructor(customId) {
|
|
this.customId = customId;
|
|
}
|
|
};
|
|
const ButtonInteraction = class {
|
|
customId;
|
|
type = 3;
|
|
componentType = 2;
|
|
isButton = vi.fn();
|
|
constructor(customId) {
|
|
this.customId = customId;
|
|
}
|
|
};
|
|
const AutocompleteInteraction = class {
|
|
type = 4;
|
|
option: string;
|
|
constructor(s: string) {
|
|
this.option = s;
|
|
}
|
|
options = {
|
|
getFocused: vi.fn(),
|
|
getSubcommand: vi.fn(),
|
|
};
|
|
};
|
|
|
|
return {
|
|
Client : vi.fn(),
|
|
Collection: mod.Collection,
|
|
ComponentType: mod.ComponentType,
|
|
InteractionType: mod.InteractionType,
|
|
ApplicationCommandOptionType: mod.ApplicationCommandOptionType,
|
|
ApplicationCommandType: mod.ApplicationCommandType,
|
|
ModalSubmitInteraction,
|
|
ButtonInteraction,
|
|
AutocompleteInteraction,
|
|
ChatInputCommandInteraction: vi.fn()
|
|
};
|
|
});
|
|
|
|
function createRandomPlugin (s: 'go', mut?: Partial<Module>) {
|
|
return CommandInitPlugin(({ module }) => {
|
|
if(mut) {
|
|
Object.entries(mut).forEach(([k, v]) => {
|
|
module[k] = v
|
|
})
|
|
}
|
|
return s == 'go'
|
|
? controller.next()
|
|
: controller.stop()
|
|
})
|
|
}
|
|
function createRandomModule(plugins: any[]): Processed<Module> {
|
|
return {
|
|
type: EventType.Discord,
|
|
meta: { id:"", absPath: "" },
|
|
description: faker.string.alpha(),
|
|
plugins,
|
|
name: "cheese",
|
|
onEvent: [],
|
|
execute: vi.fn(),
|
|
};
|
|
}
|
|
|
|
function mockDeps() {
|
|
return {
|
|
'@sern/client': new Client(),
|
|
'@sern/emitter': new EventEmitter()
|
|
}
|
|
}
|
|
|
|
describe('eventDispatcher standard', () => {
|
|
let m: Processed<Module>;
|
|
let ee: EventEmitter;
|
|
beforeEach(() => {
|
|
ee = new EventEmitter();
|
|
m = createRandomModule();
|
|
});
|
|
|
|
it('should throw', () => {
|
|
expect(() => eventDispatcher(mockDeps(), m, 'not event emitter')).toThrowError();
|
|
});
|
|
|
|
it("Shouldn't throw", () => {
|
|
expect(() => eventDispatcher(mockDeps(), m, ee)).not.toThrowError();
|
|
});
|
|
});
|
|
|
|
test ('call init plugins', async () => {
|
|
const deps = mockDeps()
|
|
const plugins = createRandomPlugin('go', { name: "abc" })
|
|
const mod = createRandomModule([plugins])
|
|
const s = await callInitPlugins(mod, deps, false)
|
|
expect("abc").equal(s.name)
|
|
})
|
|
|
|
test('init plugins replace array', async () => {
|
|
const deps = mockDeps()
|
|
const plugins = createRandomPlugin('go', { opts: [] })
|
|
const plugins2 = createRandomPlugin('go', { opts: ['a'] })
|
|
const mod = createRandomModule([plugins, plugins2])
|
|
const s = await callInitPlugins(mod, deps, false)
|
|
expect(['a']).deep.equal(s.opts)
|
|
})
|
|
|
|
test('call control plugin ', async () => {
|
|
const plugin = CommandControlPlugin<CommandType.Slash>((ctx,sdt) => {
|
|
return controller.next();
|
|
});
|
|
const res = await plugin.execute(new ChatInputCommandInteraction(), {})
|
|
expect(res.isOk()).toBe(true)
|
|
})
|
|
|
|
test('form sdt', async () => {
|
|
|
|
const expectedObject = {
|
|
"plugin/abc": faker.person.jobArea(),
|
|
"plugin2/abc": faker.git.branch(),
|
|
"plugin3/cheese": faker.person.jobArea()
|
|
}
|
|
|
|
const plugin = CommandControlPlugin<CommandType.Slash>((ctx,sdt) => {
|
|
return controller.next({ "plugin/abc": expectedObject['plugin/abc'] });
|
|
});
|
|
const plugin2 = CommandControlPlugin<CommandType.Slash>((ctx,sdt) => {
|
|
return controller.next({ "plugin2/abc": expectedObject['plugin2/abc'] });
|
|
});
|
|
const plugin3 = CommandControlPlugin<CommandType.Slash>((ctx,sdt) => {
|
|
return controller.next({ "plugin3/cheese": expectedObject['plugin3/cheese'] });
|
|
});
|
|
|
|
})
|
|
|
|
|