mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* Ensure serial is prioritized * Add compile listener to create github annotations * Update node modules * Don't build ubuntu on PR as secrets are now needed. Update PR template to request an example successful run. Remove 32bit windows build. Build on push to any branch * Update activation to use blank project * Ensure exceptions get annotated as well * More robust console printing * Update test project * Build iOS test on macos to verify burst functionality. Add annotation for license activation error. Fix unity version test. Remove minification from android * Improve license checks * Mask partially redacted serial in addition to full serial * Add retry logic to ubuntu builds * Allow dirty build on retry * Bump unity version
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import UnityVersioning from './unity-versioning';
|
|
|
|
describe('Unity Versioning', () => {
|
|
describe('parse', () => {
|
|
it('throws for empty string', () => {
|
|
expect(() => UnityVersioning.parse('')).toThrow(Error);
|
|
});
|
|
|
|
it('parses from ProjectVersion.txt', () => {
|
|
const projectVersionContents = `m_EditorVersion: 2021.3.4f1
|
|
m_EditorVersionWithRevision: 2021.3.4f1 (cb45f9cae8b7)`;
|
|
expect(UnityVersioning.parse(projectVersionContents)).toBe('2021.3.4f1');
|
|
});
|
|
});
|
|
|
|
describe('read', () => {
|
|
it('throws for invalid path', () => {
|
|
expect(() => UnityVersioning.read('')).toThrow(Error);
|
|
});
|
|
|
|
it('reads from test-project', () => {
|
|
expect(UnityVersioning.read('./test-project')).toBe('2021.3.4f1');
|
|
});
|
|
});
|
|
|
|
describe('determineUnityVersion', () => {
|
|
it('defaults to parsed version', () => {
|
|
expect(UnityVersioning.determineUnityVersion('./test-project', 'auto')).toBe('2021.3.4f1');
|
|
});
|
|
|
|
it('use specified unityVersion', () => {
|
|
expect(UnityVersioning.determineUnityVersion('./test-project', '1.2.3')).toBe('1.2.3');
|
|
});
|
|
});
|
|
});
|