fix(companion): resolve fixtures path correctly for both dev and built modes

This commit is contained in:
2025-11-22 17:31:21 +01:00
parent 515aef71bb
commit 99fa06e12b
2 changed files with 116 additions and 61 deletions

View File

@@ -4,63 +4,117 @@ import { resolveFixturesPath } from '@/apps/companion/main/di-container';
describe('DIContainer path resolution', () => {
describe('resolveFixturesPath', () => {
it('should resolve fixtures path to monorepo root when app path is apps/companion/dist/main', () => {
// Given: The app path as it would be in Electron runtime (apps/companion/dist/main)
const mockAppPath = '/Users/test/Projects/gridpilot/apps/companion/dist/main';
const relativePath = './resources/iracing-hosted-sessions';
describe('built mode (with /dist/ in path)', () => {
it('should resolve fixtures path to monorepo root when dirname is apps/companion/dist/main', () => {
// Given: The dirname as it would be in built Electron runtime (apps/companion/dist/main)
const mockDirname = '/Users/test/Projects/gridpilot/apps/companion/dist/main';
const relativePath = './resources/iracing-hosted-sessions';
// When: Resolving the fixtures path
const resolved = resolveFixturesPath(relativePath, mockAppPath);
// When: Resolving the fixtures path
const resolved = resolveFixturesPath(relativePath, mockDirname);
// Then: Should resolve to monorepo root (4 levels up from apps/companion/dist/main)
// Level 0: apps/companion/dist/main (app.getAppPath())
// Level 1: apps/companion/dist (../)
// Level 2: apps/companion (../../)
// Level 3: apps (../../../)
// Level 4: gridpilot (monorepo root) (../../../../) ← CORRECT
const expectedPath = '/Users/test/Projects/gridpilot/resources/iracing-hosted-sessions';
expect(resolved).toBe(expectedPath);
// Then: Should resolve to monorepo root (4 levels up from apps/companion/dist/main)
// Level 0: apps/companion/dist/main (__dirname)
// Level 1: apps/companion/dist (../)
// Level 2: apps/companion (../../)
// Level 3: apps (../../../)
// Level 4: gridpilot (monorepo root) (../../../../) ← CORRECT
const expectedPath = '/Users/test/Projects/gridpilot/resources/iracing-hosted-sessions';
expect(resolved).toBe(expectedPath);
});
it('should navigate exactly 4 levels up in built mode', () => {
// Given: A path with /dist/ that demonstrates the 4-level navigation
const mockDirname = '/level4/level3/dist/level1';
const relativePath = './target';
// When: Resolving the fixtures path
const resolved = resolveFixturesPath(relativePath, mockDirname);
// Then: Should resolve to the path 4 levels up (root /)
expect(resolved).toBe('/target');
});
it('should work with different relative path formats in built mode', () => {
// Given: Various relative path formats
const mockDirname = '/Users/test/Projects/gridpilot/apps/companion/dist/main';
// When/Then: Different relative formats should all work
expect(resolveFixturesPath('resources/fixtures', mockDirname))
.toBe('/Users/test/Projects/gridpilot/resources/fixtures');
expect(resolveFixturesPath('./resources/fixtures', mockDirname))
.toBe('/Users/test/Projects/gridpilot/resources/fixtures');
});
});
it('should return absolute paths unchanged', () => {
// Given: An absolute path
const absolutePath = '/some/absolute/path/to/fixtures';
const mockAppPath = '/Users/test/Projects/gridpilot/apps/companion/dist/main';
describe('dev mode (without /dist/ in path)', () => {
it('should resolve fixtures path to monorepo root when dirname is apps/companion/main', () => {
// Given: The dirname as it would be in dev mode (apps/companion/main)
const mockDirname = '/Users/test/Projects/gridpilot/apps/companion/main';
const relativePath = './resources/iracing-hosted-sessions';
// When: Resolving an absolute path
const resolved = resolveFixturesPath(absolutePath, mockAppPath);
// When: Resolving the fixtures path
const resolved = resolveFixturesPath(relativePath, mockDirname);
// Then: Should return the absolute path unchanged
expect(resolved).toBe(absolutePath);
// Then: Should resolve to monorepo root (3 levels up from apps/companion/main)
// Level 0: apps/companion/main (__dirname)
// Level 1: apps/companion (../)
// Level 2: apps (../../)
// Level 3: gridpilot (monorepo root) (../../../) ← CORRECT
const expectedPath = '/Users/test/Projects/gridpilot/resources/iracing-hosted-sessions';
expect(resolved).toBe(expectedPath);
});
it('should navigate exactly 3 levels up in dev mode', () => {
// Given: A path without /dist/ that demonstrates the 3-level navigation
const mockDirname = '/level3/level2/level1';
const relativePath = './target';
// When: Resolving the fixtures path
const resolved = resolveFixturesPath(relativePath, mockDirname);
// Then: Should resolve to the path 3 levels up (root /)
expect(resolved).toBe('/target');
});
it('should work with different relative path formats in dev mode', () => {
// Given: Various relative path formats
const mockDirname = '/Users/test/Projects/gridpilot/apps/companion/main';
// When/Then: Different relative formats should all work
expect(resolveFixturesPath('resources/fixtures', mockDirname))
.toBe('/Users/test/Projects/gridpilot/resources/fixtures');
expect(resolveFixturesPath('./resources/fixtures', mockDirname))
.toBe('/Users/test/Projects/gridpilot/resources/fixtures');
});
});
it('should navigate exactly 4 levels up from app path', () => {
// Given: A path that demonstrates the 4-level navigation
const mockAppPath = '/level4/level3/level2/level1';
const relativePath = './target';
describe('absolute paths', () => {
it('should return absolute paths unchanged in built mode', () => {
// Given: An absolute path
const absolutePath = '/some/absolute/path/to/fixtures';
const mockDirname = '/Users/test/Projects/gridpilot/apps/companion/dist/main';
// When: Resolving the fixtures path
const resolved = resolveFixturesPath(relativePath, mockAppPath);
// When: Resolving an absolute path
const resolved = resolveFixturesPath(absolutePath, mockDirname);
// Then: Should resolve to the path 4 levels up (root /)
// Level 0: /level4/level3/level2/level1 (appPath)
// Level 1: /level4/level3/level2 (../)
// Level 2: /level4/level3 (../../)
// Level 3: /level4 (../../../)
// Level 4: / (../../../../) ← monorepo root equivalent
expect(resolved).toBe('/target');
});
// Then: Should return the absolute path unchanged
expect(resolved).toBe(absolutePath);
});
it('should work with different relative path formats', () => {
// Given: Various relative path formats
const mockAppPath = '/Users/test/Projects/gridpilot/apps/companion/dist/main';
it('should return absolute paths unchanged in dev mode', () => {
// Given: An absolute path
const absolutePath = '/some/absolute/path/to/fixtures';
const mockDirname = '/Users/test/Projects/gridpilot/apps/companion/main';
// When/Then: Different relative formats should all work
expect(resolveFixturesPath('resources/fixtures', mockAppPath))
.toBe('/Users/test/Projects/gridpilot/resources/fixtures');
expect(resolveFixturesPath('./resources/fixtures', mockAppPath))
.toBe('/Users/test/Projects/gridpilot/resources/fixtures');
// When: Resolving an absolute path
const resolved = resolveFixturesPath(absolutePath, mockDirname);
// Then: Should return the absolute path unchanged
expect(resolved).toBe(absolutePath);
});
});
});
});