You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# - Resolve the comparator_set to its newest compatible version.
494
-
# - Add the discovered newest compatible version to highest_compatible_versions.
495
-
# - Choose the highest version among all the versions collected in highest_compatible_versions.
499
+
# - Try to resolve the comparator_set to its newest compatible version.
500
+
# - But stop looking for a compatible version for a comparator_set if the current_version being iterated on is lower than an already found compatible version.
501
+
# - If by the end of the algorithm, a version other than 0.0.0 is collected in highest_compatible_version, output that version.
# For each version in the version_list_copy (iterating from newest to oldest):
514
-
# - If current_version satisfies all comparators in current_comparator_set, we've found the newest version compatible with all comparators in current current_comparator_set.
515
-
# - Add discovered version to highest_compatible_versions and stop iterating through versions for current_comparator_set.
519
+
# - If current_version satisfies all comparators in current_comparator_set, we've found the newest highest version compatible with all comparators in current current_comparator_set.
520
+
# - Store the current_version in highest_compatible_version and stop iterating through versions for current_comparator_set.
# current_comparator is looking for an exact match, and the current_version is the exact match, so this current_comparator is satisfied.
538
547
if [ -z"$current_comparator_set_copy" ];then
539
548
# Also, this is the last comparator in the current_comparator_set_copy so we can assume we've found the newest compatible version of the current_comparator_set.
# current_version is less than or equal to the current_comparator version number so this current_comparator is satisfied.
555
564
if [ -z"$current_comparator_set_copy" ];then
556
565
# Also, this is the last comparator in the current_comparator_set_copy so we can assume we've found the newest compatible version of the current_comparator_set.
# current_version is greater than or equal to the current_comparator version number so this current_comparator is satisfied.
568
577
if [ -z"$current_comparator_set_copy" ];then
569
578
# Also, this is the last comparator in the current_comparator_set_copy so we can assume we've found the newest compatible version of the current_comparator_set.
# current_version is less than the current_comparator version number so this current_comparator is satisfied.
582
591
if [ -z"$current_comparator_set_copy" ];then
583
592
# Also, this is the last comparator in the current_comparator_set_copy so we can assume we've found the newest compatible version of the current_comparator_set.
# current_version is greater than the current_comparator version number so this current_comparator is satisfied.
595
604
if [ -z"$current_comparator_set_copy" ];then
596
605
# Also, this is the last comparator in the current_comparator_set_copy so we can assume we've found the newest compatible version of the current_comparator_set.
# Iterate through each of the versions in highest_compatible_versions, which are the highest versions that satisfy each of the comparator sets.
614
-
# Since comparator sets are separated by '||', choosing any of the highest versions compatible with any of the comparator_sets would be compatible with the whole semver.
615
-
# Therefore, we should resolve to the highest version in highest_compatible_versions.
Copy file name to clipboardexpand all lines: test/fast/Unit tests/nvm_get_node_from_pkg_json
+27-25
Original file line number
Diff line number
Diff line change
@@ -3,14 +3,14 @@
3
3
\. ../../../nvm.sh
4
4
\. ../../generated_semvers.sh
5
5
6
+
# This test suite validates the behavior of extracting the semver from a package.json's engine.node value given valid/invalid semvers and valid/invalid json structures.
6
7
7
-
# POSITIVE TEST CASES
8
-
9
-
10
-
# (TEST SET #1) uses valid TEST_SEMVER's and valid package.json templates
8
+
# (TEST 1 POSITIVE TEST CASES)
9
+
# SEMVERS: valid
10
+
# PACKAGE.JSON TEMPLATES: invalid
11
11
test_cases="$VALID_SEMVERS_FOR_PKG_JSON"
12
12
if [ -z"$test_cases" ];then
13
-
die 'TEST SET 1 for nvm_get_node_from_pkg_json given an empty set of test cases'
13
+
die 'TEST 1 for nvm_get_node_from_pkg_json given an empty set of test cases'
die "'nvm_get_node_from_pkg_json' POSITIVE test case failed (TEST SET #1). Expected '$expectedOutput' but got '$actual_output' when given input '$semver' and template '$template_file_name':\n$pkg_json_contents"
31
+
die "'nvm_get_node_from_pkg_json' POSITIVE test case failed (TEST 1). Expected '$expectedOutput' but got '$actual_output' when given input '$semver' and template '$template_file_name':\n$pkg_json_contents"
32
32
fi
33
33
done
34
34
done
35
35
36
-
37
-
# NEGATIVE TEST CASES
38
-
39
-
40
-
# (TEST SET #2) uses valid TEST_SEMVER's but invalid package.json templates
36
+
# (TEST 2 NEGATIVE TEST CASES)
37
+
# SEMVERS: valid
38
+
# PACKAGE.JSON TEMPLATES: invalid
41
39
test_cases="$VALID_SEMVERS_FOR_PKG_JSON"
42
40
if [ -z"$test_cases" ];then
43
-
die 'TEST SET 2 for nvm_get_node_from_pkg_json given an empty set of test cases'
41
+
die 'TEST 2 for nvm_get_node_from_pkg_json given an empty set of test cases'
die "'nvm_get_node_from_pkg_json' NEGATIVE test case failed (TEST SET #2). Expected to get empty string but got '$actual_output' when given input template '$template_file_name':\n$pkg_json_contents"
58
+
die "'nvm_get_node_from_pkg_json' NEGATIVE test case failed (TEST 2). Expected to get empty string but got '$actual_output' when given input template '$template_file_name':\n$pkg_json_contents"
61
59
fi
62
60
done
63
61
done
64
62
65
63
66
-
# (TEST SET #3) uses invalid TEST_SEMVER's but valid package.json templates
64
+
# (TEST 3 NEGATIVE TEST CASES)
65
+
# SEMVERS: invalid
66
+
# PACKAGE.JSON TEMPLATES: valid
67
67
test_cases="$INVALID_SEMVERS_FOR_PKG_JSON"
68
68
if [ -z"$test_cases" ];then
69
-
die 'TEST SET 3 for nvm_get_node_from_pkg_json given an empty set of test cases'
69
+
die 'TEST 3 for nvm_get_node_from_pkg_json given an empty set of test cases'
die "'nvm_get_node_from_pkg_json' NEGATIVE test case failed (TEST SET #3). Expected to get empty string but got '$actual_output' when given input template '$template_file_name':\n$pkg_json_contents"
86
+
die "'nvm_get_node_from_pkg_json' NEGATIVE test case failed (TEST 3). Expected to get empty string but got '$actual_output' when given input template '$template_file_name':\n$pkg_json_contents"
87
87
fi
88
88
done
89
89
done
90
90
91
-
# (TEST SET #4) uses invalid TEST_SEMVER's and invalid package.json templates
91
+
# (TEST 4 NEGATIVE TEST CASES)
92
+
# SEMVERS: invalid
93
+
# PACKAGE.JSON TEMPLATES: invalid
92
94
test_cases="$INVALID_SEMVERS_FOR_PKG_JSON"
93
95
if [ -z"$test_cases" ];then
94
-
die 'TEST SET 4 for nvm_get_node_from_pkg_json given an empty set of test cases'
96
+
die 'TEST 4 for nvm_get_node_from_pkg_json given an empty set of test cases'
die "'nvm_get_node_from_pkg_json' NEGATIVE test case failed (TEST SET #4). Expected to get empty string but got '$actual_output' when given input template '$template_file_name':\n$pkg_json_contents"
113
+
die "'nvm_get_node_from_pkg_json' NEGATIVE test case failed (TEST 4). Expected to get empty string but got '$actual_output' when given input template '$template_file_name':\n$pkg_json_contents"
# nvm_is_normalized_semver validates that a given semver adheres to a particular grammar. See grammar with definition of function nvm_is_normalized_semver() in nvm.sh.
11
7
12
8
# POSITIVE TEST CASES
13
-
14
9
positive_test_cases="$VALID_NORMALIZED_SEMVERS"
15
10
if [ -z"$positive_test_cases" ];then
16
11
die 'positive test cases are empty'
17
12
fi
18
-
19
13
prev_semver=''
20
14
while [ -n"$positive_test_cases" ];do
21
15
semver=$(echo "$positive_test_cases"| head -n1)
@@ -30,12 +24,10 @@ while [ -n "$positive_test_cases" ]; do
Copy file name to clipboardexpand all lines: test/fast/Unit tests/nvm_normalize_semver
+2
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@
3
3
\. ../../../nvm.sh
4
4
\. ../../generated_semvers.sh
5
5
6
+
# This test suite validates the behavior of normalizing a semver from its raw form to a specific grammar. See the grammar defined with nvm_is_normalized_semver() in nvm.sh.
7
+
6
8
# TEST 1: Validate that for already normalized semvers, nvm_normalize_semver outputs the same semver.
0 commit comments