ember-codemods-telemetry-helpers
Version:
Helpers for gathering app telemetry for codemods.
68 lines (58 loc) • 1.85 kB
JavaScript
const { getModulePathFor } = require('./get-module-path-for');
import { describe, test, expect } from 'vitest';
describe('getModulePathFor', () => {
const addonPaths = {
'/User/whomever/some-app/lib/special-sauce': 'special-sauce',
};
const appPaths = {
'/User/whomever/some-app': 'some-app',
};
test('can determine the runtime module id for a specific on disk in-repo addon file', () => {
expect(
getModulePathFor(
'/User/whomever/some-app/lib/special-sauce/addon/components/fire-sauce.js',
addonPaths,
appPaths
)
).toEqual('special-sauce/components/fire-sauce');
expect(
getModulePathFor(
'/User/whomever/some-app/lib/special-sauce/addon-test-support/services/whatever.js',
addonPaths,
appPaths
)
).toEqual('special-sauce/test-support/services/whatever');
expect(
getModulePathFor(
'/User/whomever/some-app/lib/special-sauce/tests/dummy/app/services/fire-sauce.js',
addonPaths,
appPaths
)
).toEqual('dummy/services/fire-sauce');
});
test("does not process files in an in-repo addon's app/ folder", () => {
expect(
getModulePathFor(
'/User/whomever/some-app/lib/special-sauce/app/services/whatever.js',
addonPaths,
appPaths
)
).toEqual(undefined);
});
test('can determine the runtime module id for a file in the app itself', () => {
expect(
getModulePathFor(
'/User/whomever/some-app/app/services/something-here.js',
addonPaths,
appPaths
)
).toEqual('some-app/services/something-here');
expect(
getModulePathFor(
'/User/whomever/some-app/tests/mocks/something-here.js',
addonPaths,
appPaths
)
).toEqual('some-app/tests/mocks/something-here');
});
});