mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-11 00:13:56 -07:00
9d475434d3
* Rename "Cloud Runner" to "Orchestrator" across entire codebase Breaking change: All CloudRunner classes, options, environment variables, and action.yml inputs have been renamed to Orchestrator equivalents. - Renamed src/model/cloud-runner/ directory to src/model/orchestrator/ - Renamed all cloud-runner-* files to orchestrator-* - Renamed all CloudRunner* classes to Orchestrator* (15+ classes) - Renamed all cloudRunner* properties to orchestrator* equivalents - Renamed CLOUD_RUNNER_* env vars to ORCHESTRATOR_* - Updated action.yml [CloudRunner] markers to [Orchestrator] - Updated workflow files and package.json test scripts - Updated all runtime strings (cache paths, log messages, branch refs) - Rebuilt dist/index.js No backward compatibility layer is provided. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Remove tracked log/temp files and add to .gitignore Remove $LOG_FILE and temp/job-log.txt debug artifacts that should not be in the repository. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
import { GitRepoReader } from './git-repo';
|
|
import { OrchestratorSystem } from '../orchestrator/services/core/orchestrator-system';
|
|
import OrchestratorOptions from '../orchestrator/options/orchestrator-options';
|
|
|
|
describe(`git repo tests`, () => {
|
|
it(`Branch value parsed from CLI to not contain illegal characters`, async () => {
|
|
expect(await GitRepoReader.GetBranch()).not.toContain(`\n`);
|
|
expect(await GitRepoReader.GetBranch()).not.toContain(` `);
|
|
});
|
|
|
|
it(`returns valid branch name when using https`, async () => {
|
|
const mockValue = 'https://github.com/example/example.git';
|
|
await jest.spyOn(OrchestratorSystem, 'Run').mockReturnValue(Promise.resolve(mockValue));
|
|
await jest.spyOn(OrchestratorOptions, 'providerStrategy', 'get').mockReturnValue('not-local');
|
|
expect(await GitRepoReader.GetRemote()).toEqual(`example/example`);
|
|
});
|
|
|
|
it(`returns valid branch name when using ssh`, async () => {
|
|
const mockValue = 'git@github.com:example/example.git';
|
|
await jest.spyOn(OrchestratorSystem, 'Run').mockReturnValue(Promise.resolve(mockValue));
|
|
await jest.spyOn(OrchestratorOptions, 'providerStrategy', 'get').mockReturnValue('not-local');
|
|
expect(await GitRepoReader.GetRemote()).toEqual(`example/example`);
|
|
});
|
|
});
|