0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/apps/admin-x-settings/test/unit/utils/linkToGithubReleases.test.ts

35 lines
1.3 KiB
TypeScript
Raw Normal View History

import * as assert from 'assert/strict';
import {linkToGitHubReleases} from '../../../src/utils/linkToGithubReleases';
describe('linkToGithubRelease', function () {
it('handles empty version', function () {
const link = linkToGitHubReleases('');
assert.equal(link, '');
});
it('handles plain version release', function () {
const link = linkToGitHubReleases('5.69.0');
assert.equal(link, 'https://github.com/TryGhost/Ghost/releases/tag/v5.69.0');
});
it('handles plain version with +moya suffix', function () {
const link = linkToGitHubReleases('5.69.0+moya');
assert.equal(link, 'https://github.com/TryGhost/Ghost/releases/tag/v5.69.0');
});
it('handles git describe output', function () {
const link = linkToGitHubReleases('5.69.0-0-gabcdef');
assert.equal(link, 'https://github.com/TryGhost/Ghost/commit/abcdef');
});
it('handles git describe output with +moya suffix', function () {
const link = linkToGitHubReleases('5.69.0-0-gabcdef+moya');
assert.equal(link, 'https://github.com/TryGhost/Ghost/commit/abcdef');
});
it('handles prerelease version', function () {
const link = linkToGitHubReleases('5.70.0-pre-gabcdef+moya');
assert.equal(link, 'https://github.com/TryGhost/Ghost/commit/abcdef');
});
});