deno.land / std@0.177.1 / semver / gtr_test.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license.// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.import { assert } from "../testing/asserts.ts";import * as semver from "./mod.ts";
Deno.test("gtr", function () { // [range, version] // Version should be greater than range const versions: ReadonlyArray<[string, string]> = [ ["~1.2.2", "1.3.0"], ["~0.6.1-1", "0.7.1-1"], ["1.0.0 - 2.0.0", "2.0.1"], ["1.0.0", "1.0.1-beta1"], ["1.0.0", "2.0.0"], ["<=2.0.0", "2.1.1"], ["<=2.0.0", "3.2.9"], ["<2.0.0", "2.0.0"], ["0.1.20 || 1.2.4", "1.2.5"], ["2.x.x", "3.0.0"], ["1.2.x", "1.3.0"], ["1.2.x || 2.x", "3.0.0"], ["2.*.*", "5.0.1"], ["1.2.*", "1.3.3"], ["1.2.* || 2.*", "4.0.0"], ["2", "3.0.0"], ["2.3", "2.4.2"], ["~2.4", "2.5.0"], // >=2.4.0 <2.5.0 ["~2.4", "2.5.5"], ["~>3.2.1", "3.3.0"], // >=3.2.1 <3.3.0 ["~1", "2.2.3"], // >=1.0.0 <2.0.0 ["~>1", "2.2.4"], ["~1.0", "1.1.2"], // >=1.0.0 <1.1.0 ["<1.2", "1.2.0"], ["~v0.5.4-pre", "0.6.0"], ["~v0.5.4-pre", "0.6.1-pre"], ["=0.7.x", "0.8.0"], ["=0.7.x", "0.8.0-asdf"], ["<0.7.x", "0.7.0"], ["~1.2.2", "1.3.0"], ["1.0.0 - 2.0.0", "2.2.3"], ["1.0.0", "1.0.1"], ["<=2.0.0", "3.0.0"], ["<=2.0.0", "2.9999.9999"], ["<=2.0.0", "2.2.9"], ["<2.0.0", "2.9999.9999"], ["<2.0.0", "2.2.9"], ["2.x.x", "3.1.3"], ["1.2.x", "1.3.3"], ["1.2.x || 2.x", "3.1.3"], ["2.*.*", "3.1.3"], ["1.2.*", "1.3.3"], ["1.2.* || 2.*", "3.1.3"], ["2", "3.1.2"], ["2.3", "2.4.1"], ["~2.4", "2.5.0"], // >=2.4.0 <2.5.0 ["~>3.2.1", "3.3.2"], // >=3.2.1 <3.3.0 ["~1", "2.2.3"], // >=1.0.0 <2.0.0 ["~>1", "2.2.3"], ["~1.0", "1.1.0"], // >=1.0.0 <1.1.0 ["<1", "1.0.0"], ["=0.7.x", "0.8.2"], ["<0.7.x", "0.7.2"], ];
versions.forEach(function (tuple) { const range = tuple[0]; const version = tuple[1]; const msg = `gtr(${version}, ${range})`; assert(semver.gtr(version, range), msg); });});
Deno.test("gtrNegative", function () { // [range, version] // Version should be greater than range const versions: ReadonlyArray<[string, string]> = [ ["~0.6.1-1", "0.6.1-1"], ["1.0.0 - 2.0.0", "1.2.3"], ["1.0.0 - 2.0.0", "0.9.9"], ["1.0.0", "1.0.0"], [">=*", "0.2.4"], ["*", "1.2.3"], ["*", "v1.2.3-foo"], [">=1.0.0", "1.0.0"], [">=1.0.0", "1.0.1"], [">=1.0.0", "1.1.0"], [">1.0.0", "1.0.1"], [">1.0.0", "1.1.0"], ["<=2.0.0", "2.0.0"], ["<=2.0.0", "1.9999.9999"], ["<=2.0.0", "0.2.9"], ["<2.0.0", "1.9999.9999"], ["<2.0.0", "0.2.9"], [">=0.1.97", "v0.1.97"], [">=0.1.97", "0.1.97"], ["0.1.20 || 1.2.4", "1.2.4"], ["0.1.20 || >1.2.4", "1.2.4"], ["0.1.20 || 1.2.4", "1.2.3"], ["0.1.20 || 1.2.4", "0.1.20"], [">=0.2.3 || <0.0.1", "0.0.0"], [">=0.2.3 || <0.0.1", "0.2.3"], [">=0.2.3 || <0.0.1", "0.2.4"], ["||", "1.3.4"], ["2.x.x", "2.1.3"], ["1.2.x", "1.2.3"], ["1.2.x || 2.x", "2.1.3"], ["1.2.x || 2.x", "1.2.3"], ["x", "1.2.3"], ["2.*.*", "2.1.3"], ["1.2.*", "1.2.3"], ["1.2.* || 2.*", "2.1.3"], ["1.2.* || 2.*", "1.2.3"], ["1.2.* || 2.*", "1.2.3"], ["*", "1.2.3"], ["2", "2.1.2"], ["2.3", "2.3.1"], ["~2.4", "2.4.0"], // >=2.4.0 <2.5.0 ["~2.4", "2.4.5"], ["~>3.2.1", "3.2.2"], // >=3.2.1 <3.3.0 ["~1", "1.2.3"], // >=1.0.0 <2.0.0 ["~>1", "1.2.3"], ["~1.0", "1.0.2"], // >=1.0.0 <1.1.0 [">=1", "1.0.0"], ["<1.2", "1.1.1"], ["~v0.5.4-pre", "0.5.5"], ["~v0.5.4-pre", "0.5.4"], ["=0.7.x", "0.7.2"], [">=0.7.x", "0.7.2"], ["=0.7.x", "0.7.0-asdf"], [">=0.7.x", "0.7.0-asdf"], ["<=0.7.x", "0.6.2"], [">0.2.3 >0.2.4 <=0.2.5", "0.2.5"], [">=0.2.3 <=0.2.4", "0.2.4"], ["1.0.0 - 2.0.0", "2.0.0"], ["^1", "0.0.0-0"], ["^3.0.0", "2.0.0"], ["^1.0.0 || ~2.0.1", "2.0.0"], ["^0.1.0 || ~3.0.1 || 5.0.0", "3.2.0"], ["^0.1.0 || ~3.0.1 || >4 <=5.0.0", "3.5.0"], ];
versions.forEach(function (tuple) { const range = tuple[0]; const version = tuple[1]; const msg = `!gtr(${version}, ${range})`; assert(!semver.gtr(version, range), msg); });});
std

Version Info

Tagged at
11 months ago