137 lines
4.9 KiB
JavaScript
137 lines
4.9 KiB
JavaScript
/** @odoo-module **/
|
|
|
|
import { registry } from "@web/core/registry";
|
|
import { makeEnv, startServices } from "@web/env";
|
|
import FormController from "web.FormController";
|
|
import { SERVICES_METADATA } from "../../src/env";
|
|
import { registerCleanup } from "./cleanup";
|
|
import { makeMockServer } from "./mock_server";
|
|
import { mocks } from "./mock_services";
|
|
import { patchWithCleanup } from "./utils";
|
|
|
|
function prepareRegistry(registry, keepContent = false) {
|
|
const _addEventListener = registry.addEventListener.bind(registry);
|
|
const _removeEventListener = registry.removeEventListener.bind(registry);
|
|
const patch = {
|
|
content: keepContent ? { ...registry.content } : {},
|
|
elements: null,
|
|
entries: null,
|
|
subRegistries: {},
|
|
addEventListener(type, callback) {
|
|
_addEventListener(type, callback);
|
|
registerCleanup(() => {
|
|
_removeEventListener(type, callback);
|
|
});
|
|
},
|
|
};
|
|
patchWithCleanup(registry, patch);
|
|
}
|
|
|
|
export function clearRegistryWithCleanup(registry) {
|
|
prepareRegistry(registry);
|
|
}
|
|
|
|
function cloneRegistryWithCleanup(registry) {
|
|
prepareRegistry(registry, true);
|
|
}
|
|
|
|
export function clearServicesMetadataWithCleanup() {
|
|
const servicesMetadata = Object.assign({}, SERVICES_METADATA);
|
|
for (const key of Object.keys(SERVICES_METADATA)) {
|
|
delete SERVICES_METADATA[key];
|
|
}
|
|
registerCleanup(() => {
|
|
for (const key of Object.keys(SERVICES_METADATA)) {
|
|
delete SERVICES_METADATA[key];
|
|
}
|
|
Object.assign(SERVICES_METADATA, servicesMetadata);
|
|
});
|
|
}
|
|
|
|
function prepareRegistriesWithCleanup() {
|
|
// Clone registries
|
|
cloneRegistryWithCleanup(registry.category("actions"));
|
|
cloneRegistryWithCleanup(registry.category("views"));
|
|
cloneRegistryWithCleanup(registry.category("error_handlers"));
|
|
cloneRegistryWithCleanup(registry.category("command_provider"));
|
|
cloneRegistryWithCleanup(registry.category("command_setup"));
|
|
cloneRegistryWithCleanup(registry.category("view_widgets"));
|
|
cloneRegistryWithCleanup(registry.category("fields"));
|
|
cloneRegistryWithCleanup(registry.category("wowlToLegacyServiceMappers"));
|
|
|
|
cloneRegistryWithCleanup(registry.category("main_components"));
|
|
cloneRegistryWithCleanup(registry.category("fields"));
|
|
|
|
// Clear registries
|
|
clearRegistryWithCleanup(registry.category("command_categories"));
|
|
clearRegistryWithCleanup(registry.category("debug"));
|
|
clearRegistryWithCleanup(registry.category("error_dialogs"));
|
|
clearRegistryWithCleanup(registry.category("favoriteMenu"));
|
|
clearRegistryWithCleanup(registry.category("ir.actions.report handlers"));
|
|
clearRegistryWithCleanup(registry.category("wowlToLegacyServiceMappers"));
|
|
|
|
clearRegistryWithCleanup(registry.category("services"));
|
|
clearServicesMetadataWithCleanup();
|
|
|
|
clearRegistryWithCleanup(registry.category("systray"));
|
|
clearRegistryWithCleanup(registry.category("user_menuitems"));
|
|
clearRegistryWithCleanup(registry.category("kanban_examples"));
|
|
clearRegistryWithCleanup(registry.category("__processed_archs__"));
|
|
clearRegistryWithCleanup(registry.category("action_menus"));
|
|
// fun fact: at least one registry is missing... this shows that we need a
|
|
// better design for the way we clear these registries...
|
|
}
|
|
|
|
// This is exported in a utils object to allow for patching
|
|
export const utils = {
|
|
prepareRegistriesWithCleanup,
|
|
};
|
|
|
|
/**
|
|
* @typedef {import("@web/env").OdooEnv} OdooEnv
|
|
*/
|
|
|
|
/**
|
|
* Create a test environment
|
|
*
|
|
* @param {*} config
|
|
* @returns {Promise<OdooEnv>}
|
|
*/
|
|
export async function makeTestEnv(config = {}) {
|
|
// add all missing dependencies if necessary
|
|
const serviceRegistry = registry.category("services");
|
|
const servicesToProcess = serviceRegistry.getAll();
|
|
while (servicesToProcess.length) {
|
|
const service = servicesToProcess.pop();
|
|
if (service.dependencies) {
|
|
for (const depName of service.dependencies) {
|
|
if (depName in mocks && !serviceRegistry.contains(depName)) {
|
|
const dep = mocks[depName]();
|
|
serviceRegistry.add(depName, dep);
|
|
servicesToProcess.push(dep);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (config.serverData || config.mockRPC || config.activateMockServer) {
|
|
await makeMockServer(config.serverData, config.mockRPC);
|
|
}
|
|
|
|
// remove the multi-click delay for the quick edit in form views
|
|
// todo: move this elsewhere (setup?)
|
|
const initialQuickEditDelay = FormController.prototype.multiClickTime;
|
|
FormController.prototype.multiClickTime = 0;
|
|
registerCleanup(() => {
|
|
FormController.prototype.multiClickTime = initialQuickEditDelay;
|
|
});
|
|
|
|
let env = makeEnv();
|
|
await startServices(env);
|
|
owl.Component.env = env;
|
|
if ("config" in config) {
|
|
env = Object.assign(Object.create(env), { config: config.config });
|
|
}
|
|
return env;
|
|
}
|