project/lib/specifications/SpecificationVersion.js

  1. import semver from "semver";
  2. const SPEC_VERSION_PATTERN = /^\d+\.\d+$/;
  3. const SUPPORTED_VERSIONS = [
  4. "0.1", "1.0", "1.1",
  5. "2.0", "2.1", "2.2", "2.3", "2.4", "2.5", "2.6",
  6. "3.0", "3.1", "3.2"
  7. ];
  8. /**
  9. * Helper class representing a Specification Version. Featuring helper functions for easy comparison
  10. * of versions.
  11. *
  12. * @public
  13. * @class
  14. * @alias @ui5/project/specifications/utils/SpecificationVersion
  15. */
  16. class SpecificationVersion {
  17. #specVersion;
  18. #semverVersion;
  19. /**
  20. * @public
  21. * @param {string} specVersion Specification Version to use for all comparison operations
  22. * @throws {Error} Throws if provided Specification Version is not supported by this version of @ui5/project
  23. */
  24. constructor(specVersion) {
  25. this.#specVersion = specVersion;
  26. this.#semverVersion = getSemverCompatibleVersion(specVersion); // Throws for unsupported versions
  27. }
  28. /**
  29. * Returns the Specification Version
  30. *
  31. * @public
  32. * @returns {string} Specification Version
  33. */
  34. toString() {
  35. return this.#specVersion;
  36. }
  37. /**
  38. * Returns the major-version of the instance's Specification Version
  39. *
  40. * @public
  41. * @returns {integer} Major version
  42. */
  43. major() {
  44. return semver.major(this.#semverVersion);
  45. }
  46. /**
  47. * Returns the minor-version of the instance's Specification Version
  48. *
  49. * @public
  50. * @returns {integer} Minor version
  51. */
  52. minor() {
  53. return semver.minor(this.#semverVersion);
  54. }
  55. /**
  56. * Test whether the instance's Specification Version falls into the provided range
  57. *
  58. * @public
  59. * @param {string} range [Semver]{@link https://www.npmjs.com/package/semver}-style version range,
  60. * for example <code>2.2 - 2.4</code> or <code>=3.0</code>
  61. * @returns {boolean} True if the instance's Specification Version falls into the provided range
  62. */
  63. satisfies(range) {
  64. return semver.satisfies(this.#semverVersion, range);
  65. }
  66. /**
  67. * Test whether the instance's Specification Version is greater than the provided test version
  68. *
  69. * @public
  70. * @param {string} testVersion A Specification Version to compare the instance's Specification Version to
  71. * @returns {boolean} True if the instance's Specification Version is greater than the provided version
  72. */
  73. gt(testVersion) {
  74. return handleSemverComparator(semver.gt, this.#semverVersion, testVersion);
  75. }
  76. /**
  77. * Test whether the instance's Specification Version is greater than or equal to the provided test version
  78. *
  79. * @public
  80. * @param {string} testVersion A Specification Version to compare the instance's Specification Version to
  81. * @returns {boolean} True if the instance's Specification Version is greater than or equal to the provided version
  82. */
  83. gte(testVersion) {
  84. return handleSemverComparator(semver.gte, this.#semverVersion, testVersion);
  85. }
  86. /**
  87. * Test whether the instance's Specification Version is smaller than the provided test version
  88. *
  89. * @public
  90. * @param {string} testVersion A Specification Version to compare the instance's Specification Version to
  91. * @returns {boolean} True if the instance's Specification Version is smaller than the provided version
  92. */
  93. lt(testVersion) {
  94. return handleSemverComparator(semver.lt, this.#semverVersion, testVersion);
  95. }
  96. /**
  97. * Test whether the instance's Specification Version is smaller than or equal to the provided test version
  98. *
  99. * @public
  100. * @param {string} testVersion A Specification Version to compare the instance's Specification Version to
  101. * @returns {boolean} True if the instance's Specification Version is smaller than or equal to the provided version
  102. */
  103. lte(testVersion) {
  104. return handleSemverComparator(semver.lte, this.#semverVersion, testVersion);
  105. }
  106. /**
  107. * Test whether the instance's Specification Version is equal to the provided test version
  108. *
  109. * @public
  110. * @param {string} testVersion A Specification Version to compare the instance's Specification Version to
  111. * @returns {boolean} True if the instance's Specification Version is equal to the provided version
  112. */
  113. eq(testVersion) {
  114. return handleSemverComparator(semver.eq, this.#semverVersion, testVersion);
  115. }
  116. /**
  117. * Test whether the instance's Specification Version is not equal to the provided test version
  118. *
  119. * @public
  120. * @param {string} testVersion A Specification Version to compare the instance's Specification Version to
  121. * @returns {boolean} True if the instance's Specification Version is not equal to the provided version
  122. */
  123. neq(testVersion) {
  124. return handleSemverComparator(semver.neq, this.#semverVersion, testVersion);
  125. }
  126. /**
  127. * Test whether the provided Specification Version is supported by this version of @ui5/project
  128. *
  129. * @public
  130. * @param {string} testVersion A Specification Version to compare the instance's Specification Version to
  131. * @returns {boolean} True if the provided Specification Version is supported
  132. */
  133. static isSupportedSpecVersion(testVersion) {
  134. return SUPPORTED_VERSIONS.includes(testVersion);
  135. }
  136. /**
  137. * Returns the major-version of the provided Specification Version
  138. *
  139. * @public
  140. * @param {string} specVersion Specification Version
  141. * @returns {integer} Major version
  142. */
  143. static major(specVersion) {
  144. const comparator = new SpecificationVersion(specVersion);
  145. return comparator.major();
  146. }
  147. /**
  148. * Returns the minor-version of the provided Specification Version
  149. *
  150. * @public
  151. * @param {string} specVersion Specification Version
  152. * @returns {integer} Minor version
  153. */
  154. static minor(specVersion) {
  155. const comparator = new SpecificationVersion(specVersion);
  156. return comparator.minor();
  157. }
  158. /**
  159. * Test whether the provided Specification Version falls into the provided range
  160. *
  161. * @public
  162. * @param {string} specVersion Specification Version
  163. * @param {string} range [Semver]{@link https://www.npmjs.com/package/semver}-style version range,
  164. * for example <code>2.2 - 2.4</code>
  165. * @returns {boolean} True if the provided Specification Version falls into the provided range
  166. */
  167. static satisfies(specVersion, range) {
  168. const comparator = new SpecificationVersion(specVersion);
  169. return comparator.satisfies(range);
  170. }
  171. /**
  172. * Test whether the provided Specification Version is greater than the provided test version
  173. *
  174. * @public
  175. * @param {string} specVersion Specification Version
  176. * @param {string} testVersion A Specification Version to compare the provided Specification Version to
  177. * @returns {boolean} True if the provided Specification Version is greater than the provided version
  178. */
  179. static gt(specVersion, testVersion) {
  180. const comparator = new SpecificationVersion(specVersion);
  181. return comparator.gt(testVersion);
  182. }
  183. /**
  184. * Test whether the provided Specification Version is greater than or equal to the provided test version
  185. *
  186. * @public
  187. * @param {string} specVersion Specification Version
  188. * @param {string} testVersion A Specification Version to compare the provided Specification Version to
  189. * @returns {boolean} True if the provided Specification Version is greater than or equal to the provided version
  190. */
  191. static gte(specVersion, testVersion) {
  192. const comparator = new SpecificationVersion(specVersion);
  193. return comparator.gte(testVersion);
  194. }
  195. /**
  196. * Test whether the provided Specification Version is smaller than the provided test version
  197. *
  198. * @public
  199. * @param {string} specVersion Specification Version
  200. * @param {string} testVersion A Specification Version to compare the provided Specification Version to
  201. * @returns {boolean} True if the provided Specification Version is smaller than the provided version
  202. */
  203. static lt(specVersion, testVersion) {
  204. const comparator = new SpecificationVersion(specVersion);
  205. return comparator.lt(testVersion);
  206. }
  207. /**
  208. * Test whether the provided Specification Version is smaller than or equal to the provided test version
  209. *
  210. * @public
  211. * @param {string} specVersion Specification Version
  212. * @param {string} testVersion A Specification Version to compare the provided Specification Version to
  213. * @returns {boolean} True if the provided Specification Version is smaller than or equal to the provided version
  214. */
  215. static lte(specVersion, testVersion) {
  216. const comparator = new SpecificationVersion(specVersion);
  217. return comparator.lte(testVersion);
  218. }
  219. /**
  220. * Test whether the provided Specification Version is equal to the provided test version
  221. *
  222. * @public
  223. * @param {string} specVersion Specification Version
  224. * @param {string} testVersion A Specification Version to compare the provided Specification Version to
  225. * @returns {boolean} True if the provided Specification Version is equal to the provided version
  226. */
  227. static eq(specVersion, testVersion) {
  228. const comparator = new SpecificationVersion(specVersion);
  229. return comparator.eq(testVersion);
  230. }
  231. /**
  232. * Test whether the provided Specification Version is not equal to the provided test version
  233. *
  234. * @public
  235. * @param {string} specVersion Specification Version
  236. * @param {string} testVersion A Specification Version to compare the provided Specification Version to
  237. * @returns {boolean} True if the provided Specification Version is not equal to the provided version
  238. */
  239. static neq(specVersion, testVersion) {
  240. const comparator = new SpecificationVersion(specVersion);
  241. return comparator.neq(testVersion);
  242. }
  243. /**
  244. * Creates an array of Specification Versions that match with the provided range. This is mainly used
  245. * for testing purposes. I.e. to execute identical tests for a range of specification versions.
  246. *
  247. * @public
  248. * @param {string} range [Semver]{@link https://www.npmjs.com/package/semver}-style version range,
  249. * for example <code>2.2 - 2.4</code> or <code>=3.0</code>
  250. * @returns {string[]} Array of versions that match the specified range
  251. */
  252. static getVersionsForRange(range) {
  253. return SUPPORTED_VERSIONS.filter((specVersion) => {
  254. const comparator = new SpecificationVersion(specVersion);
  255. return comparator.satisfies(range);
  256. });
  257. }
  258. }
  259. function getUnsupportedSpecVersionMessage(specVersion) {
  260. return `Unsupported Specification Version ${specVersion} defined. Your UI5 CLI installation might be outdated. ` +
  261. `For details, see https://sap.github.io/ui5-tooling/pages/Configuration/#specification-versions`;
  262. }
  263. function getSemverCompatibleVersion(specVersion) {
  264. if (SpecificationVersion.isSupportedSpecVersion(specVersion)) {
  265. return specVersion + ".0";
  266. }
  267. throw new Error(getUnsupportedSpecVersionMessage(specVersion));
  268. }
  269. function handleSemverComparator(comparator, baseVersion, testVersion) {
  270. if (SPEC_VERSION_PATTERN.test(testVersion)) {
  271. const a = baseVersion;
  272. const b = testVersion + ".0";
  273. return comparator(a, b);
  274. }
  275. throw new Error("Invalid spec version expectation given in comparator: " + testVersion);
  276. }
  277. export default SpecificationVersion;
  278. // Export local function for testing only
  279. export const __localFunctions__ = (process.env.NODE_ENV === "test") ?
  280. {getSemverCompatibleVersion, handleSemverComparator} : /* istanbul ignore next */ undefined;